annotate lisp/utils/rfc822.el @ 98:0d2f883870bc r20-1b1

Import from CVS: tag r20-1b1
author cvs
date Mon, 13 Aug 2007 09:13:56 +0200
parents 0293115a14e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; rfc822.el --- hairy rfc822 parser for mail and news and suchlike
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Keywords: mail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Copyright (C) 1986, 1987, 1993 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author Richard Mlynarik.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
20 ;; along with XEmacs; see the file COPYING. If not, write to the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
22 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Synched up with: Not synched with FSF but very close.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; This code should probably be replaced with mail-extr.el once it's a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; little more stable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (provide 'rfc822)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; uses address-start free, throws to address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (defun rfc822-bad-address (reason)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (insert "_^_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (narrow-to-region address-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (if (re-search-forward "[,;]" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (max (point-min) (1- (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; make the error string be suitable for inclusion in (...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (let ((losers '("\\" "(" ")" "\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (while losers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (while (search-forward (car losers) nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (insert ?\\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (setq losers (cdr losers))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (goto-char (point-min)) (insert "(Unparsable address -- "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 reason
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ":\n\t \"")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (goto-char (point-max)) (insert "\")"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (rfc822-nuke-whitespace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (throw 'address (buffer-substring address-start (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (defun rfc822-nuke-whitespace (&optional leave-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (let (ch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (while (cond ((eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ((= (setq ch (following-char)) ?\()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (while (if (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (rfc822-bad-address "Unbalanced comment (...)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (/= (setq ch (following-char)) ?\)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (cond ((looking-at "[^()\\]+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (replace-match ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ((= ch ?\()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (rfc822-nuke-whitespace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ((< (point) (1- (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (delete-char 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (rfc822-bad-address "orphaned backslash"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;; delete remaining "()"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (delete-char 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ((memq ch '(?\ ?\t ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (delete-region (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (progn (skip-chars-forward " \t\n") (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (or (not leave-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (bobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (= (preceding-char) ?\ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (insert ?\ ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (defun rfc822-looking-at (regex &optional leave-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (if (cond ((stringp regex)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (if (looking-at regex)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (progn (goto-char (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (if (and (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (= (following-char) regex))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (progn (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (let ((tem (match-data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (rfc822-nuke-whitespace leave-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (store-match-data tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (defun rfc822-snarf-word ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ;; word is atom | quoted-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (cond ((= (following-char) ?\")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ;; quoted-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (or (rfc822-looking-at "\"\\([^\"\\\n]\\|\\\\.\\|\\\\\n\\)*\"")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (rfc822-bad-address "Unterminated quoted string")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ((rfc822-looking-at "[^][\000-\037\177-\377 ()<>@,;:\\\".]+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ;; atom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (rfc822-bad-address "Rubbish in address"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (defun rfc822-snarf-words ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (rfc822-snarf-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (while (rfc822-looking-at ?.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (rfc822-snarf-word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (defun rfc822-snarf-subdomain ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 ;; sub-domain is domain-ref | domain-literal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (cond ((= (following-char) ?\[)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 ;; domain-ref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (or (rfc822-looking-at "\\[\\([^][\\\n]\\|\\\\.\\|\\\\\n\\)*\\]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (rfc822-bad-address "Unterminated domain literal [...]")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ((rfc822-looking-at "[^][\000-\037\177-\377 ()<>@,;:\\\".]+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 ;; domain-literal = atom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (rfc822-bad-address "Rubbish in host/domain specification"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (defun rfc822-snarf-domain ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (rfc822-snarf-subdomain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (while (rfc822-looking-at ?.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (rfc822-snarf-subdomain)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (defun rfc822-snarf-frob-list (name separator terminator snarfer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 &optional return)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (let ((first t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (list ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (while (cond ((eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (rfc822-bad-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (format "End of addresses in middle of %s" name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ((rfc822-looking-at terminator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 ((rfc822-looking-at separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 ;; multiple separators are allowed and do nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (while (rfc822-looking-at separator))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (rfc822-bad-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (format "Gubbish in middle of %s" name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (setq tem (funcall snarfer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 first nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (and return tem
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (setq list (if (listp tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (nconc (reverse tem) list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (cons tem list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (nreverse list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 ;; return either an address (a string) or a list of addresses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (defun rfc822-addresses-1 (&optional allow-groups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 ;; Looking for an rfc822 `address'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ;; Either a group (1*word ":" [#mailbox] ";")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ;; or a mailbox (addr-spec | 1*word route-addr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 ;; addr-spec is (local-part "@" domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 ;; route-addr is ("<" [1#("@" domain) ":"] addr-spec ">")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 ;; local-part is (word *("." word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;; word is (atom | quoted-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 ;; quoted-string is ("\([^\"\\n]\|\\.\|\\\n\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ;; atom is [^\000-\037\177 ()<>@,;:\".[]]+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 ;; domain is sub-domain *("." sub-domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 ;; sub-domain is domain-ref | domain-literal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 ;; domain-literal is "[" *(dtext | quoted-pair) "]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 ;; dtext is "[^][\\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 ;; domain-ref is atom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (let ((address-start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (n 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (catch 'address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 ;; optimize common cases:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ;; foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 ;; foo.bar@bar.zap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ;; followed by "\\'\\|,\\|([^()\\]*)\\'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 ;; other common cases are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 ;; foo bar <foo.bar@baz.zap>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 ;; "foo bar" <foo.bar@baz.zap>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 ;; those aren't hacked yet.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (if (and (rfc822-looking-at "[^][\000-\037\177-\377 ()<>@,;:\\\"]+\\(\\|@[^][\000-\037\177-\377 ()<>@,;:\\\"]+\\)" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (progn (or (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (rfc822-looking-at ?,))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 ;; rfc822-looking-at may have inserted a space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (or (bobp) (/= (preceding-char) ?\ ) (delete-char -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 ;; relying on the fact that rfc822-looking-at <char>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 ;; doesn't mung match-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (throw 'address (buffer-substring address-start (match-end 0)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (goto-char address-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (while t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (cond ((and (= n 1) (rfc822-looking-at ?@))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 ;; local-part@domain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (rfc822-snarf-domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (throw 'address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (buffer-substring address-start (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ((rfc822-looking-at ?:)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (cond ((not allow-groups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (rfc822-bad-address "A group name may not appear here"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 ((= n 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (rfc822-bad-address "No name for :...; group")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 ;; group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (throw 'address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 ;; return a list of addresses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (rfc822-snarf-frob-list ":...; group" ?\, ?\;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 'rfc822-addresses-1 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 ((rfc822-looking-at ?<)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (strip t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (cond ((rfc822-looking-at ?>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 ;; empty path
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 ((and (not (eobp)) (= (following-char) ?\@))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 ;; <@foo.bar,@baz:quux@abcd.efg>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (rfc822-snarf-frob-list "<...> address" ?\, ?\:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (function (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (if (rfc822-looking-at ?\@)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (rfc822-snarf-domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (rfc822-bad-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 "Gubbish in route-addr")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (rfc822-snarf-words)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (or (rfc822-looking-at ?@)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (rfc822-bad-address "Malformed <..@..> address"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (rfc822-snarf-domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (setq strip nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 ((progn (rfc822-snarf-words) (rfc822-looking-at ?@))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ; allow <foo> (losing unix seems to do this)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (rfc822-snarf-domain)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (let ((end (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (if (rfc822-looking-at ?\>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (throw 'address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (buffer-substring (if strip start (1- start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (if strip end (1+ end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (rfc822-bad-address "Unterminated <...> address")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 ((looking-at "[^][\000-\037\177-\377 ()<>@,;:\\.]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 ;; this allows "." to be part of the words preceding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ;; an addr-spec, since many broken mailers output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ;; "Hern K. Herklemeyer III
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 ;; <yank@megadeath.dod.gods-own-country>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (or (= n 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (= (preceding-char) ?\ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (insert ?\ ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (rfc822-snarf-words)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (setq n (1+ n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ((= n 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (throw 'address nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 ((= n 1) ; allow "foo" (losing unix seems to do this)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (throw 'address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (buffer-substring address-start (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ((or (eobp) (looking-at ","))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (rfc822-bad-address "Missing comma or route-spec"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (rfc822-bad-address "Strange character or missing comma")))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (defun rfc822-addresses (header-text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (if (string-match "\\`[ \t]*\\([^][\000-\037\177-\377 ()<>@,;:\\\".]+\\)[ \t]*\\'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 header-text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 ;; Make very simple case moderately fast.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (list (substring header-text (match-beginning 1) (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (let ((buf (generate-new-buffer " rfc822")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (make-local-variable 'case-fold-search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (setq case-fold-search nil) ;For speed(?)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (insert header-text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 ;; unfold continuation lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (while (re-search-forward "\\([^\\]\\(\\\\\\\\\\)*\\)\n[ \t]" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (replace-match "\\1 " t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (rfc822-nuke-whitespace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (let ((list ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 tem
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (p -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 address-start); this is for rfc822-bad-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (while (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (setq address-start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (setq tem
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (catch 'address ; this is for rfc822-bad-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (cond ((rfc822-looking-at ?\,)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 ((looking-at "[][\000-\037\177-\377@;:\\.>]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (forward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (rfc822-bad-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (format "Strange character \\%c found"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (preceding-char))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (rfc822-addresses-1 t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (cond ((null tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 ((stringp tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (setq list (cons tem list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (setq list (nconc (nreverse tem) list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (if (= (point) p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 ;; Punt on losing, misformatted address / infinite loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 ;; For example: "lcm36651@uxa.cso.uiuc.edu (Hi! ;) )"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (goto-char (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (setq p (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (nreverse list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (and buf (kill-buffer buf))))))