4
|
1 ;; Simple SMTP protocol (RFC 821) for sending mail
|
|
2
|
|
3 ;; Copyright (C) 1995, 1996 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Author: Tomoji Kagatani <kagatani@rbc.ncl.omron.co.jp>
|
|
6 ;; Maintainer: Brian D. Carlstrom <bdc@ai.mit.edu>
|
|
7 ;; Keywords: mail
|
|
8
|
|
9 ;; This file is part of XEmacs.
|
|
10
|
|
11 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
12 ;; under the terms of the GNU General Public License as published by
|
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
14 ;; any later version.
|
|
15
|
|
16 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
19 ;; General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
|
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
23 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
24 ;; 02111-1307, USA.
|
|
25
|
|
26 ;;; Synched up with: FSF 19.34.
|
|
27
|
|
28 ;;; Commentary:
|
|
29
|
|
30 ;; Send Mail to smtp host from smtpmail temp buffer.
|
|
31
|
|
32 ;; Please add these lines in your .emacs(_emacs).
|
|
33 ;;
|
|
34 ;;(setq send-mail-function 'smtpmail-send-it)
|
|
35 ;;(setq smtpmail-default-smtp-server "YOUR SMTP HOST")
|
|
36 ;;(setq smtpmail-smtp-service "smtp")
|
|
37 ;;(setq smtpmail-local-domain "YOUR DOMAIN NAME")
|
|
38 ;;(setq smtpmail-debug-info t)
|
|
39 ;;(load-library "smtpmail")
|
|
40 ;;(setq smtpmail-code-conv-from nil)
|
|
41 ;;(setq user-full-name "YOUR NAME HERE")
|
|
42
|
|
43 ;;; Code:
|
|
44
|
|
45 (require 'sendmail)
|
|
46
|
|
47 ;;;
|
134
|
48 (defgroup smtpmail nil
|
|
49 "SMTP protocol for sending mail."
|
|
50 :group 'mail)
|
|
51
|
4
|
52
|
134
|
53 (defcustom smtpmail-default-smtp-server nil
|
|
54 "*Specify default SMTP server."
|
|
55 :type '(choice (const nil) string)
|
|
56 :group 'smtpmail)
|
|
57
|
|
58 (defcustom smtpmail-smtp-server
|
4
|
59 (or (getenv "SMTPSERVER") smtpmail-default-smtp-server)
|
134
|
60 "*The name of the host running SMTP server."
|
|
61 :type '(choice (const nil) string)
|
|
62 :group 'smtpmail)
|
4
|
63
|
134
|
64 (defcustom smtpmail-smtp-service 25
|
|
65 "*SMTP service port number. smtp or 25 ."
|
|
66 :type '(choice (integer :tag "Port") (string :tag "Service"))
|
|
67 :group 'smtpmail)
|
4
|
68
|
134
|
69 (defcustom smtpmail-local-domain nil
|
4
|
70 "*Local domain name without a host name.
|
|
71 If the function (system-name) returns the full internet address,
|
134
|
72 don't define this value."
|
|
73 :type '(choice (const nil) string)
|
|
74 :group 'smtpmail)
|
4
|
75
|
134
|
76 (defcustom smtpmail-debug-info nil
|
|
77 "*smtpmail debug info printout. messages and process buffer."
|
|
78 :type 'boolean
|
|
79 :group 'smtpmail)
|
4
|
80
|
134
|
81 (defcustom smtpmail-code-conv-from nil ;; *junet*
|
|
82 "*smtpmail code convert from this code to *internal*..for tiny-mime.."
|
|
83 :type 'boolean
|
|
84 :group 'smtpmail)
|
4
|
85
|
|
86 ;;;
|
|
87 ;;;
|
|
88 ;;;
|
|
89
|
|
90 (defun smtpmail-send-it ()
|
|
91 (require 'mail-utils)
|
|
92 (let ((errbuf (if mail-interactive
|
|
93 (generate-new-buffer " smtpmail errors")
|
|
94 0))
|
|
95 (tembuf (generate-new-buffer " smtpmail temp"))
|
|
96 (case-fold-search nil)
|
|
97 resend-to-addresses
|
|
98 delimline
|
|
99 (mailbuf (current-buffer)))
|
|
100 (unwind-protect
|
|
101 (save-excursion
|
|
102 (set-buffer tembuf)
|
|
103 (erase-buffer)
|
|
104 (insert-buffer-substring mailbuf)
|
|
105 (goto-char (point-max))
|
|
106 ;; require one newline at the end.
|
|
107 (or (= (preceding-char) ?\n)
|
|
108 (insert ?\n))
|
|
109 ;; Change header-delimiter to be what sendmail expects.
|
|
110 (goto-char (point-min))
|
|
111 (re-search-forward
|
|
112 (concat "^" (regexp-quote mail-header-separator) "\n"))
|
|
113 (replace-match "\n")
|
|
114 (backward-char 1)
|
|
115 (setq delimline (point-marker))
|
|
116 ;; (sendmail-synch-aliases)
|
126
|
117 (if (and mail-aliases (fboundp 'expand-mail-aliases)) ; XEmacs
|
4
|
118 (expand-mail-aliases (point-min) delimline))
|
|
119 (goto-char (point-min))
|
|
120 ;; ignore any blank lines in the header
|
|
121 (while (and (re-search-forward "\n\n\n*" delimline t)
|
|
122 (< (point) delimline))
|
|
123 (replace-match "\n"))
|
|
124 (let ((case-fold-search t))
|
|
125 (goto-char (point-min))
|
|
126 (goto-char (point-min))
|
|
127 (while (re-search-forward "^Resent-to:" delimline t)
|
|
128 (setq resend-to-addresses
|
|
129 (save-restriction
|
|
130 (narrow-to-region (point)
|
|
131 (save-excursion
|
|
132 (end-of-line)
|
|
133 (point)))
|
|
134 (append (mail-parse-comma-list)
|
|
135 resend-to-addresses))))
|
|
136 ;;; Apparently this causes a duplicate Sender.
|
|
137 ;;; ;; If the From is different than current user, insert Sender.
|
|
138 ;;; (goto-char (point-min))
|
|
139 ;;; (and (re-search-forward "^From:" delimline t)
|
|
140 ;;; (progn
|
|
141 ;;; (require 'mail-utils)
|
|
142 ;;; (not (string-equal
|
|
143 ;;; (mail-strip-quoted-names
|
|
144 ;;; (save-restriction
|
|
145 ;;; (narrow-to-region (point-min) delimline)
|
|
146 ;;; (mail-fetch-field "From")))
|
|
147 ;;; (user-login-name))))
|
|
148 ;;; (progn
|
|
149 ;;; (forward-line 1)
|
|
150 ;;; (insert "Sender: " (user-login-name) "\n")))
|
|
151 ;; Don't send out a blank subject line
|
|
152 (goto-char (point-min))
|
|
153 (if (re-search-forward "^Subject:[ \t]*\n" delimline t)
|
|
154 (replace-match ""))
|
|
155 ;; Put the "From:" field in unless for some odd reason
|
|
156 ;; they put one in themselves.
|
|
157 (goto-char (point-min))
|
|
158 (if (not (re-search-forward "^From:" delimline t))
|
114
|
159 (let* ((login (user-mail-address))
|
4
|
160 (fullname (user-full-name)))
|
|
161 (cond ((eq mail-from-style 'angles)
|
|
162 (insert "From: " fullname)
|
|
163 (let ((fullname-start (+ (point-min) 6))
|
|
164 (fullname-end (point-marker)))
|
|
165 (goto-char fullname-start)
|
|
166 ;; Look for a character that cannot appear unquoted
|
|
167 ;; according to RFC 822.
|
|
168 (if (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
|
|
169 fullname-end 1)
|
|
170 (progn
|
|
171 ;; Quote fullname, escaping specials.
|
|
172 (goto-char fullname-start)
|
|
173 (insert "\"")
|
|
174 (while (re-search-forward "[\"\\]"
|
|
175 fullname-end 1)
|
|
176 (replace-match "\\\\\\&" t))
|
|
177 (insert "\""))))
|
|
178 (insert " <" login ">\n"))
|
|
179 ((eq mail-from-style 'parens)
|
|
180 (insert "From: " login " (")
|
|
181 (let ((fullname-start (point)))
|
|
182 (insert fullname)
|
|
183 (let ((fullname-end (point-marker)))
|
|
184 (goto-char fullname-start)
|
|
185 ;; RFC 822 says \ and nonmatching parentheses
|
|
186 ;; must be escaped in comments.
|
|
187 ;; Escape every instance of ()\ ...
|
|
188 (while (re-search-forward "[()\\]" fullname-end 1)
|
|
189 (replace-match "\\\\\\&" t))
|
|
190 ;; ... then undo escaping of matching parentheses,
|
|
191 ;; including matching nested parentheses.
|
|
192 (goto-char fullname-start)
|
|
193 (while (re-search-forward
|
|
194 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
|
|
195 fullname-end 1)
|
|
196 (replace-match "\\1(\\3)" t)
|
|
197 (goto-char fullname-start))))
|
|
198 (insert ")\n"))
|
|
199 ((null mail-from-style)
|
|
200 (insert "From: " login "\n")))))
|
|
201 ;; Insert an extra newline if we need it to work around
|
|
202 ;; Sun's bug that swallows newlines.
|
|
203 (goto-char (1+ delimline))
|
|
204 (if (eval mail-mailer-swallows-blank-line)
|
|
205 (newline))
|
|
206 ;; Find and handle any FCC fields.
|
|
207 (goto-char (point-min))
|
|
208 (if (re-search-forward "^FCC:" delimline t)
|
|
209 (mail-do-fcc delimline))
|
|
210 (if mail-interactive
|
|
211 (save-excursion
|
|
212 (set-buffer errbuf)
|
|
213 (erase-buffer))))
|
|
214 ;;
|
|
215 ;;
|
|
216 ;;
|
|
217 (setq smtpmail-address-buffer (generate-new-buffer "*smtp-mail*"))
|
|
218 (setq smtpmail-recipient-address-list
|
|
219 (or resend-to-addresses
|
|
220 (smtpmail-deduce-address-list tembuf (point-min) delimline)))
|
|
221 (kill-buffer smtpmail-address-buffer)
|
|
222
|
|
223 (smtpmail-do-bcc delimline)
|
|
224
|
|
225 (if (not (null smtpmail-recipient-address-list))
|
|
226 (if (not (smtpmail-via-smtp smtpmail-recipient-address-list tembuf))
|
|
227 (error "Sending failed; SMTP protocol error"))
|
|
228 (error "Sending failed; no recipients"))
|
|
229 )
|
|
230 (kill-buffer tembuf)
|
|
231 (if (bufferp errbuf)
|
|
232 (kill-buffer errbuf)))))
|
|
233
|
|
234
|
|
235 ;(defun smtpmail-via-smtp (host,port,sender,destination,smtpmail-text-buffer)
|
|
236
|
|
237 (defun smtpmail-fqdn ()
|
|
238 (if smtpmail-local-domain
|
|
239 (concat (system-name) "." smtpmail-local-domain)
|
|
240 (system-name)))
|
|
241
|
|
242 (defun smtpmail-via-smtp (recipient smtpmail-text-buffer)
|
|
243 (let ((process nil)
|
|
244 (host smtpmail-smtp-server)
|
|
245 (port smtpmail-smtp-service)
|
|
246 response-code
|
|
247 greeting
|
|
248 process-buffer)
|
|
249 (unwind-protect
|
|
250 (catch 'done
|
|
251 ;; get or create the trace buffer
|
|
252 (setq process-buffer
|
|
253 (get-buffer-create (format "*trace of SMTP session to %s*" host)))
|
|
254
|
|
255 ;; clear the trace buffer of old output
|
|
256 (save-excursion
|
|
257 (set-buffer process-buffer)
|
|
258 (erase-buffer))
|
|
259
|
|
260 ;; open the connection to the server
|
|
261 (setq process (open-network-stream "SMTP" process-buffer host port))
|
|
262 (and (null process) (throw 'done nil))
|
|
263
|
|
264 ;; set the send-filter
|
|
265 (set-process-filter process 'smtpmail-process-filter)
|
|
266
|
|
267 (save-excursion
|
|
268 (set-buffer process-buffer)
|
|
269 (make-local-variable 'smtpmail-read-point)
|
|
270 (setq smtpmail-read-point (point-min))
|
|
271
|
|
272
|
|
273 (if (or (null (car (setq greeting (smtpmail-read-response process))))
|
|
274 (not (integerp (car greeting)))
|
|
275 (>= (car greeting) 400))
|
|
276 (throw 'done nil)
|
|
277 )
|
|
278
|
|
279 ;; HELO
|
|
280 (smtpmail-send-command process (format "HELO %s" (smtpmail-fqdn)))
|
|
281
|
|
282 (if (or (null (car (setq response-code (smtpmail-read-response process))))
|
|
283 (not (integerp (car response-code)))
|
|
284 (>= (car response-code) 400))
|
|
285 (throw 'done nil)
|
|
286 )
|
|
287
|
|
288 ;; MAIL FROM: <sender>
|
|
289 ; (smtpmail-send-command process (format "MAIL FROM:%s@%s" (user-login-name) (smtpmail-fqdn)))
|
114
|
290 (smtpmail-send-command process (format "MAIL FROM: <%s>" (user-mail-address)))
|
4
|
291
|
|
292 (if (or (null (car (setq response-code (smtpmail-read-response process))))
|
|
293 (not (integerp (car response-code)))
|
|
294 (>= (car response-code) 400))
|
|
295 (throw 'done nil)
|
|
296 )
|
|
297
|
|
298 ;; RCPT TO: <recipient>
|
|
299 (let ((n 0))
|
|
300 (while (not (null (nth n recipient)))
|
|
301 (smtpmail-send-command process (format "RCPT TO: <%s>" (nth n recipient)))
|
|
302 (setq n (1+ n))
|
|
303
|
|
304 (if (or (null (car (setq response-code (smtpmail-read-response process))))
|
|
305 (not (integerp (car response-code)))
|
|
306 (>= (car response-code) 400))
|
|
307 (throw 'done nil)
|
|
308 )
|
|
309 ))
|
|
310
|
|
311 ;; DATA
|
|
312 (smtpmail-send-command process "DATA")
|
|
313
|
|
314 (if (or (null (car (setq response-code (smtpmail-read-response process))))
|
|
315 (not (integerp (car response-code)))
|
|
316 (>= (car response-code) 400))
|
|
317 (throw 'done nil)
|
|
318 )
|
|
319
|
|
320 ;; Mail contents
|
|
321 (smtpmail-send-data process smtpmail-text-buffer)
|
|
322
|
|
323 ;;DATA end "."
|
|
324 (smtpmail-send-command process ".")
|
|
325
|
|
326 (if (or (null (car (setq response-code (smtpmail-read-response process))))
|
|
327 (not (integerp (car response-code)))
|
|
328 (>= (car response-code) 400))
|
|
329 (throw 'done nil)
|
|
330 )
|
|
331
|
|
332 ;;QUIT
|
|
333 ; (smtpmail-send-command process "QUIT")
|
|
334 ; (and (null (car (smtpmail-read-response process)))
|
|
335 ; (throw 'done nil))
|
|
336 t ))
|
|
337 (if process
|
|
338 (save-excursion
|
|
339 (set-buffer (process-buffer process))
|
|
340 (smtpmail-send-command process "QUIT")
|
|
341 (smtpmail-read-response process)
|
|
342
|
|
343 ; (if (or (null (car (setq response-code (smtpmail-read-response process))))
|
|
344 ; (not (integerp (car response-code)))
|
|
345 ; (>= (car response-code) 400))
|
|
346 ; (throw 'done nil)
|
|
347 ; )
|
|
348 (delete-process process))))))
|
|
349
|
|
350
|
|
351 (defun smtpmail-process-filter (process output)
|
|
352 (save-excursion
|
|
353 (set-buffer (process-buffer process))
|
|
354 (goto-char (point-max))
|
|
355 (insert output)))
|
|
356
|
|
357 (defun smtpmail-read-response (process)
|
|
358 (let ((case-fold-search nil)
|
|
359 (response-string nil)
|
|
360 (response-continue t)
|
|
361 (return-value '(nil ""))
|
|
362 match-end)
|
|
363
|
|
364 ; (setq response-string nil)
|
|
365 ; (setq response-continue t)
|
|
366 ; (setq return-value '(nil ""))
|
|
367
|
|
368 (while response-continue
|
|
369 (goto-char smtpmail-read-point)
|
|
370 (while (not (search-forward "\r\n" nil t))
|
|
371 (accept-process-output process)
|
|
372 (goto-char smtpmail-read-point))
|
|
373
|
|
374 (setq match-end (point))
|
|
375 (if (null response-string)
|
|
376 (setq response-string
|
|
377 (buffer-substring smtpmail-read-point (- match-end 2))))
|
|
378
|
|
379 (goto-char smtpmail-read-point)
|
|
380 (if (looking-at "[0-9]+ ")
|
|
381 (progn (setq response-continue nil)
|
|
382 ; (setq return-value response-string)
|
|
383
|
|
384 (if smtpmail-debug-info
|
|
385 (message response-string))
|
|
386
|
|
387 (setq smtpmail-read-point match-end)
|
|
388 (setq return-value
|
|
389 (cons (string-to-int
|
|
390 (buffer-substring (match-beginning 0) (match-end 0)))
|
|
391 response-string)))
|
|
392
|
|
393 (if (looking-at "[0-9]+-")
|
|
394 (progn (setq smtpmail-read-point match-end)
|
|
395 (setq response-continue t))
|
|
396 (progn
|
|
397 (setq smtpmail-read-point match-end)
|
|
398 (setq response-continue nil)
|
|
399 (setq return-value
|
|
400 (cons nil response-string))
|
|
401 )
|
|
402 )))
|
|
403 (setq smtpmail-read-point match-end)
|
|
404 return-value))
|
|
405
|
|
406
|
|
407 (defun smtpmail-send-command (process command)
|
|
408 (goto-char (point-max))
|
|
409 (if (= (aref command 0) ?P)
|
|
410 (insert "PASS <omitted>\r\n")
|
|
411 (insert command "\r\n"))
|
|
412 (setq smtpmail-read-point (point))
|
|
413 (process-send-string process command)
|
|
414 (process-send-string process "\r\n"))
|
|
415
|
|
416 (defun smtpmail-send-data-1 (process data)
|
|
417 (goto-char (point-max))
|
|
418
|
|
419 (if (not (null smtpmail-code-conv-from))
|
|
420 (setq data (code-convert-string data smtpmail-code-conv-from *internal*)))
|
|
421
|
|
422 (if smtpmail-debug-info
|
|
423 (insert data "\r\n"))
|
|
424
|
|
425 (setq smtpmail-read-point (point))
|
|
426 ;; Escape "." at start of a line
|
|
427 (if (eq (string-to-char data) ?.)
|
|
428 (process-send-string process "."))
|
|
429 (process-send-string process data)
|
|
430 (process-send-string process "\r\n")
|
|
431 )
|
|
432
|
|
433 (defun smtpmail-send-data (process buffer)
|
|
434 (let
|
|
435 ((data-continue t)
|
|
436 (sending-data nil)
|
|
437 this-line
|
|
438 this-line-end)
|
|
439
|
|
440 (save-excursion
|
|
441 (set-buffer buffer)
|
|
442 (goto-char (point-min)))
|
|
443
|
|
444 (while data-continue
|
|
445 (save-excursion
|
|
446 (set-buffer buffer)
|
|
447 (beginning-of-line)
|
|
448 (setq this-line (point))
|
|
449 (end-of-line)
|
|
450 (setq this-line-end (point))
|
|
451 (setq sending-data nil)
|
|
452 (setq sending-data (buffer-substring this-line this-line-end))
|
|
453 (if (/= (forward-line 1) 0)
|
|
454 (setq data-continue nil)))
|
|
455
|
|
456 (smtpmail-send-data-1 process sending-data)
|
|
457 )
|
|
458 )
|
|
459 )
|
|
460
|
|
461
|
|
462 (defun smtpmail-deduce-address-list (smtpmail-text-buffer header-start header-end)
|
|
463 "Get address list suitable for smtp RCPT TO: <address>."
|
|
464 (require 'mail-utils) ;; pick up mail-strip-quoted-names
|
|
465 (let
|
126
|
466 ((simple-address-list "")
|
4
|
467 this-line
|
|
468 this-line-end
|
|
469 addr-regexp)
|
|
470
|
|
471 (unwind-protect
|
|
472 (save-excursion
|
|
473 ;;
|
|
474 (set-buffer smtpmail-address-buffer) (erase-buffer)
|
126
|
475 (let ((case-fold-search t))
|
4
|
476 (insert-buffer-substring smtpmail-text-buffer header-start header-end)
|
|
477 (goto-char (point-min))
|
|
478 ;; RESENT-* fields should stop processing of regular fields.
|
|
479 (save-excursion
|
|
480 (if (re-search-forward "^RESENT-TO:" header-end t)
|
|
481 (setq addr-regexp "^\\(RESENT-TO:\\|RESENT-CC:\\|RESENT-BCC:\\)")
|
|
482 (setq addr-regexp "^\\(TO:\\|CC:\\|BCC:\\)")))
|
|
483
|
|
484 (while (re-search-forward addr-regexp header-end t)
|
|
485 (replace-match "")
|
|
486 (setq this-line (match-beginning 0))
|
|
487 (forward-line 1)
|
|
488 ;; get any continuation lines
|
|
489 (while (and (looking-at "^[ \t]+") (< (point) header-end))
|
|
490 (forward-line 1))
|
|
491 (setq this-line-end (point-marker))
|
|
492 (setq simple-address-list
|
|
493 (concat simple-address-list " "
|
|
494 (mail-strip-quoted-names (buffer-substring this-line this-line-end))))
|
|
495 )
|
|
496 (erase-buffer)
|
|
497 (insert-string " ")
|
|
498 (insert-string simple-address-list)
|
|
499 (insert-string "\n")
|
|
500 (subst-char-in-region (point-min) (point-max) 10 ? t);; newline --> blank
|
|
501 (subst-char-in-region (point-min) (point-max) ?, ? t);; comma --> blank
|
|
502 (subst-char-in-region (point-min) (point-max) 9 ? t);; tab --> blank
|
|
503
|
|
504 (goto-char (point-min))
|
|
505 ;; tidyness in case hook is not robust when it looks at this
|
|
506 (while (re-search-forward "[ \t]+" header-end t) (replace-match " "))
|
|
507
|
|
508 (goto-char (point-min))
|
|
509 (let (recipient-address-list)
|
|
510 (while (re-search-forward " \\([^ ]+\\) " (point-max) t)
|
|
511 (backward-char 1)
|
|
512 (setq recipient-address-list (cons (buffer-substring (match-beginning 1) (match-end 1))
|
|
513 recipient-address-list))
|
|
514 )
|
|
515 (setq smtpmail-recipient-address-list recipient-address-list))
|
|
516
|
126
|
517 ))
|
4
|
518 )
|
|
519 )
|
|
520 )
|
|
521
|
|
522
|
|
523 (defun smtpmail-do-bcc (header-end)
|
|
524 "Delete BCC: and their continuation lines from the header area.
|
|
525 There may be multiple BCC: lines, and each may have arbitrarily
|
|
526 many continuation lines."
|
|
527 (let ((case-fold-search t))
|
|
528 (save-excursion (goto-char (point-min))
|
|
529 ;; iterate over all BCC: lines
|
|
530 (while (re-search-forward "^BCC:" header-end t)
|
|
531 (delete-region (match-beginning 0) (progn (forward-line 1) (point)))
|
|
532 ;; get rid of any continuation lines
|
|
533 (while (and (looking-at "^[ \t].*\n") (< (point) header-end))
|
|
534 (replace-match ""))
|
|
535 )
|
|
536 ) ;; save-excursion
|
|
537 ) ;; let
|
|
538 )
|
|
539
|
|
540
|
|
541
|
|
542 (provide 'smtpmail)
|
|
543
|
|
544 ;; smtpmail.el ends here
|