* calendar/todo-mode.el: Fix two bugs.
[bpt/emacs.git] / lisp / mail / rfc822.el
CommitLineData
c88ab9ce
ER
1;;; rfc822.el --- hairy rfc822 parser for mail and news and suchlike
2
ba318903 3;; Copyright (C) 1986-1987, 1990, 2001-2014 Free Software Foundation,
ab422c4d 4;; Inc.
9750e079 5
4821e2af 6;; Author: Richard Mlynarik <mly@eddie.mit.edu>
34dc21db 7;; Maintainer: emacs-devel@gnu.org
d7b4d18f 8;; Keywords: mail
4821e2af 9
cedaf3aa
RS
10;; This file is part of GNU Emacs.
11
b1fc2b50 12;; GNU Emacs is free software: you can redistribute it and/or modify
cedaf3aa 13;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
cedaf3aa
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
b1fc2b50 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
cedaf3aa 24
d9ecc911
ER
25;;; Commentary:
26
27;; Support functions for parsing RFC-822 headers, used by mail and news
a1506d29 28;; modes.
d9ecc911 29
4821e2af
ER
30;;; Code:
31
d6b4d749
RS
32(defvar rfc822-address-start)
33
34;; uses rfc822-address-start free, throws to address
cedaf3aa
RS
35(defun rfc822-bad-address (reason)
36 (save-restriction
37 (insert "_^_")
d6b4d749 38 (narrow-to-region rfc822-address-start
cedaf3aa
RS
39 (if (re-search-forward "[,;]" nil t)
40 (max (point-min) (1- (point)))
41 (point-max)))
42 ;; make the error string be suitable for inclusion in (...)
43 (let ((losers '("\\" "(" ")" "\n")))
44 (while losers
45 (goto-char (point-min))
46 (while (search-forward (car losers) nil t)
47 (backward-char 1)
48 (insert ?\\)
49 (forward-char 1))
50 (setq losers (cdr losers))))
51 (goto-char (point-min)) (insert "(Unparsable address -- "
52 reason
416916d4 53 ": \"")
cedaf3aa
RS
54 (goto-char (point-max)) (insert "\")"))
55 (rfc822-nuke-whitespace)
d6b4d749 56 (throw 'address (buffer-substring rfc822-address-start (point))))
cedaf3aa
RS
57
58(defun rfc822-nuke-whitespace (&optional leave-space)
59 (let (ch)
60 (while (cond ((eobp)
61 nil)
62 ((= (setq ch (following-char)) ?\()
63 (forward-char 1)
64 (while (if (eobp)
65 (rfc822-bad-address "Unbalanced comment (...)")
66 (/= (setq ch (following-char)) ?\)))
67 (cond ((looking-at "[^()\\]+")
68 (replace-match ""))
69 ((= ch ?\()
70 (rfc822-nuke-whitespace))
71 ((< (point) (1- (point-max)))
72 (delete-char 2))
73 (t
74 (rfc822-bad-address "orphaned backslash"))))
75 ;; delete remaining "()"
76 (forward-char -1)
77 (delete-char 2)
78 t)
a8eb445b 79 ((memq ch '(?\ ?\t ?\n))
cedaf3aa
RS
80 (delete-region (point)
81 (progn (skip-chars-forward " \t\n") (point)))
82 t)
83 (t
84 nil)))
85 (or (not leave-space)
86 (eobp)
87 (bobp)
88 (= (preceding-char) ?\ )
89 (insert ?\ ))))
90
91(defun rfc822-looking-at (regex &optional leave-space)
92 (if (cond ((stringp regex)
93 (if (looking-at regex)
94 (progn (goto-char (match-end 0))
95 t)))
96 (t
97 (if (and (not (eobp))
98 (= (following-char) regex))
99 (progn (forward-char 1)
100 t))))
101 (let ((tem (match-data)))
102 (rfc822-nuke-whitespace leave-space)
f6b4e0f4 103 (set-match-data tem)
cedaf3aa
RS
104 t)))
105
106(defun rfc822-snarf-word ()
107 ;; word is atom | quoted-string
108 (cond ((= (following-char) ?\")
109 ;; quoted-string
110 (or (rfc822-looking-at "\"\\([^\"\\\n]\\|\\\\.\\|\\\\\n\\)*\"")
111 (rfc822-bad-address "Unterminated quoted string")))
55872f3e 112 ((rfc822-looking-at "[^][\000-\037 ()<>@,;:\\\".]+")
cedaf3aa
RS
113 ;; atom
114 )
115 (t
116 (rfc822-bad-address "Rubbish in address"))))
117
118(defun rfc822-snarf-words ()
119 (rfc822-snarf-word)
120 (while (rfc822-looking-at ?.)
121 (rfc822-snarf-word)))
122
123(defun rfc822-snarf-subdomain ()
124 ;; sub-domain is domain-ref | domain-literal
125 (cond ((= (following-char) ?\[)
126 ;; domain-ref
127 (or (rfc822-looking-at "\\[\\([^][\\\n]\\|\\\\.\\|\\\\\n\\)*\\]")
128 (rfc822-bad-address "Unterminated domain literal [...]")))
55872f3e 129 ((rfc822-looking-at "[^][\000-\037 ()<>@,;:\\\".]+")
cedaf3aa
RS
130 ;; domain-literal = atom
131 )
132 (t
133 (rfc822-bad-address "Rubbish in host/domain specification"))))
134
135(defun rfc822-snarf-domain ()
136 (rfc822-snarf-subdomain)
137 (while (rfc822-looking-at ?.)
138 (rfc822-snarf-subdomain)))
139
140(defun rfc822-snarf-frob-list (name separator terminator snarfer
141 &optional return)
142 (let ((first t)
143 (list ())
144 tem)
145 (while (cond ((eobp)
146 (rfc822-bad-address
147 (format "End of addresses in middle of %s" name)))
148 ((rfc822-looking-at terminator)
149 nil)
150 ((rfc822-looking-at separator)
151 ;; multiple separators are allowed and do nothing.
152 (while (rfc822-looking-at separator))
153 t)
154 (first
155 t)
156 (t
157 (rfc822-bad-address
158 (format "Gubbish in middle of %s" name))))
159 (setq tem (funcall snarfer)
160 first nil)
161 (and return tem
162 (setq list (if (listp tem)
163 (nconc (reverse tem) list)
164 (cons tem list)))))
165 (nreverse list)))
166
167;; return either an address (a string) or a list of addresses
168(defun rfc822-addresses-1 (&optional allow-groups)
169 ;; Looking for an rfc822 `address'
170 ;; Either a group (1*word ":" [#mailbox] ";")
171 ;; or a mailbox (addr-spec | 1*word route-addr)
172 ;; addr-spec is (local-part "@" domain)
173 ;; route-addr is ("<" [1#("@" domain) ":"] addr-spec ">")
174 ;; local-part is (word *("." word))
175 ;; word is (atom | quoted-string)
176 ;; quoted-string is ("\([^\"\\n]\|\\.\|\\\n\)")
177 ;; atom is [^\000-\037\177 ()<>@,;:\".[]]+
178 ;; domain is sub-domain *("." sub-domain)
179 ;; sub-domain is domain-ref | domain-literal
180 ;; domain-literal is "[" *(dtext | quoted-pair) "]"
181 ;; dtext is "[^][\\n"
182 ;; domain-ref is atom
d6b4d749 183 (let ((rfc822-address-start (point))
cedaf3aa
RS
184 (n 0))
185 (catch 'address
186 ;; optimize common cases:
187 ;; foo
188 ;; foo.bar@bar.zap
189 ;; followed by "\\'\\|,\\|([^()\\]*)\\'"
190 ;; other common cases are:
191 ;; foo bar <foo.bar@baz.zap>
192 ;; "foo bar" <foo.bar@baz.zap>
193 ;; those aren't hacked yet.
55872f3e 194 (if (and (rfc822-looking-at "[^][\000-\037 ()<>@,;:\\\"]+\\(\\|@[^][\000-\037 ()<>@,;:\\\"]+\\)" t)
cedaf3aa
RS
195 (progn (or (eobp)
196 (rfc822-looking-at ?,))))
197 (progn
198 ;; rfc822-looking-at may have inserted a space
199 (or (bobp) (/= (preceding-char) ?\ ) (delete-char -1))
200 ;; relying on the fact that rfc822-looking-at <char>
201 ;; doesn't mung match-data
d6b4d749
RS
202 (throw 'address (buffer-substring rfc822-address-start (match-end 0)))))
203 (goto-char rfc822-address-start)
cedaf3aa
RS
204 (while t
205 (cond ((and (= n 1) (rfc822-looking-at ?@))
206 ;; local-part@domain
207 (rfc822-snarf-domain)
208 (throw 'address
d6b4d749 209 (buffer-substring rfc822-address-start (point))))
cedaf3aa
RS
210 ((rfc822-looking-at ?:)
211 (cond ((not allow-groups)
212 (rfc822-bad-address "A group name may not appear here"))
213 ((= n 0)
214 (rfc822-bad-address "No name for :...; group")))
215 ;; group
216 (throw 'address
217 ;; return a list of addresses
218 (rfc822-snarf-frob-list ":...; group" ?\, ?\;
219 'rfc822-addresses-1 t)))
220 ((rfc822-looking-at ?<)
221 (let ((start (point))
222 (strip t))
223 (cond ((rfc822-looking-at ?>)
224 ;; empty path
225 ())
226 ((and (not (eobp)) (= (following-char) ?\@))
227 ;; <@foo.bar,@baz:quux@abcd.efg>
228 (rfc822-snarf-frob-list "<...> address" ?\, ?\:
229 (function (lambda ()
230 (if (rfc822-looking-at ?\@)
231 (rfc822-snarf-domain)
232 (rfc822-bad-address
233 "Gubbish in route-addr")))))
234 (rfc822-snarf-words)
235 (or (rfc822-looking-at ?@)
236 (rfc822-bad-address "Malformed <..@..> address"))
237 (rfc822-snarf-domain)
238 (setq strip nil))
239 ((progn (rfc822-snarf-words) (rfc822-looking-at ?@))
240 ; allow <foo> (losing unix seems to do this)
241 (rfc822-snarf-domain)))
242 (let ((end (point)))
243 (if (rfc822-looking-at ?\>)
244 (throw 'address
245 (buffer-substring (if strip start (1- start))
246 (if strip end (1+ end))))
247 (rfc822-bad-address "Unterminated <...> address")))))
55872f3e 248 ((looking-at "[^][\000-\037 ()<>@,;:\\.]")
cedaf3aa
RS
249 ;; this allows "." to be part of the words preceding
250 ;; an addr-spec, since many broken mailers output
251 ;; "Hern K. Herklemeyer III
252 ;; <yank@megadeath.dod.gods-own-country>"
278fc732 253 (let ((again t))
254 (while again
255 (or (= n 0) (bobp) (= (preceding-char) ?\ )
256 (insert ?\ ))
48aefb44 257 (rfc822-snarf-words)
278fc732 258 (setq n (1+ n))
259 (setq again (or (rfc822-looking-at ?.)
55872f3e 260 (looking-at "[^][\000-\037 ()<>@,;:\\.]"))))))
cedaf3aa
RS
261 ((= n 0)
262 (throw 'address nil))
263 ((= n 1) ; allow "foo" (losing unix seems to do this)
264 (throw 'address
d6b4d749 265 (buffer-substring rfc822-address-start (point))))
278fc732 266 ((> n 1)
267 (rfc822-bad-address "Missing comma between addresses or badly-formatted address"))
268 ((or (eobp) (= (following-char) ?,))
cedaf3aa
RS
269 (rfc822-bad-address "Missing comma or route-spec"))
270 (t
271 (rfc822-bad-address "Strange character or missing comma")))))))
272
a1506d29 273
cedaf3aa 274(defun rfc822-addresses (header-text)
55872f3e 275 (if (string-match "\\`[ \t]*\\([^][\000-\037 ()<>@,;:\\\".]+\\)[ \t]*\\'"
cedaf3aa
RS
276 header-text)
277 ;; Make very simple case moderately fast.
278 (list (substring header-text (match-beginning 1) (match-end 1)))
279 (let ((buf (generate-new-buffer " rfc822")))
280 (unwind-protect
937e6a56
SM
281 (with-current-buffer buf
282 (make-local-variable 'case-fold-search)
283 (setq case-fold-search nil) ;For speed(?)
284 (insert header-text)
285 ;; unfold continuation lines
286 (goto-char (point-min))
cedaf3aa 287
937e6a56
SM
288 (while (re-search-forward "\\([^\\]\\(\\\\\\\\\\)*\\)\n[ \t]"
289 nil t)
290 (replace-match "\\1 " t))
cedaf3aa 291
937e6a56 292 (goto-char (point-min))
4e7cafbe
CY
293 ;; Give `rfc822-address-start' a non-nil initial value to
294 ;; prevent `rfc822-bad-address' from raising a
295 ;; `wrong-type-argument' error.
296 (let* ((rfc822-address-start (point))
297 list tem
298 (err
299 (catch 'address
300 ;; Note that `rfc822-nuke-whitespace' and
301 ;; `rfc822-looking-at' can throw.
302 (rfc822-nuke-whitespace)
303 (while (not (eobp))
304 (setq rfc822-address-start (point))
305 (setq tem
306 (cond ((rfc822-looking-at ?\,)
307 nil)
308 ((looking-at "[][\000-\037@;:\\.>)]")
309 (forward-char)
310 (catch 'address ; For rfc822-bad-address
311 (rfc822-bad-address
312 (format "Strange character \\%c found"
313 (preceding-char)))))
314 (t
315 (rfc822-addresses-1 t))))
316 (cond ((null tem))
317 ((stringp tem)
318 (setq list (cons tem list)))
319 (t
320 (setq list (nconc (nreverse tem) list)))))
321 nil)))
322 (nreverse (append (if err (list err)) list))))
c8145d5e 323 (and buf (kill-buffer buf))))))
cedaf3aa 324
49116ac0
JB
325(provide 'rfc822)
326
c88ab9ce 327;;; rfc822.el ends here