1 ;;; mailpost.el --- RMAIL coupler to /usr/uci/post mailer
3 ;; This is in the public domain
4 ;; since Delp distributed it in 1986 without a copyright notice.
6 ;; This file is part of GNU Emacs.
8 ;; Author: Gary Delp <delp@huey.Udel.Edu>
10 ;; Created: 13 Jan 1986
15 ;; Yet another mail interface. this for the rmail system to provide
16 ;; the missing sendmail interface on systems without /usr/lib/sendmail,
17 ;; but with /usr/uci/post.
24 ;; (setq send-mail-function 'post-mail-send-it)
26 (defun post-mail-send-it ()
27 "The MH -post interface for `rmail-mail' to call.
28 To use it, include \"(setq send-mail-function 'post-mail-send-it)\" in
30 (let ((errbuf (if mail-interactive
31 (generate-new-buffer " post-mail errors")
34 (tembuf (generate-new-buffer " post-mail temp"))
35 (case-fold-search nil
)
37 (mailbuf (current-buffer)))
39 (with-current-buffer tembuf
41 (insert-buffer-substring mailbuf
)
42 (goto-char (point-max))
43 ;; require one newline at the end.
44 (or (= (preceding-char) ?
\n)
46 ;; Change header-delimiter to be what post-mail expects.
47 (mail-sendmail-undelimit-header)
48 (setq delimline
(point-marker))
50 (expand-mail-aliases (point-min) delimline
))
51 (goto-char (point-min))
52 ;; ignore any blank lines in the header
53 (while (and (re-search-forward "\n\n\n*" delimline t
)
54 (< (point) delimline
))
56 ;; Find and handle any FCC fields.
57 (let ((case-fold-search t
))
58 (goto-char (point-min))
59 (if (re-search-forward "^FCC:" delimline t
)
60 (mail-do-fcc delimline
))
61 ;; If there is a From and no Sender, put it a Sender.
62 (goto-char (point-min))
63 (and (re-search-forward "^From:" delimline t
)
65 (goto-char (point-min))
66 (re-search-forward "^Sender:" delimline t
)))
69 (insert "Sender: " (user-login-name) "\n")))
70 ;; don't send out a blank subject line
71 (goto-char (point-min))
72 (if (re-search-forward "^Subject:[ \t]*\n" delimline t
)
75 (with-current-buffer errbuf
77 (let ((m (default-file-modes)))
80 (set-default-file-modes 384)
81 (setq temfile
(make-temp-file ",rpost")))
82 (set-default-file-modes m
)))
84 (append (list (if (boundp 'post-mail-program
)
86 "/usr/uci/lib/mh/post")
89 (if mail-interactive
'("-watch") '("-nowatch"))
92 (with-current-buffer errbuf
93 (goto-char (point-min))
94 (while (re-search-forward "\n\n* *" nil t
)
96 (if (not (zerop (buffer-size)))
97 (error "Sending...failed to %s"
98 (buffer-substring (point-min) (point-max)))))))
101 (switch-to-buffer errbuf
)))))
105 ;;; mailpost.el ends here