(smtpmail-send-it): Modify to work without mail-header-separator.
[elisp/lemi.git] / mail / smtpmail.el
1 ;;; smtpmail.el --- SMTP interface for mail-mode
2
3 ;; Copyright (C) 1995, 1996, 1998, 1999, 2001 Free Software Foundation, Inc.
4
5 ;; Author: Tomoji Kagatani <kagatani@rbc.ncl.omron.co.jp>
6 ;; Keywords: mail
7
8 ;; This file is part of FLIM (Faithful Library about Internet Message).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program; see the file COPYING.  If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; Send Mail to smtp host from smtpmail temp buffer.
28
29 ;; Please add these lines in your .emacs(_emacs).
30 ;;
31 ;;(setq send-mail-function 'smtpmail-send-it)
32 ;;(setq smtp-default-server "YOUR SMTP HOST")
33 ;;(setq smtp-service "smtp")
34 ;;(setq smtp-local-domain "YOUR DOMAIN NAME")
35 ;;(setq smtp-debug-info t)
36 ;;(autoload 'smtpmail-send-it "smtpmail")
37 ;;(setq user-full-name "YOUR NAME HERE")
38
39 ;; To queue mail, set smtpmail-queue-mail to t and use 
40 ;; smtpmail-send-queued-mail to send.
41
42
43 ;;; Code:
44
45 (require 'custom)
46 (require 'smtp)
47 (require 'sendmail)
48 (require 'time-stamp)
49 (require 'mel) ; binary-write-decoded-region, binary-find-file-noselect
50
51 (eval-when-compile (require 'static))
52
53 ;; (static-when (featurep 'xemacs)
54 ;;   (define-obsolete-variable-alias 'smtpmail-default-smtp-server
55 ;;     'smtp-default-server)
56 ;;   (define-obsolete-variable-alias 'smtpmail-smtp-server 'smtp-server)
57 ;;   (define-obsolete-variable-alias 'smtpmail-smtp-service 'smtp-service)
58 ;;   (define-obsolete-variable-alias 'smtpmail-local-domain 'smtp-local-domain)
59 ;;   (define-obsolete-variable-alias 'smtpmail-debug-info 'smtp-debug-info)
60 ;;   )
61
62 ;;;
63
64 (defcustom smtpmail-queue-mail nil 
65   "Specify if mail is queued (if t) or sent immediately (if nil).
66 If queued, it is stored in the directory `smtpmail-queue-dir'
67 and sent with `smtpmail-send-queued-mail'."
68   :type 'boolean
69   :group 'smtp)
70
71 (defcustom smtpmail-queue-dir "~/Mail/queued-mail/"
72   "Directory where `smtpmail.el' stores queued mail."
73   :type 'directory
74   :group 'smtp)
75
76 (defvar smtpmail-queue-index-file "index"
77   "File name of queued mail index,
78 This is relative to `smtpmail-queue-dir'.")
79
80 (defvar smtpmail-queue-index
81   (concat (file-name-as-directory smtpmail-queue-dir)
82           smtpmail-queue-index-file))
83
84 (defvar smtpmail-recipient-address-list nil)
85
86
87 ;;;
88 ;;;
89 ;;;
90
91 ;;;###autoload
92 (defun smtpmail-send-it ()
93   (require 'mail-utils)
94   (let ((errbuf (if mail-interactive
95                     (generate-new-buffer " smtpmail errors")
96                   0))
97         (tembuf (generate-new-buffer " smtpmail temp"))
98         (case-fold-search nil)
99         resend-to-addresses
100         delimline
101         (mailbuf (current-buffer)))
102     (unwind-protect
103         (save-excursion
104           (set-buffer tembuf)
105           (erase-buffer)
106           (insert-buffer-substring mailbuf)
107           (goto-char (point-max))
108           ;; require one newline at the end.
109           (or (= (preceding-char) ?\n)
110               (insert ?\n))
111           ;; Change header-delimiter to be what sendmail expects.
112           (goto-char (point-min))
113           (if (re-search-forward
114                (concat "^\\(" (regexp-quote mail-header-separator) "\\)?\n"))
115               (replace-match "\n"))
116           (backward-char 1)
117           (setq delimline (point-marker))
118 ;;        (sendmail-synch-aliases)
119           (if (and mail-aliases (fboundp 'expand-mail-aliases)) ; XEmacs
120               (expand-mail-aliases (point-min) delimline))
121           (goto-char (point-min))
122           ;; ignore any blank lines in the header
123           (while (and (re-search-forward "\n\n\n*" delimline t)
124                       (< (point) delimline))
125             (replace-match "\n"))
126           (let ((case-fold-search t))
127             (goto-char (point-min))
128             (goto-char (point-min))
129             (while (re-search-forward "^Resent-to:" delimline t)
130               (setq resend-to-addresses
131                     (save-restriction
132                       (narrow-to-region (point)
133                                         (save-excursion
134                                           (forward-line 1)
135                                           (while (looking-at "^[ \t]")
136                                             (forward-line 1))
137                                           (point)))
138                       (append (mail-parse-comma-list)
139                               resend-to-addresses))))
140 ;;; Apparently this causes a duplicate Sender.
141 ;;;         ;; If the From is different than current user, insert Sender.
142 ;;;         (goto-char (point-min))
143 ;;;         (and (re-search-forward "^From:"  delimline t)
144 ;;;              (progn
145 ;;;                (require 'mail-utils)
146 ;;;                (not (string-equal
147 ;;;                      (mail-strip-quoted-names
148 ;;;                       (save-restriction
149 ;;;                         (narrow-to-region (point-min) delimline)
150 ;;;                         (mail-fetch-field "From")))
151 ;;;                      (user-login-name))))
152 ;;;              (progn
153 ;;;                (forward-line 1)
154 ;;;                (insert "Sender: " (user-login-name) "\n")))
155             ;; Don't send out a blank subject line
156             (goto-char (point-min))
157             (if (re-search-forward "^Subject:[ \t]*\n" delimline t)
158                 (replace-match ""))
159             ;; Put the "From:" field in unless for some odd reason
160             ;; they put one in themselves.
161             (goto-char (point-min))
162             (if (not (re-search-forward "^From:" delimline t))
163                 (let* ((login user-mail-address)
164                        (fullname (user-full-name)))
165                   (cond ((eq mail-from-style 'angles)
166                          (insert "From: " fullname)
167                          (let ((fullname-start (+ (point-min) 6))
168                                (fullname-end (point-marker)))
169                            (goto-char fullname-start)
170                            ;; Look for a character that cannot appear unquoted
171                            ;; according to RFC 822.
172                            (if (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
173                                                   fullname-end 1)
174                                (progn
175                                  ;; Quote fullname, escaping specials.
176                                  (goto-char fullname-start)
177                                  (insert "\"")
178                                  (while (re-search-forward "[\"\\]"
179                                                            fullname-end 1)
180                                    (replace-match "\\\\\\&" t))
181                                  (insert "\""))))
182                          (insert " <" login ">\n"))
183                         ((eq mail-from-style 'parens)
184                          (insert "From: " login " (")
185                          (let ((fullname-start (point)))
186                            (insert fullname)
187                            (let ((fullname-end (point-marker)))
188                              (goto-char fullname-start)
189                              ;; RFC 822 says \ and nonmatching parentheses
190                              ;; must be escaped in comments.
191                              ;; Escape every instance of ()\ ...
192                              (while (re-search-forward "[()\\]" fullname-end 1)
193                                (replace-match "\\\\\\&" t))
194                              ;; ... then undo escaping of matching parentheses,
195                              ;; including matching nested parentheses.
196                              (goto-char fullname-start)
197                              (while (re-search-forward 
198                                      "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
199                                      fullname-end 1)
200                                (replace-match "\\1(\\3)" t)
201                                (goto-char fullname-start))))
202                          (insert ")\n"))
203                         ((null mail-from-style)
204                          (insert "From: " login "\n")))))
205             ;; Insert an extra newline if we need it to work around
206             ;; Sun's bug that swallows newlines.
207             (goto-char (1+ delimline))
208             (if (eval mail-mailer-swallows-blank-line)
209                 (newline))
210             ;; Find and handle any FCC fields.
211             (goto-char (point-min))
212             (if (re-search-forward "^FCC:" delimline t)
213                 (mail-do-fcc delimline))
214             (if mail-interactive
215                 (save-excursion
216                   (set-buffer errbuf)
217                   (erase-buffer))))
218           ;;
219           ;;
220           ;;
221           (setq smtpmail-recipient-address-list
222                 (or resend-to-addresses
223                     (smtp-deduce-address-list tembuf (point-min) delimline)))
224
225           (smtpmail-do-bcc delimline)
226           ; Send or queue
227           (if (not smtpmail-queue-mail)
228               (if smtpmail-recipient-address-list
229                   (smtp-send-buffer user-mail-address
230                                     smtpmail-recipient-address-list
231                                     tembuf)
232                 (error "Sending failed; no recipients"))
233             (let* ((file-data (convert-standard-filename
234                                (concat
235                                 (file-name-as-directory smtpmail-queue-dir)
236                                 (time-stamp-yyyy-mm-dd)
237                                 "_" (time-stamp-hh:mm:ss))))
238                    (file-elisp (concat file-data ".el"))
239                    (buffer-data (create-file-buffer file-data))
240                    (buffer-elisp (create-file-buffer file-elisp))
241                    (buffer-scratch "*queue-mail*"))
242               (save-excursion
243                 (set-buffer buffer-data)
244                 (erase-buffer)
245                 (insert-buffer tembuf)
246                 (or (file-directory-p smtpmail-queue-dir)
247                     (make-directory smtpmail-queue-dir t))
248                 (binary-write-decoded-region (point-min) (point-max) file-data)
249                 (set-buffer buffer-elisp)
250                 (erase-buffer)
251                 (insert (concat
252                          "(setq smtpmail-recipient-address-list '"
253                          (prin1-to-string smtpmail-recipient-address-list)
254                          ")\n"))                    
255                 (write-file file-elisp)
256                 (set-buffer (generate-new-buffer buffer-scratch))
257                 (insert (concat file-data "\n"))
258                 (append-to-file (point-min) 
259                                 (point-max) 
260                                 smtpmail-queue-index)
261                 )
262               (kill-buffer buffer-scratch)
263               (kill-buffer buffer-data)
264               (kill-buffer buffer-elisp))))
265       (kill-buffer tembuf)
266       (if (bufferp errbuf)
267           (kill-buffer errbuf)))))
268
269 (defun smtpmail-send-queued-mail ()
270   "Send mail that was queued as a result of setting `smtpmail-queue-mail'."
271   (interactive)
272   ;;; Get index, get first mail, send it, get second mail, etc...
273   (let ((buffer-index (find-file-noselect smtpmail-queue-index))
274         (file-msg "")
275         (tembuf nil))
276     (save-excursion
277       (set-buffer buffer-index)
278       (beginning-of-buffer)
279       (while (not (eobp))
280         (setq file-msg (buffer-substring (point) (save-excursion
281                                                    (end-of-line)
282                                                    (point))))
283         (load file-msg)
284         (setq tembuf (binary-find-file-noselect file-msg))
285         (if smtpmail-recipient-address-list
286             (smtp-send-buffer user-mail-address
287                               smtpmail-recipient-address-list tembuf)
288           (error "Sending failed; no recipients"))  
289         (delete-file file-msg)
290         (delete-file (concat file-msg ".el"))
291         (kill-buffer tembuf)
292         (kill-line 1))      
293       (set-buffer buffer-index)
294       (save-buffer smtpmail-queue-index)
295       (kill-buffer buffer-index)
296       )))
297
298
299 (defun smtpmail-do-bcc (header-end)
300   "Delete BCC: and their continuation lines from the header area.
301 There may be multiple BCC: lines, and each may have arbitrarily
302 many continuation lines."
303   (let ((case-fold-search t))
304     (save-excursion
305       (goto-char (point-min))
306       ;; iterate over all BCC: lines
307       (while (re-search-forward "^BCC:" header-end t)
308         (delete-region (match-beginning 0) (progn (forward-line 1) (point)))
309         ;; get rid of any continuation lines
310         (while (and (looking-at "^[ \t].*\n") (< (point) header-end))
311           (replace-match ""))
312         )
313       ) ;; save-excursion
314     ) ;; let
315   )
316
317
318 ;;;
319
320 (provide 'smtpmail)
321
322 ;;; smtpmail.el ends here