Mercurial > emacs
annotate lisp/mail/mailpost.el @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128
typos.
author | Jeff Law <law@redhat.com> |
---|---|
date | Wed, 10 Sep 1997 21:16:20 +0000 |
parents | 11218164bc54 |
children | ea04bf51647c |
rev | line source |
---|---|
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
1 ;;; mailpost.el --- RMAIL coupler to /usr/uci/post mailer |
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
2 |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; This is in the public domain |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 ;; since Delp distributed it without a copyright notice in 1986. |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
5 |
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
6 ;; Author: Gary Delp <delp@huey.Udel.Edu> |
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
7 ;; Maintainer: FSF |
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
8 ;; Created: 13 Jan 1986 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
791
diff
changeset
|
9 ;; Keywords: mail |
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
10 |
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
11 ;;; Commentary: |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
222
diff
changeset
|
12 |
4 | 13 ;; Yet another mail interface. this for the rmail system to provide |
14 ;; the missing sendmail interface on systems without /usr/lib/sendmail, | |
15 ;; but with /usr/uci/post. | |
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
16 |
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
663
diff
changeset
|
17 ;;; Code: |
4 | 18 |
923 | 19 (require 'mailalias) |
20 (require 'sendmail) | |
21 | |
4 | 22 ;; (setq send-mail-function 'post-mail-send-it) |
23 | |
24 (defun post-mail-send-it () | |
222 | 25 "The MH -post interface for `rmail-mail' to call. |
26 To use it, include \"(setq send-mail-function 'post-mail-send-it)\" in | |
27 site-init." | |
4 | 28 (let ((errbuf (if mail-interactive |
29 (generate-new-buffer " post-mail errors") | |
30 0)) | |
31 (temfile "/tmp/,rpost") | |
32 (tembuf (generate-new-buffer " post-mail temp")) | |
33 (case-fold-search nil) | |
34 delimline | |
35 (mailbuf (current-buffer))) | |
36 (unwind-protect | |
37 (save-excursion | |
38 (set-buffer tembuf) | |
39 (erase-buffer) | |
40 (insert-buffer-substring mailbuf) | |
41 (goto-char (point-max)) | |
42 ;; require one newline at the end. | |
43 (or (= (preceding-char) ?\n) | |
44 (insert ?\n)) | |
45 ;; Change header-delimiter to be what post-mail expects. | |
46 (goto-char (point-min)) | |
47 (search-forward (concat "\n" mail-header-separator "\n")) | |
48 (replace-match "\n\n") | |
49 (backward-char 1) | |
50 (setq delimline (point-marker)) | |
51 (if mail-aliases | |
52 (expand-mail-aliases (point-min) delimline)) | |
53 (goto-char (point-min)) | |
54 ;; ignore any blank lines in the header | |
55 (while (and (re-search-forward "\n\n\n*" delimline t) | |
56 (< (point) delimline)) | |
57 (replace-match "\n")) | |
58 ;; Find and handle any FCC fields. | |
59 (let ((case-fold-search t)) | |
60 (goto-char (point-min)) | |
61 (if (re-search-forward "^FCC:" delimline t) | |
62 (mail-do-fcc delimline)) | |
63 ;; If there is a From and no Sender, put it a Sender. | |
64 (goto-char (point-min)) | |
65 (and (re-search-forward "^From:" delimline t) | |
66 (not (save-excursion | |
67 (goto-char (point-min)) | |
68 (re-search-forward "^Sender:" delimline t))) | |
69 (progn | |
70 (forward-line 1) | |
71 (insert "Sender: " (user-login-name) "\n"))) | |
72 ;; don't send out a blank subject line | |
73 (goto-char (point-min)) | |
74 (if (re-search-forward "^Subject:[ \t]*\n" delimline t) | |
75 (replace-match "")) | |
76 (if mail-interactive | |
77 (save-excursion | |
78 (set-buffer errbuf) | |
79 (erase-buffer)))) | |
80 (write-file (setq temfile (make-temp-name temfile))) | |
81 (set-file-modes temfile 384) | |
82 (apply 'call-process | |
83 (append (list (if (boundp 'post-mail-program) | |
84 post-mail-program | |
85 "/usr/uci/lib/mh/post") | |
86 nil errbuf nil | |
87 "-nofilter" "-msgid") | |
88 (if mail-interactive '("-watch") '("-nowatch")) | |
89 (list temfile))) | |
90 (if mail-interactive | |
91 (save-excursion | |
92 (set-buffer errbuf) | |
93 (goto-char (point-min)) | |
94 (while (re-search-forward "\n\n* *" nil t) | |
95 (replace-match "; ")) | |
96 (if (not (zerop (buffer-size))) | |
97 (error "Sending...failed to %s" | |
98 (buffer-substring (point-min) (point-max))))))) | |
99 (kill-buffer tembuf) | |
100 (if (bufferp errbuf) | |
101 (switch-to-buffer errbuf))))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
222
diff
changeset
|
102 |
18383 | 103 (provide 'mailpost) |
104 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
222
diff
changeset
|
105 ;;; mailpost.el ends here |