annotate lisp/mail/mail-utils.el @ 41290:9985a0fdea47

(mouse-wheel-scroll-amount): Allow float values. (mouse-wheel-scroll-amount): New var. (mwheel-scroll): Use it and handle float values.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 19 Nov 2001 21:57:30 +0000
parents 16d2187c5524
children 55bcbf42cf3f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
659
505130d1ddf8 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
1 ;;; mail-utils.el --- utility functions used both by rmail and rnews
505130d1ddf8 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
2
38597
16d2187c5524 (mail-strip-quoted-names): Replace text
Gerd Moellmann <gerd@gnu.org>
parents: 31880
diff changeset
3 ;; Copyright (C) 1985, 2001 Free Software Foundation, Inc.
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 811
diff changeset
4
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 659
diff changeset
5 ;; Maintainer: FSF
811
e694e0879463 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
6 ;; Keywords: mail, news
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 659
diff changeset
7
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
9
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 659
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
13 ;; any later version.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
14
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
19
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13590
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13590
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13590
diff changeset
23 ;; Boston, MA 02111-1307, USA.
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
24
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
25 ;;; Commentary:
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
26
5365
362f4c3bd99c Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5289
diff changeset
27 ;; Utility functions for mail and netnews handling. These handle fine
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
28 ;; points of header parsing.
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
29
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 659
diff changeset
30 ;;; Code:
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
31
285
adb31fcccc2b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 268
diff changeset
32 ;;; We require lisp-mode to make sure that lisp-mode-syntax-table has
adb31fcccc2b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 268
diff changeset
33 ;;; been initialized.
adb31fcccc2b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 268
diff changeset
34 (require 'lisp-mode)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
35
268
2dd411fe2f72 *** empty log message ***
Brian Preble <rassilon@gnu.org>
parents: 262
diff changeset
36 ;;;###autoload
21493
a22b10628409 Customize mail-use-rfc822.
Stephen Eglen <stephen@gnu.org>
parents: 20409
diff changeset
37 (defcustom mail-use-rfc822 nil "\
268
2dd411fe2f72 *** empty log message ***
Brian Preble <rassilon@gnu.org>
parents: 262
diff changeset
38 *If non-nil, use a full, hairy RFC822 parser on mail addresses.
2dd411fe2f72 *** empty log message ***
Brian Preble <rassilon@gnu.org>
parents: 262
diff changeset
39 Otherwise, (the default) use a smaller, somewhat faster, and
21493
a22b10628409 Customize mail-use-rfc822.
Stephen Eglen <stephen@gnu.org>
parents: 20409
diff changeset
40 often correct parser."
a22b10628409 Customize mail-use-rfc822.
Stephen Eglen <stephen@gnu.org>
parents: 20409
diff changeset
41 :type 'boolean
a22b10628409 Customize mail-use-rfc822.
Stephen Eglen <stephen@gnu.org>
parents: 20409
diff changeset
42 :group 'mail)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
43
13055
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
44 ;; Returns t if file FILE is an Rmail file.
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
45 ;;;###autoload
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
46 (defun mail-file-babyl-p (file)
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
47 (let ((buf (generate-new-buffer " *rmail-file-p*")))
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
48 (unwind-protect
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
49 (save-excursion
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
50 (set-buffer buf)
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
51 (insert-file-contents file nil 0 100)
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
52 (looking-at "BABYL OPTIONS:"))
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
53 (kill-buffer buf))))
d94531fd96a4 (mail-file-babyl-p): Function moved from rmail.el and renamed.
Richard M. Stallman <rms@gnu.org>
parents: 12613
diff changeset
54
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
55 (defun mail-string-delete (string start end)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
56 "Returns a string containing all of STRING except the part
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
57 from START (inclusive) to END (exclusive)."
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
58 (if (null end) (substring string 0 start)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
59 (concat (substring string 0 start)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
60 (substring string end nil))))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
61
25271
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
62 ;;;###autoload
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
63 (defun mail-quote-printable (string &optional wrapper)
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
64 "Convert a string to the \"quoted printable\" Q encoding.
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
65 If the optional argument WRAPPER is non-nil,
17506
3c0b3d55c1bc Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 17425
diff changeset
66 we add the wrapper characters =?ISO-8859-1?Q?....?=."
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
67 (let ((i 0) (result ""))
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
68 (save-match-data
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
69 (while (string-match "[?=\"\200-\377]" string i)
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
70 (setq result
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
71 (concat result (substring string i (match-beginning 0))
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
72 (upcase (format "=%02x"
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
73 (aref string (match-beginning 0))))))
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
74 (setq i (match-end 0)))
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
75 (if wrapper
17506
3c0b3d55c1bc Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 17425
diff changeset
76 (concat "=?ISO-8859-1?Q?"
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
77 result (substring string i)
17506
3c0b3d55c1bc Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 17425
diff changeset
78 "?=")
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
79 (concat result (substring string i))))))
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
80
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
81 (defun mail-unquote-printable-hexdigit (char)
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
82 (if (>= char ?A)
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
83 (+ (- char ?A) 10)
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
84 (- char ?0)))
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
85
25271
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
86 ;;;###autoload
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
87 (defun mail-unquote-printable (string &optional wrapper)
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
88 "Undo the \"quoted printable\" encoding.
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
89 If the optional argument WRAPPER is non-nil,
17506
3c0b3d55c1bc Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 17425
diff changeset
90 we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=."
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
91 (save-match-data
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
92 (and wrapper
17506
3c0b3d55c1bc Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 17425
diff changeset
93 (string-match "\\`=\\?ISO-8859-1\\?Q\\?\\([^?]*\\)\\?" string)
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
94 (setq string (match-string 1 string)))
25271
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
95 (let ((i 0) strings)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
96 (while (string-match "=\\(..\\|\n\\)" string i)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
97 (setq strings (cons (substring string i (match-beginning 0)) strings))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
98 (unless (= (aref string (match-beginning 1)) ?\n)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
99 (setq strings
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
100 (cons (make-string 1
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
101 (+ (* 16 (mail-unquote-printable-hexdigit
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
102 (aref string (match-beginning 1))))
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
103 (mail-unquote-printable-hexdigit
25271
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
104 (aref string (1+ (match-beginning 1))))))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
105 strings)))
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
106 (setq i (match-end 0)))
25271
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
107 (apply 'concat (nreverse (cons (substring string i) strings))))))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
108
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
109 ;;;###autoload
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
110 (defun mail-unquote-printable-region (beg end &optional wrapper)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
111 "Undo the \"quoted printable\" encoding in buffer from BEG to END.
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
112 If the optional argument WRAPPER is non-nil,
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
113 we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=."
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
114 (interactive "r\nP")
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
115 (save-match-data
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
116 (save-excursion
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
117 (save-restriction
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
118 (narrow-to-region beg end)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
119 (goto-char (point-min))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
120 (when (and wrapper
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
121 (looking-at "\\`=\\?ISO-8859-1\\?Q\\?\\([^?]*\\)\\?"))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
122 (delete-region (match-end 1) end)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
123 (delete-region (point) (match-beginning 1)))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
124 (while (re-search-forward "=\\(..\\|\n\\)" nil t)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
125 (goto-char (match-end 0))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
126 (replace-match
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
127 (if (= (char-after (match-beginning 1)) ?\n)
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
128 ""
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
129 (make-string 1
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
130 (+ (* 16 (mail-unquote-printable-hexdigit
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
131 (char-after (match-beginning 1))))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
132 (mail-unquote-printable-hexdigit
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
133 (char-after (1+ (match-beginning 1)))))))
0d9fd0e4f7a3 (mail-unquote-printable): Make it autoload.
Karl Heuer <kwzh@gnu.org>
parents: 22949
diff changeset
134 t t))))))
17425
10076111abf2 (mail-quote-printable, mail-unquote-printable)
Richard M. Stallman <rms@gnu.org>
parents: 17258
diff changeset
135
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
136 (defun mail-strip-quoted-names (address)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
137 "Delete comments and quoted strings in an address list ADDRESS.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
138 Also delete leading/trailing whitespace and replace FOO <BAR> with just BAR.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
139 Return a modified address list."
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
140 (if (null address)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
141 nil
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
142 (if mail-use-rfc822
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
143 (progn (require 'rfc822)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
144 (mapconcat 'identity (rfc822-addresses address) ", "))
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
145 (let (pos)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
146
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
147 ;; Detect nested comments.
15439
b549210f6989 (mail-strip-quoted-names): `"' is not special inside an RFC 822 comment.
Richard M. Stallman <rms@gnu.org>
parents: 14989
diff changeset
148 (if (string-match "[ \t]*(\\([^)\\]\\|\\\\.\\|\\\\\n\\)*(" address)
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
149 ;; Strip nested comments.
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
150 (with-current-buffer (get-buffer-create " *temp*")
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
151 (erase-buffer)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
152 (insert address)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
153 (set-syntax-table lisp-mode-syntax-table)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
154 (goto-char 1)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
155 (while (search-forward "(" nil t)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
156 (forward-char -1)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
157 (skip-chars-backward " \t")
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
158 (delete-region (point)
3118
e7dd24a618fb (mail-strip-quoted-names): Catch errors from forward-sexp.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
159 (save-excursion
e7dd24a618fb (mail-strip-quoted-names): Catch errors from forward-sexp.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
160 (condition-case ()
e7dd24a618fb (mail-strip-quoted-names): Catch errors from forward-sexp.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
161 (forward-sexp 1)
e7dd24a618fb (mail-strip-quoted-names): Catch errors from forward-sexp.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
162 (error (goto-char (point-max))))
e7dd24a618fb (mail-strip-quoted-names): Catch errors from forward-sexp.
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
163 (point))))
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
164 (setq address (buffer-string))
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
165 (erase-buffer))
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
166 ;; Strip non-nested comments an easier way.
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
167 (while (setq pos (string-match
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
168 ;; This doesn't hack rfc822 nested comments
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
169 ;; `(xyzzy (foo) whinge)' properly. Big deal.
15439
b549210f6989 (mail-strip-quoted-names): `"' is not special inside an RFC 822 comment.
Richard M. Stallman <rms@gnu.org>
parents: 14989
diff changeset
170 "[ \t]*(\\([^)\\]\\|\\\\.\\|\\\\\n\\)*)"
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
171 address))
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
172 (setq address (replace-match "" nil nil address 0))))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
173
22002
c40d3d44e6fd (mail-strip-quoted-names):
Richard M. Stallman <rms@gnu.org>
parents: 21907
diff changeset
174 ;; strip surrounding whitespace
c40d3d44e6fd (mail-strip-quoted-names):
Richard M. Stallman <rms@gnu.org>
parents: 21907
diff changeset
175 (string-match "\\`[ \t\n]*" address)
c40d3d44e6fd (mail-strip-quoted-names):
Richard M. Stallman <rms@gnu.org>
parents: 21907
diff changeset
176 (setq address (substring address
c40d3d44e6fd (mail-strip-quoted-names):
Richard M. Stallman <rms@gnu.org>
parents: 21907
diff changeset
177 (match-end 0)
c40d3d44e6fd (mail-strip-quoted-names):
Richard M. Stallman <rms@gnu.org>
parents: 21907
diff changeset
178 (string-match "[ \t\n]*\\'" address
c40d3d44e6fd (mail-strip-quoted-names):
Richard M. Stallman <rms@gnu.org>
parents: 21907
diff changeset
179 (match-end 0))))
c40d3d44e6fd (mail-strip-quoted-names):
Richard M. Stallman <rms@gnu.org>
parents: 21907
diff changeset
180
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
181 ;; strip `quoted' names (This is supposed to hack `"Foo Bar" <bar@host>')
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
182 (setq pos 0)
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
183 (while (setq pos (string-match
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
184 "\\([ \t]?\\)\\([ \t]*\"\\([^\"\\]\\|\\\\.\\|\\\\\n\\)*\"[ \t\n]*\\)"
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
185 address pos))
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
186 ;; If the next thing is "@", we have "foo bar"@host. Leave it.
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
187 (if (and (> (length address) (match-end 0))
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
188 (= (aref address (match-end 0)) ?@))
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
189 (setq pos (match-end 0))
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
190 ;; Otherwise discard the "..." part.
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
191 (setq address (replace-match "" nil nil address 2))))
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
192 ;; If this address contains <...>, replace it with just
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
193 ;; the part between the <...>.
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
194 (while (setq pos (string-match "\\(,\\s-*\\|\\`\\)\\([^,]*<\\([^>,:]*\\)>[^,]*\\)\\(\\s-*,\\|\\'\\)"
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
195 address))
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
196 (setq address (replace-match (match-string 3 address)
38597
16d2187c5524 (mail-strip-quoted-names): Replace text
Gerd Moellmann <gerd@gnu.org>
parents: 31880
diff changeset
197 nil 'literal address 2)))
477
ab9a55b26bd4 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 285
diff changeset
198 address))))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
199
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
200 ; rmail-dont-reply-to-names is defined in loaddefs
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
201 (defun rmail-dont-reply-to (userids)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
202 "Returns string of mail addresses USERIDS sans any recipients
220
2ea306376f97 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 36
diff changeset
203 that start with matches for `rmail-dont-reply-to-names'.
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
204 Usenet paths ending in an element that matches are removed also."
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
205 (if (null rmail-dont-reply-to-names)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
206 (setq rmail-dont-reply-to-names
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
207 (concat (if rmail-default-dont-reply-to-names
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
208 (concat rmail-default-dont-reply-to-names "\\|")
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
209 "")
5914
7643239d5bf2 (rmail-dont-reply-to): Change user-original-login-name to user-login-name.
Karl Heuer <kwzh@gnu.org>
parents: 5365
diff changeset
210 (concat (regexp-quote (user-login-name))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
211 "\\>"))))
22710
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
212 (let ((match (concat "\\(^\\|,\\)[ \t\n]*"
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
213 ;; Can anyone figure out what this is for?
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
214 ;; Is it an obsolete remnant of another way of
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
215 ;; handling Foo Bar <foo@machine>?
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
216 "\\([^,\n]*[!<]\\|\\)"
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
217 "\\("
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
218 rmail-dont-reply-to-names
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
219 "\\|"
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
220 ;; Include the human name that precedes <foo@bar>.
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
221 "\\([^\,.<\"]\\|\"[^\"]*\"\\)*"
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
222 "<\\(" rmail-dont-reply-to-names "\\)"
27460
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
223 "\\)[^,]*"))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
224 (case-fold-search t)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
225 pos epos)
31868
a388bd44da52 (rmail-dont-reply-to): Avoid infinite loop if
Gerd Moellmann <gerd@gnu.org>
parents: 30333
diff changeset
226 (while (and (setq pos (string-match match userids pos))
31880
36481aee6585 (rmail-dont-reply-to): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents: 31868
diff changeset
227 (> (length userids) 0))
27460
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
228 ;; If there's a match, it starts at the beginning of the string,
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
229 ;; or with `,'. We must delete from that position to the
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
230 ;; end of the user-id which starts at match-beginning 2.
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
231 (let (inside-quotes quote-pos last-quote-pos)
27460
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
232 (save-match-data
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
233 (while (and (setq quote-pos (string-match "\"" userids quote-pos))
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
234 (< quote-pos pos))
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
235 (setq last-quote-pos quote-pos)
27460
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
236 (setq quote-pos (1+ quote-pos))
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
237 (setq inside-quotes (not inside-quotes))))
22710
0df26ec111fd (rmail-dont-reply-to): Understand
Richard M. Stallman <rms@gnu.org>
parents: 22002
diff changeset
238 (if inside-quotes
30333
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
239 (if (string-match "\"" userids pos)
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
240 (setq pos (string-match "\"" userids pos))
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
241 ;; If the open-quote has no close-quote,
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
242 ;; delete the open-quote to get something well-defined.
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
243 ;; This case is not valid, but it can happen if things
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
244 ;; are weird elsewhere.
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
245 (setq userids (replace-match "" nil nil userids))
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
246 (setq userids (concat (substring userids 0 last-quote-pos)
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
247 (substring userids (1+ last-quote-pos))))
6c60ac6cf8b6 (mail-strip-quoted-names): Handle case where <...> appears inside "...".
Richard M. Stallman <rms@gnu.org>
parents: 27682
diff changeset
248 (setq pos (1- pos)))
27460
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
249 (setq userids (replace-match "" nil nil userids)))))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
250 ;; get rid of any trailing commas
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
251 (if (setq pos (string-match "[ ,\t\n]*\\'" userids))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
252 (setq userids (substring userids 0 pos)))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
253 ;; remove leading spaces. they bother me.
27682
fe108abb04e5 (rmail-dont-reply-to): Remove leading commas as well.
Gerd Moellmann <gerd@gnu.org>
parents: 27460
diff changeset
254 (if (string-match "\\(\\s \\|,\\)*" userids)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
255 (substring userids (match-end 0))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
256 userids)))
27460
cccffb3304b3 (rmail-dont-reply-to): Replace matched
Gerd Moellmann <gerd@gnu.org>
parents: 25271
diff changeset
257
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
258
5289
4e000b7b285a (mail-fetch-field): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 5095
diff changeset
259 ;;;###autoload
16952
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
260 (defun mail-fetch-field (field-name &optional last all list)
22949
3f75d6c8ef33 (mail-fetch-field): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22710
diff changeset
261 "Return the value of the header field whose type is FIELD-NAME.
3f75d6c8ef33 (mail-fetch-field): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22710
diff changeset
262 The buffer is expected to be narrowed to just the header of the message.
3f75d6c8ef33 (mail-fetch-field): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22710
diff changeset
263 If second arg LAST is non-nil, use the last field of type FIELD-NAME.
16952
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
264 If third arg ALL is non-nil, concatenate all such fields with commas between.
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
265 If 4th arg LIST is non-nil, return a list of all such fields."
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
266 (save-excursion
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
267 (goto-char (point-min))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
268 (let ((case-fold-search t)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
269 (name (concat "^" (regexp-quote field-name) "[ \t]*:[ \t]*")))
16952
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
270 (if (or all list)
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
271 (let ((value (if all "")))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
272 (while (re-search-forward name nil t)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
273 (let ((opoint (point)))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
274 (while (progn (forward-line 1)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
275 (looking-at "[ \t]")))
5095
976d7492e00e (mail-fetch-field): Exclude trailing whitespace.
Richard M. Stallman <rms@gnu.org>
parents: 4022
diff changeset
276 ;; Back up over newline, then trailing spaces or tabs
976d7492e00e (mail-fetch-field): Exclude trailing whitespace.
Richard M. Stallman <rms@gnu.org>
parents: 4022
diff changeset
277 (forward-char -1)
14989
7bba84af4b94 (mail-fetch-field): Use skip-chars-backward
Richard M. Stallman <rms@gnu.org>
parents: 14660
diff changeset
278 (skip-chars-backward " \t" opoint)
16952
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
279 (if list
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
280 (setq value (cons (buffer-substring-no-properties
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
281 opoint (point))
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
282 value))
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
283 (setq value (concat value
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
284 (if (string= value "") "" ", ")
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
285 (buffer-substring-no-properties
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
286 opoint (point)))))))
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
287 (if list
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
288 value
ba0d48943e13 (mail-fetch-field): New arg LIST.
Richard M. Stallman <rms@gnu.org>
parents: 16062
diff changeset
289 (and (not (string= value "")) value)))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
290 (if (re-search-forward name nil t)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
291 (progn
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
292 (if last (while (re-search-forward name nil t)))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
293 (let ((opoint (point)))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
294 (while (progn (forward-line 1)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
295 (looking-at "[ \t]")))
5095
976d7492e00e (mail-fetch-field): Exclude trailing whitespace.
Richard M. Stallman <rms@gnu.org>
parents: 4022
diff changeset
296 ;; Back up over newline, then trailing spaces or tabs
976d7492e00e (mail-fetch-field): Exclude trailing whitespace.
Richard M. Stallman <rms@gnu.org>
parents: 4022
diff changeset
297 (forward-char -1)
14989
7bba84af4b94 (mail-fetch-field): Use skip-chars-backward
Richard M. Stallman <rms@gnu.org>
parents: 14660
diff changeset
298 (skip-chars-backward " \t" opoint)
12613
1243b1f01079 (mail-fetch-field): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents: 5914
diff changeset
299 (buffer-substring-no-properties opoint (point)))))))))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
300
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
301 ;; Parse a list of tokens separated by commas.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
302 ;; It runs from point to the end of the visible part of the buffer.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
303 ;; Whitespace before or after tokens is ignored,
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
304 ;; but whitespace within tokens is kept.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
305 (defun mail-parse-comma-list ()
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
306 (let (accumulated
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
307 beg)
20409
87d7cc50d029 (mail-parse-comma-list):
Karl Heuer <kwzh@gnu.org>
parents: 19563
diff changeset
308 (skip-chars-forward " \t\n")
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
309 (while (not (eobp))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
310 (setq beg (point))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
311 (skip-chars-forward "^,")
20409
87d7cc50d029 (mail-parse-comma-list):
Karl Heuer <kwzh@gnu.org>
parents: 19563
diff changeset
312 (skip-chars-backward " \t\n")
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
313 (setq accumulated
18204
0634e43b52c8 (mail-parse-comma-list): Use buffer-substring-no-properties.
Richard M. Stallman <rms@gnu.org>
parents: 18082
diff changeset
314 (cons (buffer-substring-no-properties beg (point))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
315 accumulated))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
316 (skip-chars-forward "^,")
20409
87d7cc50d029 (mail-parse-comma-list):
Karl Heuer <kwzh@gnu.org>
parents: 19563
diff changeset
317 (skip-chars-forward ", \t\n"))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
318 accumulated))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
319
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
320 (defun mail-comma-list-regexp (labels)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
321 (let (pos)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
322 (setq pos (or (string-match "[^ \t]" labels) 0))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
323 ;; Remove leading and trailing whitespace.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
324 (setq labels (substring labels pos (string-match "[ \t]*$" labels pos)))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
325 ;; Change each comma to \|, and flush surrounding whitespace.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
326 (while (setq pos (string-match "[ \t]*,[ \t]*" labels))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
327 (setq labels
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
328 (concat (substring labels 0 pos)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
329 "\\|"
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
330 (substring labels (match-end 0))))))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
331 labels)
4022
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
332
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
333 (defun mail-rfc822-time-zone (time)
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
334 (let* ((sec (or (car (current-time-zone time)) 0))
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
335 (absmin (/ (abs sec) 60)))
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
336 (format "%c%02d%02d" (if (< sec 0) ?- ?+) (/ absmin 60) (% absmin 60))))
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
337
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
338 (defun mail-rfc822-date ()
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
339 (let* ((time (current-time))
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
340 (s (current-time-string time)))
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
341 (string-match "[^ ]+ +\\([^ ]+\\) +\\([^ ]+\\) \\([^ ]+\\) \\([^ ]+\\)" s)
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
342 (concat (substring s (match-beginning 2) (match-end 2)) " "
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
343 (substring s (match-beginning 1) (match-end 1)) " "
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
344 (substring s (match-beginning 4) (match-end 4)) " "
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
345 (substring s (match-beginning 3) (match-end 3)) " "
a3d3d7eef5ce (mail-rfc822-time-zone, mail-rfc822-date): New fns.
Richard M. Stallman <rms@gnu.org>
parents: 3118
diff changeset
346 (mail-rfc822-time-zone time))))
584
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 477
diff changeset
347
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 477
diff changeset
348 (provide 'mail-utils)
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 477
diff changeset
349
659
505130d1ddf8 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
350 ;;; mail-utils.el ends here