Mercurial > emacs
annotate lisp/mail/mailpost.el @ 20892:18f3cb26243f before-miles-orphaned-changes gcc-2_8_1-980401 gcc-2_8_1-980407 gcc-2_8_1-980412 gcc-2_8_1-980413 gcc-2_8_1-RELEASE gcc_2_8_1-980315 libc-980214 libc-980215 libc-980216 libc-980217 libc-980218 libc-980219 libc-980220 libc-980221 libc-980222 libc-980223 libc-980224 libc-980225 libc-980226 libc-980227 libc-980228 libc-980301 libc-980302 libc-980303 libc-980304 libc-980306 libc-980307 libc-980308 libc-980309 libc-980310 libc-980311 libc-980312 libc-980313 libc-980314 libc-980315 libc-980316 libc-980317 libc-980318 libc-980319 libc-980320 libc-980321 libc-980322 libc-980323 libc-980324 libc-980325 libc-980326 libc-980327 libc-980328 libc-980329 libc-980330 libc-980331 libc-980401 libc-980402 libc-980403 libc-980404 libc-980405 libc-980406 libc-980407 libc-980408 libc-980409 libc-980410 libc-980411 libc-980412 libc-980413 libc-980414 libc-980428 libc-980429 libc-980430 libc-980501 libc-980502 libc-980503 libc-980504 libc-980505 libc-980506 libc-980507 libc-980508 libc-980509 libc-980510 libc-980512 libc-980513 libc-980514 libc-980515 libc-980516 libc-980517 libc-980518 libc-980519 libc-980520 libc-980521 libc-980522 libc-980523 libc-980524 libc-980525 libc-980526 libc-980527 libc-980528 libc-980529 libc-980530 libc-980531 libc-980601 libc-980602 libc-980603 libc-980604 libc-980605 libc-980606 libc-980607 libc-980608 libc-980609 libc-980610 libc-980611 libc-980612 libc-980613
Add PentiumII (i786). Add '7' to all i[3456] entries.
Add AMD and Cyrix names for P5 and P6.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Fri, 13 Feb 1998 12:16:46 +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 |