1 ;;; mail-utils.el --- utility functions used both by rmail and rnews
3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 ;; 2009 Free Software Foundation, Inc.
7 ;; Keywords: mail, news
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Utility functions for mail and netnews handling. These handle fine
27 ;; points of header parsing.
31 ;;; We require lisp-mode to make sure that lisp-mode-syntax-table has
36 (defcustom mail-use-rfc822 nil
37 "If non-nil, use a full, hairy RFC822 parser on mail addresses.
38 Otherwise, (the default) use a smaller, somewhat faster, and
39 often correct parser."
43 ;; Returns t if file FILE is an Rmail file.
45 (defun mail-file-babyl-p (file)
46 "Return non-nil if FILE is a Babyl file."
48 (insert-file-contents file nil
0 100)
49 (looking-at "BABYL OPTIONS:")))
51 (defun mail-string-delete (string start end
)
52 "Returns a string containing all of STRING except the part
53 from START (inclusive) to END (exclusive)."
54 (if (null end
) (substring string
0 start
)
55 (concat (substring string
0 start
)
56 (substring string end nil
))))
59 (defun mail-quote-printable (string &optional wrapper
)
60 "Convert a string to the \"quoted printable\" Q encoding.
61 If the optional argument WRAPPER is non-nil,
62 we add the wrapper characters =?ISO-8859-1?Q?....?=."
63 (let ((i 0) (result ""))
65 (while (string-match "[?=\"\200-\377]" string i
)
67 (concat result
(substring string i
(match-beginning 0))
68 (upcase (format "=%02x"
69 (aref string
(match-beginning 0))))))
70 (setq i
(match-end 0)))
72 (concat "=?ISO-8859-1?Q?"
73 result
(substring string i
)
75 (concat result
(substring string i
))))))
78 (defun mail-quote-printable-region (beg end
&optional wrapper
)
79 "Convert the region to the \"quoted printable\" Q encoding.
80 If the optional argument WRAPPER is non-nil,
81 we add the wrapper characters =?ISO-8859-1?Q?....?=."
87 (narrow-to-region beg end
)
88 (while (re-search-forward "[?=\"\200-\377]" nil t
)
89 (replace-match (upcase (format "=%02x" (preceding-char)))
93 (insert "=?ISO-8859-1?Q?")
97 (defun mail-unquote-printable-hexdigit (char)
98 (setq char
(upcase char
))
104 (defun mail-unquote-printable (string &optional wrapper
)
105 "Undo the \"quoted printable\" encoding.
106 If the optional argument WRAPPER is non-nil,
107 we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=."
110 (string-match "\\`=\\?ISO-8859-1\\?Q\\?\\([^?]*\\)\\?" string
)
111 (setq string
(match-string 1 string
)))
113 (while (string-match "=\\(..\\|\n\\)" string i
)
114 (setq strings
(cons (substring string i
(match-beginning 0)) strings
))
115 (unless (= (aref string
(match-beginning 1)) ?
\n)
118 (+ (* 16 (mail-unquote-printable-hexdigit
119 (aref string
(match-beginning 1))))
120 (mail-unquote-printable-hexdigit
121 (aref string
(1+ (match-beginning 1))))))
123 (setq i
(match-end 0)))
124 (apply 'concat
(nreverse (cons (substring string i
) strings
))))))
127 (defun mail-unquote-printable-region (beg end
&optional wrapper noerror
129 "Undo the \"quoted printable\" encoding in buffer from BEG to END.
130 If the optional argument WRAPPER is non-nil,
131 we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=.
132 If NOERROR is non-nil, return t if successful.
133 If UNIBYTE is non-nil, insert converted characters as unibyte.
134 That is useful if you are going to character code decoding afterward,
141 (narrow-to-region beg end
)
142 (goto-char (point-min))
144 (looking-at "\\`=\\?ISO-8859-1\\?Q\\?\\([^?]*\\)\\?"))
145 (delete-region (match-end 1) end
)
146 (delete-region (point) (match-beginning 1)))
147 (while (re-search-forward "=\\(\\([0-9A-F][0-9A-F]\\)\\|[=\n]\\|..\\)" nil t
)
148 (goto-char (match-end 0))
149 (cond ((= (char-after (match-beginning 1)) ?
\n)
151 ((= (char-after (match-beginning 1)) ?
=)
154 (let ((char (+ (* 16 (mail-unquote-printable-hexdigit
155 (char-after (match-beginning 2))))
156 (mail-unquote-printable-hexdigit
157 (char-after (1+ (match-beginning 2)))))))
161 ;; insert-byte will insert this as a
162 ;; corresponding eight-bit character.
163 (insert-byte char
1))
164 (replace-match (make-string 1 char
) t t
))))
168 (error "Malformed MIME quoted-printable message"))))
171 (eval-when-compile (require 'rfc822
))
173 (defun mail-strip-quoted-names (address)
174 "Delete comments and quoted strings in an address list ADDRESS.
175 Also delete leading/trailing whitespace and replace FOO <BAR> with just BAR.
176 Return a modified address list."
180 (progn (require 'rfc822
)
181 (mapconcat 'identity
(rfc822-addresses address
) ", "))
184 ;; Detect nested comments.
185 (if (string-match "[ \t]*(\\([^)\\]\\|\\\\.\\|\\\\\n\\)*(" address
)
186 ;; Strip nested comments.
187 (with-current-buffer (get-buffer-create " *temp*")
190 (set-syntax-table lisp-mode-syntax-table
)
192 (while (search-forward "(" nil t
)
194 (skip-chars-backward " \t")
195 (delete-region (point)
199 (error (goto-char (point-max))))
201 (setq address
(buffer-string))
203 ;; Strip non-nested comments an easier way.
204 (while (setq pos
(string-match
205 ;; This doesn't hack rfc822 nested comments
206 ;; `(xyzzy (foo) whinge)' properly. Big deal.
207 "[ \t]*(\\([^)\\]\\|\\\\.\\|\\\\\n\\)*)"
209 (setq address
(replace-match "" nil nil address
0))))
211 ;; strip surrounding whitespace
212 (string-match "\\`[ \t\n]*" address
)
213 (setq address
(substring address
215 (string-match "[ \t\n]*\\'" address
218 ;; strip `quoted' names (This is supposed to hack `"Foo Bar" <bar@host>')
220 (while (setq pos
(string-match
221 "\\([ \t]?\\)\\([ \t]*\"\\([^\"\\]\\|\\\\.\\|\\\\\n\\)*\"[ \t\n]*\\)"
223 ;; If the next thing is "@", we have "foo bar"@host. Leave it.
224 (if (and (> (length address
) (match-end 0))
225 (= (aref address
(match-end 0)) ?
@))
226 (setq pos
(match-end 0))
227 ;; Otherwise discard the "..." part.
228 (setq address
(replace-match "" nil nil address
2))))
229 ;; If this address contains <...>, replace it with just
230 ;; the part between the <...>.
231 (while (setq pos
(string-match "\\(,\\s-*\\|\\`\\)\\([^,]*<\\([^>,:]*\\)>[^,]*\\)\\(\\s-*,\\|\\'\\)"
233 (setq address
(replace-match (match-string 3 address
)
234 nil
'literal address
2)))
237 ;;; The following piece of ugliness is legacy code. The name was an
238 ;;; unfortunate choice --- a flagrant violation of the Emacs Lisp
239 ;;; coding conventions. `mail-dont-reply-to' would have been
240 ;;; infinitely better. Also, `rmail-dont-reply-to-names' might have
241 ;;; been better named `mail-dont-reply-to-names' and sourced from this
242 ;;; file instead of in rmail.el. Yuck. -pmr
243 (defun rmail-dont-reply-to (destinations)
244 "Prune addresses from DESTINATIONS, a list of recipient addresses.
245 All addresses matching `rmail-dont-reply-to-names' are removed from
246 the comma-separated list. The pruned list is returned."
247 (if (null rmail-dont-reply-to-names
)
248 (setq rmail-dont-reply-to-names
249 (concat (if rmail-default-dont-reply-to-names
250 (concat rmail-default-dont-reply-to-names
"\\|")
252 (if (and user-mail-address
253 (not (equal user-mail-address user-login-name
)))
254 ;; Anchor the login name and email address so
255 ;; that we don't match substrings: if the
256 ;; login name is "foo", we shouldn't match
259 (regexp-quote user-mail-address
)
262 (concat "\\`" (regexp-quote user-login-name
) "@"))))
263 ;; Split up DESTINATIONS and match each element separately.
264 (let ((start-pos 0) (cur-pos 0)
265 (case-fold-search t
))
267 (setq cur-pos
(string-match "[,\"]" destinations cur-pos
))
268 (if (and cur-pos
(equal (match-string 0 destinations
) "\""))
269 ;; Search for matching quote.
270 (let ((next-pos (string-match "\"" destinations
(1+ cur-pos
))))
272 (setq cur-pos
(1+ next-pos
))
273 ;; If the open-quote has no close-quote,
274 ;; delete the open-quote to get something well-defined.
275 ;; This case is not valid, but it can happen if things
276 ;; are weird elsewhere.
277 (setq destinations
(concat (substring destinations
0 cur-pos
)
278 (substring destinations
(1+ cur-pos
))))
279 (setq cur-pos start-pos
)))
280 (let* ((address (substring destinations start-pos cur-pos
))
281 (naked-address (mail-strip-quoted-names address
)))
282 (if (string-match rmail-dont-reply-to-names naked-address
)
283 (setq destinations
(concat (substring destinations
0 start-pos
)
284 (and cur-pos
(substring destinations
287 (setq cur-pos
(and cur-pos
(1+ cur-pos
))
288 start-pos cur-pos
))))))
289 ;; get rid of any trailing commas
290 (let ((pos (string-match "[ ,\t\n]*\\'" destinations
)))
292 (setq destinations
(substring destinations
0 pos
))))
293 ;; remove leading spaces. they bother me.
294 (if (string-match "\\(\\s \\|,\\)*" destinations
)
295 (substring destinations
(match-end 0))
300 (defun mail-fetch-field (field-name &optional last all list
)
301 "Return the value of the header field whose type is FIELD-NAME.
302 If second arg LAST is non-nil, use the last field of type FIELD-NAME.
303 If third arg ALL is non-nil, concatenate all such fields with commas between.
304 If 4th arg LIST is non-nil, return a list of all such fields.
305 The buffer should be narrowed to just the header, else false
306 matches may be returned from the message body."
308 (goto-char (point-min))
309 (let ((case-fold-search t
)
310 (name (concat "^" (regexp-quote field-name
) "[ \t]*:[ \t]*")))
312 (let ((value (if all
"")))
313 (while (re-search-forward name nil t
)
314 (let ((opoint (point)))
315 (while (progn (forward-line 1)
316 (looking-at "[ \t]")))
317 ;; Back up over newline, then trailing spaces or tabs
319 (skip-chars-backward " \t" opoint
)
321 (setq value
(cons (buffer-substring-no-properties
324 (setq value
(concat value
325 (if (string= value
"") "" ", ")
326 (buffer-substring-no-properties
330 (and (not (string= value
"")) value
)))
331 (if (re-search-forward name nil t
)
333 (if last
(while (re-search-forward name nil t
)))
334 (let ((opoint (point)))
335 (while (progn (forward-line 1)
336 (looking-at "[ \t]")))
337 ;; Back up over newline, then trailing spaces or tabs
339 (skip-chars-backward " \t" opoint
)
340 (buffer-substring-no-properties opoint
(point)))))))))
342 ;; Parse a list of tokens separated by commas.
343 ;; It runs from point to the end of the visible part of the buffer.
344 ;; Whitespace before or after tokens is ignored,
345 ;; but whitespace within tokens is kept.
346 (defun mail-parse-comma-list ()
349 (skip-chars-forward " \t\n")
352 (skip-chars-forward "^,")
353 (skip-chars-backward " \t\n")
355 (cons (buffer-substring-no-properties beg
(point))
357 (skip-chars-forward "^,")
358 (skip-chars-forward ", \t\n"))
361 (defun mail-comma-list-regexp (labels)
363 (setq pos
(or (string-match "[^ \t]" labels
) 0))
364 ;; Remove leading and trailing whitespace.
365 (setq labels
(substring labels pos
(string-match "[ \t]*$" labels pos
)))
366 ;; Change each comma to \|, and flush surrounding whitespace.
367 (while (setq pos
(string-match "[ \t]*,[ \t]*" labels
))
369 (concat (substring labels
0 pos
)
371 (substring labels
(match-end 0))))))
374 (defun mail-rfc822-time-zone (time)
375 (let* ((sec (or (car (current-time-zone time
)) 0))
376 (absmin (/ (abs sec
) 60)))
377 (format "%c%02d%02d" (if (< sec
0) ?- ?
+) (/ absmin
60) (% absmin
60))))
379 (defun mail-rfc822-date ()
380 (let* ((time (current-time))
381 (s (current-time-string time
)))
382 (string-match "[^ ]+ +\\([^ ]+\\) +\\([^ ]+\\) \\([^ ]+\\) \\([^ ]+\\)" s
)
383 (concat (substring s
(match-beginning 2) (match-end 2)) " "
384 (substring s
(match-beginning 1) (match-end 1)) " "
385 (substring s
(match-beginning 4) (match-end 4)) " "
386 (substring s
(match-beginning 3) (match-end 3)) " "
387 (mail-rfc822-time-zone time
))))
389 (defun mail-mbox-from ()
390 "Return an mbox \"From \" line for the current message.
391 The buffer should be narrowed to just the header."
392 (let ((from (or (mail-fetch-field "from")
393 (mail-fetch-field "really-from")
394 (mail-fetch-field "sender")
396 (date (mail-fetch-field "date")))
397 (format "From %s %s\n" (mail-strip-quoted-names from
)
400 (current-time-string (date-to-time date
))))
401 (current-time-string)))))
403 (provide 'mail-utils
)
405 ;; arch-tag: b24aec2f-fd65-4ceb-9e39-3cc2827036fd
406 ;;; mail-utils.el ends here