Add "Package:" file headers to denote built-in packages.
[emacs.git] / lisp / mail / mail-extr.el
blob342d735c93920872c58270b24b9c686db6a66802
1 ;;; mail-extr.el --- extract full name and address from RFC 822 mail header -*- coding: utf-8 -*-
3 ;; Copyright (C) 1991, 1992, 1993, 1994, 1997, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Joe Wells <jbw@cs.bu.edu>
7 ;; Maintainer: FSF
8 ;; Keywords: mail
9 ;; Package: mail-utils
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; The entry point of this code is
30 ;; mail-extract-address-components: (address &optional all)
32 ;; Given an RFC-822 ADDRESS, extract full name and canonical address.
33 ;; Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
34 ;; If no name can be extracted, FULL-NAME will be nil.
35 ;; ADDRESS may be a string or a buffer. If it is a buffer, the visible
36 ;; (narrowed) portion of the buffer will be interpreted as the address.
37 ;; (This feature exists so that the clever caller might be able to avoid
38 ;; consing a string.)
39 ;; If ADDRESS contains more than one RFC-822 address, only the first is
40 ;; returned.
42 ;; If ALL is non-nil, that means return info about all the addresses
43 ;; that are found in ADDRESS. The value is a list of elements of
44 ;; the form (FULL-NAME CANONICAL-ADDRESS), one per address.
46 ;; This code is more correct (and more heuristic) parser than the code in
47 ;; rfc822.el. And despite its size, it's fairly fast.
49 ;; There are two main benefits:
51 ;; 1. Higher probability of getting the correct full name for a human than
52 ;; any other package we know of. (On the other hand, it will cheerfully
53 ;; mangle non-human names/comments.)
54 ;; 2. Address part is put in a canonical form.
56 ;; The interface is not yet carved in stone; please give us suggestions.
58 ;; We have an extensive test-case collection of funny addresses if you want to
59 ;; work with the code. Developing this code requires frequent testing to
60 ;; make sure you're not breaking functionality. The test cases aren't included
61 ;; because they are over 100K.
63 ;; If you find an address that mail-extr fails on, please send it to the
64 ;; maintainer along with what you think the correct results should be. We do
65 ;; not consider it a bug if mail-extr mangles a comment that does not
66 ;; correspond to a real human full name, although we would prefer that
67 ;; mail-extr would return the comment as-is.
69 ;; Features:
71 ;; * Full name handling:
73 ;; * knows where full names can be found in an address.
74 ;; * avoids using empty comments and quoted text.
75 ;; * extracts full names from mailbox names.
76 ;; * recognizes common formats for comments after a full name.
77 ;; * puts a period and a space after each initial.
78 ;; * understands & referring to the mailbox name, capitalized.
79 ;; * strips name prefixes like "Prof.", etc.
80 ;; * understands what characters can occur in names (not just letters).
81 ;; * figures out middle initial from mailbox name.
82 ;; * removes funny nicknames.
83 ;; * keeps suffixes such as Jr., Sr., III, etc.
84 ;; * reorders "Last, First" type names.
86 ;; * Address handling:
88 ;; * parses rfc822 quoted text, comments, and domain literals.
89 ;; * parses rfc822 multi-line headers.
90 ;; * does something reasonable with rfc822 GROUP addresses.
91 ;; * handles many rfc822 noncompliant and garbage addresses.
92 ;; * canonicalizes addresses (after stripping comments/phrases outside <>).
93 ;; * converts ! addresses into .UUCP and %-style addresses.
94 ;; * converts rfc822 ROUTE addresses to %-style addresses.
95 ;; * truncates %-style addresses at leftmost fully qualified domain name.
96 ;; * handles local relative precedence of ! vs. % and @ (untested).
98 ;; It does almost no string creation. It primarily uses the built-in
99 ;; parsing routines with the appropriate syntax tables. This should
100 ;; result in greater speed.
102 ;; TODO:
104 ;; * handle all test cases. (This will take forever.)
105 ;; * software to pick the correct header to use (eg., "Senders-Name:").
106 ;; * multiple addresses in the "From:" header (almost all of the necessary
107 ;; code is there).
108 ;; * flag to not treat `,' as an address separator. (This is useful when
109 ;; there is a "From:" header but no "Sender:" header, because then there
110 ;; is only allowed to be one address.)
111 ;; * mailbox name does not necessarily contain full name.
112 ;; * fixing capitalization when it's all upper or lowercase. (Hard!)
113 ;; * some of the domain literal handling is missing. (But I've never even
114 ;; seen one of these in a mail address, so maybe no big deal.)
115 ;; * arrange to have syntax tables byte-compiled.
116 ;; * speed hacks.
117 ;; * delete unused variables.
118 ;; * arrange for testing with different relative precedences of ! vs. @
119 ;; and %.
120 ;; * insert documentation strings!
121 ;; * handle X.400-gatewayed addresses according to RFC 1148.
123 ;;; Change Log:
125 ;; Thu Feb 17 17:57:33 1994 Jamie Zawinski (jwz@lucid.com)
127 ;; * merged with jbw's latest version
129 ;; Wed Feb 9 21:56:27 1994 Jamie Zawinski (jwz@lucid.com)
131 ;; * high-bit chars in comments weren't treated as word syntax
133 ;; Sat Feb 5 03:13:40 1994 Jamie Zawinski (jwz@lucid.com)
135 ;; * call replace-match with fixed-case arg
137 ;; Thu Dec 16 21:56:45 1993 Jamie Zawinski (jwz@lucid.com)
139 ;; * some more cleanup, doc, added provide
141 ;; Tue Mar 23 21:23:18 1993 Joe Wells (jbw at csd.bu.edu)
143 ;; * Made mail-full-name-prefixes a user-customizable variable.
144 ;; Allow passing the address as a buffer as well as a string.
145 ;; Allow [ and ] as name characters (Finnish character set).
147 ;; Mon Mar 22 21:20:56 1993 Joe Wells (jbw at bigbird.bu.edu)
149 ;; * Handle "null" addresses. Handle = used for spacing in mailbox
150 ;; name. Fix bug in handling of ROUTE-ADDR-type addresses that are
151 ;; missing their brackets. Handle uppercase "JR". Extract full
152 ;; names from X.400 addresses encoded in RFC-822. Fix bug in
153 ;; handling of multiple addresses where first has trailing comment.
154 ;; Handle more kinds of telephone extension lead-ins.
156 ;; Mon Mar 22 20:16:57 1993 Joe Wells (jbw at bigbird.bu.edu)
158 ;; * Handle HZ encoding for embedding GB encoded chinese characters.
160 ;; Mon Mar 22 00:46:12 1993 Joe Wells (jbw at bigbird.bu.edu)
162 ;; * Fixed too broad matching of ham radio call signs. Fixed bug in
163 ;; handling an unmatched ' in a name string. Enhanced recognition
164 ;; of when . in the mailbox name terminates the name portion.
165 ;; Narrowed conversion of . to space to only the necessary
166 ;; situation. Deal with VMS's stupid date stamps. Handle a unique
167 ;; way of introducing an alternate address. Fixed spacing bug I
168 ;; introduced in switching last name order. Fixed bug in handling
169 ;; address with ! and % but no @. Narrowed the cases in which
170 ;; certain trailing words are discarded.
172 ;; Sun Mar 21 21:41:06 1993 Joe Wells (jbw at bigbird.bu.edu)
174 ;; * Fixed bugs in handling GROUP addresses. Certain words in the
175 ;; middle of a name no longer terminate it. Handle LISTSERV list
176 ;; names. Ignore comment field containing mailbox name.
178 ;; Sun Mar 21 14:39:38 1993 Joe Wells (jbw at bigbird.bu.edu)
180 ;; * Moved variant-method code back into main function. Handle
181 ;; underscores as spaces in comments. Handle leading nickname. Add
182 ;; flag to ignore single-word names. Other changes.
184 ;; Mon Feb 1 22:23:31 1993 Joe Wells (jbw at bigbird.bu.edu)
186 ;; * Added in changes by Rod Whitby and Jamie Zawinski. This
187 ;; includes the flag mail-extr-guess-middle-initial and the fix for
188 ;; handling multiple addresses correctly. (Whitby just changed
189 ;; a > to a <.)
191 ;; Mon Apr 6 23:59:09 1992 Joe Wells (jbw at bigbird.bu.edu)
193 ;; * Cleaned up some more. Release version 1.0 to world.
195 ;; Sun Apr 5 19:39:08 1992 Joe Wells (jbw at bigbird.bu.edu)
197 ;; * Cleaned up full name extraction extensively.
199 ;; Sun Feb 2 14:45:24 1992 Joe Wells (jbw at bigbird.bu.edu)
201 ;; * Total rewrite. Integrated mail-canonicalize-address into
202 ;; mail-extract-address-components. Now handles GROUP addresses more
203 ;; or less correctly. Better handling of lots of different cases.
205 ;; Fri Jun 14 19:39:50 1991
206 ;; * Created.
208 ;;; Code:
211 (defgroup mail-extr nil
212 "Extract full name and address from RFC 822 mail header."
213 :prefix "mail-extr-"
214 :group 'mail)
216 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
218 ;; User configuration variable definitions.
221 (defcustom mail-extr-guess-middle-initial nil
222 "*Whether to try to guess middle initial from mail address.
223 If true, then when we see an address like \"John Smith <jqs@host.com>\"
224 we will assume that \"John Q. Smith\" is the fellow's name."
225 :type 'boolean
226 :group 'mail-extr)
228 (defcustom mail-extr-ignore-single-names nil
229 "*Whether to ignore a name that is just a single word.
230 If true, then when we see an address like \"Idiot <dumb@stupid.com>\"
231 we will act as though we couldn't find a full name in the address."
232 :type 'boolean
233 :version "22.1"
234 :group 'mail-extr)
236 (defcustom mail-extr-ignore-realname-equals-mailbox-name t
237 "*Whether to ignore a name that is equal to the mailbox name.
238 If true, then when the address is like \"Single <single@address.com>\"
239 we will act as though we couldn't find a full name in the address."
240 :type 'boolean
241 :group 'mail-extr)
243 ;; Matches a leading title that is not part of the name (does not
244 ;; contribute to uniquely identifying the person).
245 (defcustom mail-extr-full-name-prefixes
246 (purecopy
247 "\\(Prof\\|D[Rr]\\|Mrs?\\|Rev\\|Rabbi\\|SysOp\\|LCDR\\)\\.?[ \t\n]")
248 "*Matches prefixes to the full name that identify a person's position.
249 These are stripped from the full name because they do not contribute to
250 uniquely identifying the person."
251 :type 'regexp
252 :group 'mail-extr)
254 (defcustom mail-extr-@-binds-tighter-than-! nil
255 "*Whether the local mail transport agent looks at ! before @."
256 :type 'boolean
257 :group 'mail-extr)
259 (defcustom mail-extr-mangle-uucp nil
260 "*Whether to throw away information in UUCP addresses
261 by translating things like \"foo!bar!baz@host\" into \"baz@bar.UUCP\"."
262 :type 'boolean
263 :group 'mail-extr)
265 ;;----------------------------------------------------------------------
266 ;; what orderings are meaningful?????
267 ;;(defvar mail-operator-precedence-list '(?! ?% ?@))
268 ;; Right operand of a % or a @ must be a domain name, period. No other
269 ;; operators allowed. Left operand of a @ is an address relative to that
270 ;; site.
272 ;; Left operand of a ! must be a domain name. Right operand is an
273 ;; arbitrary address.
274 ;;----------------------------------------------------------------------
278 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
280 ;; Constant definitions.
283 ;; Any character that can occur in a name, not counting characters that
284 ;; separate parts of a multipart name (hyphen and period).
285 ;; Yes, there are weird people with digits in their names.
286 ;; You will also notice the consideration for the
287 ;; Swedish/Finnish/Norwegian character set.
288 (defconst mail-extr-all-letters-but-separators
289 (purecopy "][[:alnum:]{|}'~`"))
291 ;; Any character that can occur in a name in an RFC822 address including
292 ;; the separator (hyphen and possibly period) for multipart names.
293 ;; #### should . be in here?
294 (defconst mail-extr-all-letters
295 (purecopy (concat mail-extr-all-letters-but-separators "---")))
297 ;; Any character that can start a name.
298 ;; Keep this set as minimal as possible.
299 (defconst mail-extr-first-letters (purecopy "[:alpha:]"))
301 ;; Any character that can end a name.
302 ;; Keep this set as minimal as possible.
303 (defconst mail-extr-last-letters (purecopy "[:alpha:]`'."))
305 (defconst mail-extr-leading-garbage "\\W+")
307 ;; (defconst mail-extr-non-name-chars
308 ;; (purecopy (concat "^" mail-extr-all-letters ".")))
309 ;; (defconst mail-extr-non-begin-name-chars
310 ;; (purecopy (concat "^" mail-extr-first-letters)))
311 ;; (defconst mail-extr-non-end-name-chars
312 ;; (purecopy (concat "^" mail-extr-last-letters)))
314 ;; Matches an initial not followed by both a period and a space.
315 ;; (defconst mail-extr-bad-initials-pattern
316 ;; (purecopy
317 ;; (format "\\(\\([^%s]\\|\\`\\)[%s]\\)\\(\\.\\([^ ]\\)\\| \\|\\([^%s .]\\)\\|\\'\\)"
318 ;; mail-extr-all-letters mail-extr-first-letters mail-extr-all-letters)))
320 ;; Matches periods used instead of spaces. Must not match the period
321 ;; following an initial.
322 (defconst mail-extr-bad-dot-pattern
323 (purecopy
324 (format "\\([%s][%s]\\)\\.+\\([%s]\\)"
325 mail-extr-all-letters
326 mail-extr-last-letters
327 mail-extr-first-letters)))
329 ;; Matches an embedded or leading nickname that should be removed.
330 ;; (defconst mail-extr-nickname-pattern
331 ;; (purecopy
332 ;; (format "\\([ .]\\|\\`\\)[\"'`\[\(]\\([ .%s]+\\)[\]\"'\)] "
333 ;; mail-extr-all-letters)))
335 ;; Matches the occurrence of a generational name suffix, and the last
336 ;; character of the preceding name. This is important because we want to
337 ;; keep such suffixes: they help to uniquely identify the person.
338 ;; *** Perhaps this should be a user-customizable variable. However, the
339 ;; *** regular expression is fairly tricky to alter, so maybe not.
340 (defconst mail-extr-full-name-suffix-pattern
341 (purecopy
342 (format
343 "\\(,? ?\\([JjSs][Rr]\\.?\\|V?I+V?\\)\\)\\([^%s]\\([^%s]\\|\\'\\)\\|\\'\\)"
344 mail-extr-all-letters mail-extr-all-letters)))
346 (defconst mail-extr-roman-numeral-pattern (purecopy "V?I+V?\\b"))
348 ;; Matches a trailing uppercase (with other characters possible) acronym.
349 ;; Must not match a trailing uppercase last name or trailing initial
350 (defconst mail-extr-weird-acronym-pattern
351 (purecopy "\\([A-Z]+[-_/]\\|[A-Z][A-Z][A-Z]?\\b\\)"))
353 ;; Matches a mixed-case or lowercase name (not an initial).
354 ;; #### Match Latin1 lower case letters here too?
355 ;; (defconst mail-extr-mixed-case-name-pattern
356 ;; (purecopy
357 ;; (format
358 ;; "\\b\\([a-z][%s]*[%s]\\|[%s][%s]*[a-z][%s]*[%s]\\|[%s][%s]*[a-z]\\)"
359 ;; mail-extr-all-letters mail-extr-last-letters
360 ;; mail-extr-first-letters mail-extr-all-letters mail-extr-all-letters
361 ;; mail-extr-last-letters mail-extr-first-letters mail-extr-all-letters)))
363 ;; Matches a trailing alternative address.
364 ;; #### Match Latin1 letters here too?
365 ;; #### Match _ before @ here too?
366 (defconst mail-extr-alternative-address-pattern
367 (purecopy "\\(aka *\\)?[a-zA-Z.]+[!@][a-zA-Z.]"))
369 ;; Matches a variety of trailing comments not including comma-delimited
370 ;; comments.
371 (defconst mail-extr-trailing-comment-start-pattern
372 (purecopy " [-{]\\|--\\|[+@#></\;]"))
374 ;; Matches a name (not an initial).
375 ;; This doesn't force a word boundary at the end because sometimes a
376 ;; comment is separated by a `-' with no preceding space.
377 (defconst mail-extr-name-pattern
378 (purecopy (format "\\b[%s][%s]*[%s]"
379 mail-extr-first-letters
380 mail-extr-all-letters
381 mail-extr-last-letters)))
383 (defconst mail-extr-initial-pattern
384 (purecopy (format "\\b[%s]\\([. ]\\|\\b\\)" mail-extr-first-letters)))
386 ;; Matches a single name before a comma.
387 ;; (defconst mail-extr-last-name-first-pattern
388 ;; (purecopy (concat "\\`" mail-extr-name-pattern ",")))
390 ;; Matches telephone extensions.
391 (defconst mail-extr-telephone-extension-pattern
392 (purecopy
393 "\\(\\([Ee]xt\\|\\|[Tt]ph\\|[Tt]el\\|[Xx]\\).?\\)? *\\+?[0-9][- 0-9]+"))
395 ;; Matches ham radio call signs.
396 ;; Help from: Mat Maessen N2NJZ <maessm@rpi.edu>, Mark Feit
397 ;; <mark@era.com>, Michael Covington <mcovingt@ai.uga.edu>.
398 ;; Examples: DX504 DX515 K5MRU K8DHK KA9WGN KA9WGN KD3FU KD6EUI KD6HBW
399 ;; KE9TV KF0NV N1API N3FU N3GZE N3IGS N4KCC N7IKQ N9HHU W4YHF W6ANK WA2SUH
400 ;; WB7VZI N2NJZ NR3G KJ4KK AB4UM AL7NI KH6OH WN3KBT N4TMI W1A N0NZO
401 (defconst mail-extr-ham-call-sign-pattern
402 (purecopy "\\b\\(DX[0-9]+\\|[AKNW][A-Z]?[0-9][A-Z][A-Z]?[A-Z]?\\)"))
404 ;; Possible trailing suffixes: "\\(/\\(KT\\|A[AEG]\\|[R0-9]\\)\\)?"
405 ;; /KT == Temporary Technician (has CSC but not "real" license)
406 ;; /AA == Temporary Advanced
407 ;; /AE == Temporary Extra
408 ;; /AG == Temporary General
409 ;; /R == repeater
410 ;; /# == stations operating out of home district
411 ;; I don't include these in the regexp above because I can't imagine
412 ;; anyone putting them with their name in an e-mail address.
414 ;; Matches normal single-part name
415 (defconst mail-extr-normal-name-pattern
416 (purecopy (format "\\b[%s][%s]+[%s]"
417 mail-extr-first-letters
418 mail-extr-all-letters-but-separators
419 mail-extr-last-letters)))
421 ;; Matches a single word name.
422 ;; (defconst mail-extr-one-name-pattern
423 ;; (purecopy (concat "\\`" mail-extr-normal-name-pattern "\\'")))
425 ;; Matches normal two names with missing middle initial
426 ;; The first name is not allowed to have a hyphen because this can cause
427 ;; false matches where the "middle initial" is actually the first letter
428 ;; of the second part of the first name.
429 (defconst mail-extr-two-name-pattern
430 (purecopy
431 (concat "\\`\\(" mail-extr-normal-name-pattern
432 "\\|" mail-extr-initial-pattern
433 "\\) +\\(" mail-extr-name-pattern "\\)\\(,\\|\\'\\)")))
435 (defconst mail-extr-listserv-list-name-pattern
436 (purecopy "Multiple recipients of list \\([-A-Z]+\\)"))
438 (defconst mail-extr-stupid-vms-date-stamp-pattern
439 (purecopy
440 "[0-9][0-9]-[JFMASOND][aepuco][nbrylgptvc]-[0-9][0-9][0-9][0-9] [0-9]+ *"))
442 ;;; HZ -- GB (PRC Chinese character encoding) in ASCII embedding protocol
444 ;; In ASCII mode, a byte is interpreted as an ASCII character, unless a '~' is
445 ;; encountered. The character '~' is an escape character. By convention, it
446 ;; must be immediately followed ONLY by '~', '{' or '\n' (<LF>), with the
447 ;; following special meaning.
449 ;; o The escape sequence '~~' is interpreted as a '~'.
450 ;; o The escape-to-GB sequence '~{' switches the mode from ASCII to GB.
451 ;; o The escape sequence '~\n' is a line-continuation marker to be consumed
452 ;; with no output produced.
454 ;; In GB mode, characters are interpreted two bytes at a time as (pure) GB
455 ;; codes until the escape-from-GB code '~}' is read. This code switches the
456 ;; mode from GB back to ASCII. (Note that the escape-from-GB code '~}'
457 ;; ($7E7D) is outside the defined GB range.)
458 (defconst mail-extr-hz-embedded-gb-encoded-chinese-pattern
459 (purecopy "~{\\([^~].\\|~[^\}]\\)+~}"))
461 ;; The leading optional lowercase letters are for a bastardized version of
462 ;; the encoding, as is the optional nature of the final slash.
463 (defconst mail-extr-x400-encoded-address-pattern
464 (purecopy "[a-z]?[a-z]?\\(/[A-Za-z]+\\(\\.[A-Za-z]+\\)?=[^/]+\\)+/?\\'"))
466 (defconst mail-extr-x400-encoded-address-field-pattern-format
467 (purecopy "/%s=\\([^/]+\\)\\(/\\|\\'\\)"))
469 (defconst mail-extr-x400-encoded-address-surname-pattern
470 ;; S stands for Surname (family name).
471 (purecopy
472 (format mail-extr-x400-encoded-address-field-pattern-format "[Ss]")))
474 (defconst mail-extr-x400-encoded-address-given-name-pattern
475 ;; G stands for Given name.
476 (purecopy
477 (format mail-extr-x400-encoded-address-field-pattern-format "[Gg]")))
479 (defconst mail-extr-x400-encoded-address-full-name-pattern
480 ;; PN stands for Personal Name. When used it represents the combination
481 ;; of the G and S fields.
482 ;; "The one system I used having this field asked it with the prompt
483 ;; `Personal Name'. But they mapped it into G and S on outgoing real
484 ;; X.400 addresses. As they mapped G and S into PN on incoming..."
485 (purecopy
486 (format mail-extr-x400-encoded-address-field-pattern-format "[Pp][Nn]")))
490 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
492 ;; Syntax tables used for quick parsing.
495 (defconst mail-extr-address-syntax-table (make-syntax-table))
496 (defconst mail-extr-address-comment-syntax-table (make-syntax-table))
497 (defconst mail-extr-address-domain-literal-syntax-table (make-syntax-table))
498 (defconst mail-extr-address-text-comment-syntax-table (make-syntax-table))
499 (defconst mail-extr-address-text-syntax-table (make-syntax-table))
500 (mapc
501 (lambda (pair)
502 (let ((syntax-table (symbol-value (car pair))))
503 (dolist (item (cdr pair))
504 (if (eq 2 (length item))
505 ;; modifying syntax of a single character
506 (modify-syntax-entry (car item) (car (cdr item)) syntax-table)
507 ;; modifying syntax of a range of characters
508 (let ((char (nth 0 item))
509 (bound (nth 1 item))
510 (syntax (nth 2 item)))
511 (while (<= char bound)
512 (modify-syntax-entry char syntax syntax-table)
513 (setq char (1+ char))))))))
514 '((mail-extr-address-syntax-table
515 (?\000 ?\037 "w") ;control characters
516 (?\040 " ") ;SPC
517 (?! ?~ "w") ;printable characters
518 (?\177 "w") ;DEL
519 (?\t " ")
520 (?\r " ")
521 (?\n " ")
522 (?\( ".")
523 (?\) ".")
524 (?< ".")
525 (?> ".")
526 (?@ ".")
527 (?, ".")
528 (?\; ".")
529 (?: ".")
530 (?\\ "\\")
531 (?\" "\"")
532 (?. ".")
533 (?\[ ".")
534 (?\] ".")
535 ;; % and ! aren't RFC822 characters, but it is convenient to pretend
536 (?% ".")
537 (?! ".") ;; this needs to be word-constituent when not in .UUCP mode
539 (mail-extr-address-comment-syntax-table
540 (?\000 ?\377 "w")
541 (?\040 " ")
542 (?\240 " ")
543 (?\t " ")
544 (?\r " ")
545 (?\n " ")
546 (?\( "\(\)")
547 (?\) "\)\(")
548 (?\\ "\\"))
549 (mail-extr-address-domain-literal-syntax-table
550 (?\000 ?\377 "w")
551 (?\040 " ")
552 (?\240 " ")
553 (?\t " ")
554 (?\r " ")
555 (?\n " ")
556 (?\[ "\(\]") ;??????
557 (?\] "\)\[") ;??????
558 (?\\ "\\"))
559 (mail-extr-address-text-comment-syntax-table
560 (?\000 ?\377 "w")
561 (?\040 " ")
562 (?\240 " ")
563 (?\t " ")
564 (?\r " ")
565 (?\n " ")
566 (?\( "\(\)")
567 (?\) "\)\(")
568 (?\[ "\(\]")
569 (?\] "\)\[")
570 (?\{ "\(\}")
571 (?\} "\)\{")
572 (?\\ "\\")
573 (?\" "\"")
574 ;; (?\' "\)\`")
575 ;; (?\` "\(\'")
577 (mail-extr-address-text-syntax-table
578 (?\000 ?\177 ".")
579 (?\200 ?\377 "w")
580 (?\040 " ")
581 (?\t " ")
582 (?\r " ")
583 (?\n " ")
584 (?A ?Z "w")
585 (?a ?z "w")
586 (?- "w")
587 (?\} "w")
588 (?\{ "w")
589 (?| "w")
590 (?\' "w")
591 (?~ "w")
592 (?0 ?9 "w"))
596 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
598 ;; Utility functions and macros.
601 ;; Fixme: There are Latin-1 nbsp below. If such characters should be
602 ;; included, this is the wrong thing to do -- it should use syntax (or
603 ;; regexp char classes).
605 (defsubst mail-extr-skip-whitespace-forward ()
606 ;; v19 fn skip-syntax-forward is more tasteful, but not byte-coded.
607 (skip-chars-forward " \t\n\r "))
609 (defsubst mail-extr-skip-whitespace-backward ()
610 ;; v19 fn skip-syntax-backward is more tasteful, but not byte-coded.
611 (skip-chars-backward " \t\n\r "))
614 (defsubst mail-extr-undo-backslash-quoting (beg end)
615 (save-excursion
616 (save-restriction
617 (narrow-to-region beg end)
618 (goto-char (point-min))
619 ;; undo \ quoting
620 (while (search-forward "\\" nil t)
621 (delete-char -1)
622 (or (eobp)
623 (forward-char 1))))))
625 (defsubst mail-extr-nuke-char-at (pos)
626 (save-excursion
627 (goto-char pos)
628 (delete-char 1)
629 (insert ?\ )))
631 (put 'mail-extr-nuke-outside-range
632 'edebug-form-spec '(symbolp &optional form form atom))
634 (defmacro mail-extr-nuke-outside-range (list-symbol
635 beg-symbol end-symbol
636 &optional no-replace)
637 "Delete all elements outside BEG..END in LIST.
638 LIST-SYMBOL names a variable holding a list of buffer positions
639 BEG-SYMBOL and END-SYMBOL name variables delimiting a range
640 Each element of LIST-SYMBOL which lies outside of the range is
641 deleted from the list.
642 Unless NO-REPLACE is true, at each of the positions in LIST-SYMBOL
643 which lie outside of the range, one character at that position is
644 replaced with a SPC."
645 (or (memq no-replace '(t nil))
646 (error "no-replace must be t or nil, evaluable at macroexpand-time"))
647 `(let ((temp ,list-symbol)
649 (while temp
650 (setq ch (car temp))
651 (when (or (> ch ,end-symbol)
652 (< ch ,beg-symbol))
653 ,@(if no-replace
655 `((mail-extr-nuke-char-at ch)))
656 (setcar temp nil))
657 (setq temp (cdr temp)))
658 (setq ,list-symbol (delq nil ,list-symbol))))
660 (defun mail-extr-demarkerize (marker)
661 ;; if arg is a marker, destroys the marker, then returns the old value.
662 ;; otherwise returns the arg.
663 (if (markerp marker)
664 (let ((temp (marker-position marker)))
665 (set-marker marker nil)
666 temp)
667 marker))
669 (defun mail-extr-markerize (pos)
670 ;; coerces pos to a marker if non-nil.
671 (if (or (markerp pos) (null pos))
673 (copy-marker pos)))
675 (defsubst mail-extr-safe-move-sexp (arg)
676 ;; Safely skip over one balanced sexp, if there is one. Return t if success.
677 (condition-case error
678 (progn
679 (goto-char (or (scan-sexps (point) arg) (point)))
681 (error
682 ;; #### kludge kludge kludge kludge kludge kludge kludge !!!
683 (if (string-equal (nth 1 error) "Unbalanced parentheses")
685 (while t
686 (signal (car error) (cdr error)))))))
688 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
690 ;; The main function to grind addresses
693 (defvar disable-initial-guessing-flag) ; dynamic assignment
694 (defvar cbeg) ; dynamic assignment
695 (defvar cend) ; dynamic assignment
696 (defvar mail-extr-all-top-level-domains) ; Defined below.
698 ;;;###autoload
699 (defun mail-extract-address-components (address &optional all)
700 "Given an RFC-822 address ADDRESS, extract full name and canonical address.
701 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). If no
702 name can be extracted, FULL-NAME will be nil. Also see
703 `mail-extr-ignore-single-names' and
704 `mail-extr-ignore-realname-equals-mailbox-name'.
706 If the optional argument ALL is non-nil, then ADDRESS can contain zero
707 or more recipients, separated by commas, and we return a list of
708 the form ((FULL-NAME CANONICAL-ADDRESS) ...) with one element for
709 each recipient. If ALL is nil, then if ADDRESS contains more than
710 one recipients, all but the first is ignored.
712 ADDRESS may be a string or a buffer. If it is a buffer, the visible
713 \(narrowed) portion of the buffer will be interpreted as the address.
714 \(This feature exists so that the clever caller might be able to avoid
715 consing a string.)"
716 (let ((canonicalization-buffer (get-buffer-create " *canonical address*"))
717 (extraction-buffer (get-buffer-create " *extract address components*"))
718 value-list)
720 (with-current-buffer (get-buffer-create extraction-buffer)
721 (fundamental-mode)
722 (buffer-disable-undo extraction-buffer)
723 (set-syntax-table mail-extr-address-syntax-table)
724 (widen)
725 (erase-buffer)
726 (setq case-fold-search nil)
728 ;; Insert extra space at beginning to allow later replacement with <
729 ;; without having to move markers.
730 (insert ?\ )
732 ;; Insert the address itself.
733 (cond ((stringp address)
734 (insert address))
735 ((bufferp address)
736 (insert-buffer-substring address))
738 (error "Invalid address: %s" address)))
740 (set-text-properties (point-min) (point-max) nil)
742 (with-current-buffer (get-buffer-create canonicalization-buffer)
743 (fundamental-mode)
744 (buffer-disable-undo canonicalization-buffer)
745 (setq case-fold-search nil))
748 ;; Unfold multiple lines.
749 (goto-char (point-min))
750 (while (re-search-forward "\\([^\\]\\(\\\\\\\\\\)*\\)\n[ \t]" nil t)
751 (replace-match "\\1 " t))
753 ;; Loop over addresses until we have as many as we want.
754 (while (and (or all (null value-list))
755 (progn (goto-char (point-min))
756 (skip-chars-forward " \t")
757 (not (eobp))))
758 (let (char
759 end-of-address
760 <-pos >-pos @-pos colon-pos comma-pos !-pos %-pos \;-pos
761 group-:-pos group-\;-pos route-addr-:-pos
762 record-pos-symbol
763 first-real-pos last-real-pos
764 phrase-beg phrase-end
765 cbeg cend ; dynamically set from -voodoo
766 quote-beg quote-end
767 atom-beg atom-end
768 mbox-beg mbox-end
769 \.-ends-name
770 temp
771 ;; name-suffix
772 fi mi li ; first, middle, last initial
773 saved-%-pos saved-!-pos saved-@-pos
774 domain-pos \.-pos insert-point
775 ;; mailbox-name-processed-flag
776 disable-initial-guessing-flag) ; dynamically set from -voodoo
778 (set-syntax-table mail-extr-address-syntax-table)
779 (goto-char (point-min))
781 ;; Insert extra space at beginning to allow later replacement with <
782 ;; without having to move markers.
783 (or (eq (following-char) ?\ )
784 (insert ?\ ))
786 ;; First pass grabs useful information about address.
787 (while (progn
788 (mail-extr-skip-whitespace-forward)
789 (not (eobp)))
790 (setq char (char-after (point)))
791 (or first-real-pos
792 (if (not (eq char ?\())
793 (setq first-real-pos (point))))
794 (cond
795 ;; comment
796 ((eq char ?\()
797 (set-syntax-table mail-extr-address-comment-syntax-table)
798 ;; only record the first non-empty comment's position
799 (if (and (not cbeg)
800 (save-excursion
801 (forward-char 1)
802 (mail-extr-skip-whitespace-forward)
803 (not (eq ?\) (char-after (point))))))
804 (setq cbeg (point)))
805 ;; TODO: don't record if unbalanced
806 (or (mail-extr-safe-move-sexp 1)
807 (forward-char 1))
808 (set-syntax-table mail-extr-address-syntax-table)
809 (if (and cbeg
810 (not cend))
811 (setq cend (point))))
812 ;; quoted text
813 ((eq char ?\")
814 ;; only record the first non-empty quote's position
815 (if (and (not quote-beg)
816 (save-excursion
817 (forward-char 1)
818 (mail-extr-skip-whitespace-forward)
819 (not (eq ?\" (char-after (point))))))
820 (setq quote-beg (point)))
821 ;; TODO: don't record if unbalanced
822 (or (mail-extr-safe-move-sexp 1)
823 (forward-char 1))
824 (if (and quote-beg
825 (not quote-end))
826 (setq quote-end (point))))
827 ;; domain literals
828 ((eq char ?\[)
829 (set-syntax-table mail-extr-address-domain-literal-syntax-table)
830 (or (mail-extr-safe-move-sexp 1)
831 (forward-char 1))
832 (set-syntax-table mail-extr-address-syntax-table))
833 ;; commas delimit addresses when outside < > pairs.
834 ((and (eq char ?,)
835 (or (and (null <-pos)
836 ;; Handle ROUTE-ADDR address that is missing its <.
837 (not (eq ?@ (char-after (1+ (point))))))
838 (and >-pos
839 ;; handle weird munged addresses
840 ;; BUG FIX: This test was reversed. Thanks to the
841 ;; brilliant Rod Whitby <rwhitby@research.canon.oz.au>
842 ;; for discovering this!
843 (< (car (last <-pos)) (car >-pos)))))
844 ;; The argument contains more than one address.
845 ;; Temporarily hide everything after this one.
846 (setq end-of-address (copy-marker (1+ (point)) t))
847 (narrow-to-region (point-min) (1+ (point)))
848 (delete-char 1)
849 (setq char ?\() ; HAVE I NO SHAME??
851 ;; record the position of various interesting chars, determine
852 ;; validity later.
853 ((setq record-pos-symbol
854 (cdr (assq char
855 '((?< . <-pos) (?> . >-pos) (?@ . @-pos)
856 (?: . colon-pos) (?, . comma-pos) (?! . !-pos)
857 (?% . %-pos) (?\; . \;-pos)))))
858 (set record-pos-symbol
859 (cons (point) (symbol-value record-pos-symbol)))
860 (forward-char 1))
861 ((eq char ?.)
862 (forward-char 1))
863 ((memq char '(
864 ;; comment terminator invalid
866 ;; domain literal terminator invalid
868 ;; \ allowed only within quoted strings,
869 ;; domain literals, and comments
872 (mail-extr-nuke-char-at (point))
873 (forward-char 1))
875 ;; Do `(forward-word 1)', recognizing non-ASCII characters
876 ;; except Latin-1 nbsp as words.
877 (while (progn
878 (skip-chars-forward "^\000-\177 ")
879 (and (not (eobp))
880 (eq ?w (char-syntax (char-after)))
881 (progn
882 (forward-word 1)
883 (and (not (eobp))
884 (> (char-after) ?\177)
885 (not (eq (char-after) ? )))))))))
886 (or (eq char ?\()
887 ;; At the end of first address of a multiple address header.
888 (and (eq char ?,)
889 (eobp))
890 (setq last-real-pos (point))))
892 ;; Use only the leftmost <, if any. Replace all others with spaces.
893 (while (cdr <-pos)
894 (mail-extr-nuke-char-at (car <-pos))
895 (setq <-pos (cdr <-pos)))
897 ;; Use only the rightmost >, if any. Replace all others with spaces.
898 (while (cdr >-pos)
899 (mail-extr-nuke-char-at (nth 1 >-pos))
900 (setcdr >-pos (nthcdr 2 >-pos)))
902 ;; If multiple @s and a :, but no < and >, insert around buffer.
903 ;; Example: @foo.bar.dom,@xxx.yyy.zzz:mailbox@aaa.bbb.ccc
904 ;; This commonly happens on the UUCP "From " line. Ugh.
905 (when (and (> (length @-pos) 1)
906 (eq 1 (length colon-pos)) ;TODO: check if between last two @s
907 (not \;-pos)
908 (not <-pos))
909 (goto-char (point-min))
910 (delete-char 1)
911 (setq <-pos (list (point)))
912 (insert ?<))
914 ;; If < but no >, insert > in rightmost possible position
915 (when (and <-pos (null >-pos))
916 (goto-char (point-max))
917 (setq >-pos (list (point)))
918 (insert ?>))
920 ;; If > but no <, replace > with space.
921 (when (and >-pos (null <-pos))
922 (mail-extr-nuke-char-at (car >-pos))
923 (setq >-pos nil))
925 ;; Turn >-pos and <-pos into non-lists
926 (setq >-pos (car >-pos)
927 <-pos (car <-pos))
929 ;; Trim other punctuation lists of items outside < > pair to handle
930 ;; stupid MTAs.
931 (when <-pos ; don't need to check >-pos also
932 ;; handle bozo software that violates RFC 822 by sticking
933 ;; punctuation marks outside of a < > pair
934 (mail-extr-nuke-outside-range @-pos <-pos >-pos t)
935 ;; RFC 822 says nothing about these two outside < >, but
936 ;; remove those positions from the lists to make things
937 ;; easier.
938 (mail-extr-nuke-outside-range !-pos <-pos >-pos t)
939 (mail-extr-nuke-outside-range %-pos <-pos >-pos t))
941 ;; Check for : that indicates GROUP list and for : part of
942 ;; ROUTE-ADDR spec.
943 ;; Can't possibly be more than two :. Nuke any extra.
944 (while colon-pos
945 (setq temp (car colon-pos)
946 colon-pos (cdr colon-pos))
947 (cond ((and <-pos >-pos
948 (> temp <-pos)
949 (< temp >-pos))
950 (if (or route-addr-:-pos
951 (< (length @-pos) 2)
952 (> temp (car @-pos))
953 (< temp (nth 1 @-pos)))
954 (mail-extr-nuke-char-at temp)
955 (setq route-addr-:-pos temp)))
956 ((or (not <-pos)
957 (and <-pos
958 (< temp <-pos)))
959 (setq group-:-pos temp))))
961 ;; Nuke any ; that is in or to the left of a < > pair or to the left
962 ;; of a GROUP starting :. Also, there may only be one ;.
963 (while \;-pos
964 (setq temp (car \;-pos)
965 \;-pos (cdr \;-pos))
966 (cond ((and <-pos >-pos
967 (> temp <-pos)
968 (< temp >-pos))
969 (mail-extr-nuke-char-at temp))
970 ((and (or (not group-:-pos)
971 (> temp group-:-pos))
972 (not group-\;-pos))
973 (setq group-\;-pos temp))))
975 ;; Nuke unmatched GROUP syntax characters.
976 (when (and group-:-pos (not group-\;-pos))
977 ;; *** Do I really need to erase it?
978 (mail-extr-nuke-char-at group-:-pos)
979 (setq group-:-pos nil))
980 (when (and group-\;-pos (not group-:-pos))
981 ;; *** Do I really need to erase it?
982 (mail-extr-nuke-char-at group-\;-pos)
983 (setq group-\;-pos nil))
985 ;; Handle junk like ";@host.company.dom" that sendmail adds.
986 ;; **** should I remember comment positions?
987 (when group-\;-pos
988 ;; this is fine for now
989 (mail-extr-nuke-outside-range !-pos group-:-pos group-\;-pos t)
990 (mail-extr-nuke-outside-range @-pos group-:-pos group-\;-pos t)
991 (mail-extr-nuke-outside-range %-pos group-:-pos group-\;-pos t)
992 (mail-extr-nuke-outside-range comma-pos group-:-pos group-\;-pos t)
993 (and last-real-pos
994 (> last-real-pos (1+ group-\;-pos))
995 (setq last-real-pos (1+ group-\;-pos)))
996 ;; *** This may be wrong:
997 (and cend
998 (> cend group-\;-pos)
999 (setq cend nil
1000 cbeg nil))
1001 (and quote-end
1002 (> quote-end group-\;-pos)
1003 (setq quote-end nil
1004 quote-beg nil))
1005 ;; This was both wrong and unnecessary:
1006 ;;(narrow-to-region (point-min) group-\;-pos)
1008 ;; *** The entire handling of GROUP addresses seems rather lame.
1009 ;; *** It deserves a complete rethink, except that these addresses
1010 ;; *** are hardly ever seen.
1013 ;; Any commas must be between < and : of ROUTE-ADDR. Nuke any
1014 ;; others.
1015 ;; Hell, go ahead and nuke all of the commas.
1016 ;; **** This will cause problems when we start handling commas in
1017 ;; the PHRASE part .... no it won't ... yes it will ... ?????
1018 (mail-extr-nuke-outside-range comma-pos 1 1)
1020 ;; can only have multiple @s inside < >. The fact that some MTAs
1021 ;; put de-bracketed ROUTE-ADDRs in the UUCP-style "From " line is
1022 ;; handled above.
1024 ;; Locate PHRASE part of ROUTE-ADDR.
1025 (when <-pos
1026 (goto-char <-pos)
1027 (mail-extr-skip-whitespace-backward)
1028 (setq phrase-end (point))
1029 (goto-char (or ;;group-:-pos
1030 (point-min)))
1031 (mail-extr-skip-whitespace-forward)
1032 (if (< (point) phrase-end)
1033 (setq phrase-beg (point))
1034 (setq phrase-end nil)))
1036 ;; handle ROUTE-ADDRS with real ROUTEs.
1037 ;; If there are multiple @s, then we assume ROUTE-ADDR syntax, and
1038 ;; any % or ! must be semantically meaningless.
1039 ;; TODO: do this processing into canonicalization buffer
1040 (when route-addr-:-pos
1041 (setq !-pos nil
1042 %-pos nil
1043 >-pos (copy-marker >-pos)
1044 route-addr-:-pos (copy-marker route-addr-:-pos))
1045 (goto-char >-pos)
1046 (insert-before-markers ?X)
1047 (goto-char (car @-pos))
1048 (while (setq @-pos (cdr @-pos))
1049 (delete-char 1)
1050 (setq %-pos (cons (point-marker) %-pos))
1051 (insert "%")
1052 (goto-char (1- >-pos))
1053 (save-excursion
1054 (insert-buffer-substring extraction-buffer
1055 (car @-pos) route-addr-:-pos)
1056 (delete-region (car @-pos) route-addr-:-pos))
1057 (or (cdr @-pos)
1058 (setq saved-@-pos (list (point)))))
1059 (setq @-pos saved-@-pos)
1060 (goto-char >-pos)
1061 (delete-char -1)
1062 (mail-extr-nuke-char-at route-addr-:-pos)
1063 (mail-extr-demarkerize route-addr-:-pos)
1064 (setq route-addr-:-pos nil
1065 >-pos (mail-extr-demarkerize >-pos)
1066 %-pos (mapcar 'mail-extr-demarkerize %-pos)))
1068 ;; de-listify @-pos
1069 (setq @-pos (car @-pos))
1071 ;; TODO: remove comments in the middle of an address
1073 (with-current-buffer canonicalization-buffer
1074 (widen)
1075 (erase-buffer)
1076 (insert-buffer-substring extraction-buffer)
1078 (if <-pos
1079 (narrow-to-region (progn
1080 (goto-char (1+ <-pos))
1081 (mail-extr-skip-whitespace-forward)
1082 (point))
1083 >-pos)
1084 (if (and first-real-pos last-real-pos)
1085 (narrow-to-region first-real-pos last-real-pos)
1086 ;; ****** Oh no! What if the address is completely empty!
1087 ;; *** Is this correct?
1088 (narrow-to-region (point-max) (point-max))))
1090 (and @-pos %-pos
1091 (mail-extr-nuke-outside-range %-pos (point-min) @-pos))
1092 (and %-pos !-pos
1093 (mail-extr-nuke-outside-range !-pos (point-min) (car %-pos)))
1094 (and @-pos !-pos (not %-pos)
1095 (mail-extr-nuke-outside-range !-pos (point-min) @-pos))
1097 ;; Error condition:?? (and %-pos (not @-pos))
1099 ;; WARNING: THIS CODE IS DUPLICATED BELOW.
1100 (when (and %-pos (not @-pos))
1101 (goto-char (car %-pos))
1102 (delete-char 1)
1103 (setq @-pos (point))
1104 (insert "@")
1105 (setq %-pos (cdr %-pos)))
1107 (when (and mail-extr-mangle-uucp !-pos)
1108 ;; **** I don't understand this save-restriction and the
1109 ;; narrow-to-region inside it. Why did I do that?
1110 (save-restriction
1111 (cond ((and @-pos
1112 mail-extr-@-binds-tighter-than-!)
1113 (goto-char @-pos)
1114 (setq %-pos (cons (point) %-pos)
1115 @-pos nil)
1116 (delete-char 1)
1117 (insert "%")
1118 (setq insert-point (point-max)))
1119 (mail-extr-@-binds-tighter-than-!
1120 (setq insert-point (point-max)))
1121 (%-pos
1122 (setq insert-point (car (last %-pos))
1123 saved-%-pos (mapcar 'mail-extr-markerize %-pos)
1124 %-pos nil
1125 @-pos (mail-extr-markerize @-pos)))
1126 (@-pos
1127 (setq insert-point @-pos)
1128 (setq @-pos (mail-extr-markerize @-pos)))
1130 (setq insert-point (point-max))))
1131 (narrow-to-region (point-min) insert-point)
1132 (setq saved-!-pos (car !-pos))
1133 (while !-pos
1134 (goto-char (point-max))
1135 (cond ((and (not @-pos)
1136 (not (cdr !-pos)))
1137 (setq @-pos (point))
1138 (insert-before-markers "@ "))
1140 (setq %-pos (cons (point) %-pos))
1141 (insert-before-markers "% ")))
1142 (backward-char 1)
1143 (insert-buffer-substring
1144 (current-buffer)
1145 (if (nth 1 !-pos)
1146 (1+ (nth 1 !-pos))
1147 (point-min))
1148 (car !-pos))
1149 (delete-char 1)
1150 (or (save-excursion
1151 (mail-extr-safe-move-sexp -1)
1152 (mail-extr-skip-whitespace-backward)
1153 (eq ?. (preceding-char)))
1154 (insert-before-markers
1155 (if (save-excursion
1156 (mail-extr-skip-whitespace-backward)
1157 (eq ?. (preceding-char)))
1159 ".")
1160 "uucp"))
1161 (setq !-pos (cdr !-pos))))
1162 (and saved-%-pos
1163 (setq %-pos (append (mapcar 'mail-extr-demarkerize
1164 saved-%-pos)
1165 %-pos)))
1166 (setq @-pos (mail-extr-demarkerize @-pos))
1167 (narrow-to-region (1+ saved-!-pos) (point-max)))
1169 ;; WARNING: THIS CODE IS DUPLICATED ABOVE.
1170 (when (and %-pos (not @-pos))
1171 (goto-char (car %-pos))
1172 (delete-char 1)
1173 (setq @-pos (point))
1174 (insert "@")
1175 (setq %-pos (cdr %-pos)))
1177 (when (setq %-pos (nreverse %-pos)) ; implies @-pos valid
1178 (setq temp %-pos)
1179 (catch 'truncated
1180 (while temp
1181 (goto-char (or (nth 1 temp)
1182 @-pos))
1183 (mail-extr-skip-whitespace-backward)
1184 (save-excursion
1185 (mail-extr-safe-move-sexp -1)
1186 (setq domain-pos (point))
1187 (mail-extr-skip-whitespace-backward)
1188 (setq \.-pos (eq ?. (preceding-char))))
1189 (when (and \.-pos
1190 ;; #### string consing
1191 (let ((s (intern-soft
1192 (buffer-substring domain-pos (point))
1193 mail-extr-all-top-level-domains)))
1194 (and s (get s 'domain-name))))
1195 (narrow-to-region (point-min) (point))
1196 (goto-char (car temp))
1197 (delete-char 1)
1198 (setq @-pos (point))
1199 (setcdr temp nil)
1200 (setq %-pos (delq @-pos %-pos))
1201 (insert "@")
1202 (throw 'truncated t))
1203 (setq temp (cdr temp)))))
1204 (setq mbox-beg (point-min)
1205 mbox-end (if %-pos (car %-pos)
1206 (or @-pos
1207 (point-max))))
1209 (when @-pos
1210 ;; Make the domain-name part lowercase since it's case
1211 ;; insensitive anyway.
1212 (downcase-region (1+ @-pos) (point-max))))
1214 ;; Done canonicalizing address.
1215 ;; We are now back in extraction-buffer.
1217 ;; Decide what part of the address to search to find the full name.
1218 (cond (
1219 ;; Example: "First M. Last" <fml@foo.bar.dom>
1220 (and phrase-beg
1221 (eq quote-beg phrase-beg)
1222 (<= quote-end phrase-end))
1223 (narrow-to-region (1+ quote-beg) (1- quote-end))
1224 (mail-extr-undo-backslash-quoting (point-min) (point-max)))
1226 ;; Example: First Last <fml@foo.bar.dom>
1227 (phrase-beg
1228 (narrow-to-region phrase-beg phrase-end))
1230 ;; Example: fml@foo.bar.dom (First M. Last)
1231 (cbeg
1232 (narrow-to-region (1+ cbeg) (1- cend))
1233 (mail-extr-undo-backslash-quoting (point-min) (point-max))
1235 ;; Deal with spacing problems
1236 (goto-char (point-min))
1237 ;;; (cond ((not (search-forward " " nil t))
1238 ;;; (goto-char (point-min))
1239 ;;; (cond ((search-forward "_" nil t)
1240 ;;; ;; Handle the *idiotic* use of underlines as spaces.
1241 ;;; ;; Example: fml@foo.bar.dom (First_M._Last)
1242 ;;; (goto-char (point-min))
1243 ;;; (while (search-forward "_" nil t)
1244 ;;; (replace-match " " t)))
1245 ;;; ((search-forward "." nil t)
1246 ;;; ;; Fix . used as space
1247 ;;; ;; Example: danj1@cb.att.com (daniel.jacobson)
1248 ;;; (goto-char (point-min))
1249 ;;; (while (re-search-forward mail-extr-bad-dot-pattern nil t)
1250 ;;; (replace-match "\\1 \\2" t))))))
1253 ;; Otherwise we try to get the name from the mailbox portion
1254 ;; of the address.
1255 ;; Example: First_M_Last@foo.bar.dom
1257 ;; *** Work in canon buffer instead? No, can't. Hmm.
1258 (goto-char (point-max))
1259 (narrow-to-region (point) (point))
1260 (insert-buffer-substring canonicalization-buffer
1261 mbox-beg mbox-end)
1262 (goto-char (point-min))
1264 ;; Example: First_Last.XXX@foo.bar.dom
1265 (setq \.-ends-name (re-search-forward "[_0-9]" nil t))
1267 (goto-char (point-min))
1269 (if (not mail-extr-mangle-uucp)
1270 (modify-syntax-entry ?! "w" (syntax-table)))
1272 (while (progn
1273 (mail-extr-skip-whitespace-forward)
1274 (not (eobp)))
1275 (setq char (char-after (point)))
1276 (cond
1277 ((eq char ?\")
1278 (setq quote-beg (point))
1279 (or (mail-extr-safe-move-sexp 1)
1280 ;; TODO: handle this error condition!!!!!
1281 (forward-char 1))
1282 ;; take into account deletions
1283 (setq quote-end (- (point) 2))
1284 (save-excursion
1285 (backward-char 1)
1286 (delete-char 1)
1287 (goto-char quote-beg)
1288 (or (eobp)
1289 (delete-char 1)))
1290 (mail-extr-undo-backslash-quoting quote-beg quote-end)
1291 (or (eq ?\ (char-after (point)))
1292 (insert " "))
1293 ;; (setq mailbox-name-processed-flag t)
1294 (setq \.-ends-name t))
1295 ((eq char ?.)
1296 (if (memq (char-after (1+ (point))) '(?_ ?=))
1297 (progn
1298 (forward-char 1)
1299 (delete-char 1)
1300 (insert ?\ ))
1301 (if \.-ends-name
1302 (narrow-to-region (point-min) (point))
1303 (delete-char 1)
1304 (insert " ")))
1305 ;; (setq mailbox-name-processed-flag t)
1307 ((memq (char-syntax char) '(?. ?\\))
1308 (delete-char 1)
1309 (insert " ")
1310 ;; (setq mailbox-name-processed-flag t)
1313 (setq atom-beg (point))
1314 (forward-word 1)
1315 (setq atom-end (point))
1316 (goto-char atom-beg)
1317 (save-restriction
1318 (narrow-to-region atom-beg atom-end)
1319 (cond
1321 ;; Handle X.400 addresses encoded in RFC-822.
1322 ;; *** Shit! This has to handle the case where it is
1323 ;; *** embedded in a quote too!
1324 ;; *** Shit! The input is being broken up into atoms
1325 ;; *** by periods!
1326 ((looking-at mail-extr-x400-encoded-address-pattern)
1328 ;; Copy the contents of the individual fields that
1329 ;; might hold name data to the beginning.
1330 (mapc
1331 (lambda (field-pattern)
1332 (when
1333 (save-excursion
1334 (re-search-forward field-pattern nil t))
1335 (insert-buffer-substring (current-buffer)
1336 (match-beginning 1)
1337 (match-end 1))
1338 (insert " ")))
1339 (list mail-extr-x400-encoded-address-given-name-pattern
1340 mail-extr-x400-encoded-address-surname-pattern
1341 mail-extr-x400-encoded-address-full-name-pattern))
1343 ;; Discard the rest, since it contains stuff like
1344 ;; routing information, not part of a name.
1345 (mail-extr-skip-whitespace-backward)
1346 (delete-region (point) (point-max))
1348 ;; Handle periods used for spacing.
1349 (while (re-search-forward mail-extr-bad-dot-pattern nil t)
1350 (replace-match "\\1 \\2" t))
1352 ;; (setq mailbox-name-processed-flag t)
1355 ;; Handle normal addresses.
1357 (goto-char (point-min))
1358 ;; Handle _ and = used for spacing.
1359 (while (re-search-forward "\\([^_=]+\\)[_=]" nil t)
1360 (replace-match "\\1 " t)
1361 ;; (setq mailbox-name-processed-flag t)
1363 (goto-char (point-max))))))))
1365 ;; undo the dirty deed
1366 (if (not mail-extr-mangle-uucp)
1367 (modify-syntax-entry ?! "." (syntax-table)))
1369 ;; If we derived the name from the mailbox part of the address,
1370 ;; and we only got one word out of it, don't treat that as a
1371 ;; name. "foo@bar" --> (nil "foo@bar"), not ("foo" "foo@bar")
1372 ;; (if (not mailbox-name-processed-flag)
1373 ;; (delete-region (point-min) (point-max)))
1376 (set-syntax-table mail-extr-address-text-syntax-table)
1378 (mail-extr-voodoo mbox-beg mbox-end canonicalization-buffer)
1379 (goto-char (point-min))
1381 ;; If name is "First Last" and userid is "F?L", then assume
1382 ;; the middle initial is the second letter in the userid.
1383 ;; Initial code by Jamie Zawinski <jwz@lucid.com>
1384 ;; *** Make it work when there's a suffix as well.
1385 (goto-char (point-min))
1386 (when (and mail-extr-guess-middle-initial
1387 (not disable-initial-guessing-flag)
1388 (eq 3 (- mbox-end mbox-beg))
1389 (progn
1390 (goto-char (point-min))
1391 (looking-at mail-extr-two-name-pattern)))
1392 (setq fi (char-after (match-beginning 0))
1393 li (char-after (match-beginning 3)))
1394 (with-current-buffer canonicalization-buffer
1395 ;; char-equal is ignoring case here, so no need to upcase
1396 ;; or downcase.
1397 (let ((case-fold-search t))
1398 (and (char-equal fi (char-after mbox-beg))
1399 (char-equal li (char-after (1- mbox-end)))
1400 (setq mi (char-after (1+ mbox-beg))))))
1401 (when (and mi
1402 ;; TODO: use better table than syntax table
1403 (eq ?w (char-syntax mi)))
1404 (goto-char (match-beginning 3))
1405 (insert (upcase mi) ". ")))
1407 ;; Nuke name if it is the same as mailbox name.
1408 (let ((buffer-length (- (point-max) (point-min)))
1409 (i 0)
1410 (names-match-flag t))
1411 (when (and (> buffer-length 0)
1412 (eq buffer-length (- mbox-end mbox-beg)))
1413 (goto-char (point-max))
1414 (insert-buffer-substring canonicalization-buffer
1415 mbox-beg mbox-end)
1416 (while (and names-match-flag
1417 (< i buffer-length))
1418 (or (eq (downcase (char-after (+ i (point-min))))
1419 (downcase
1420 (char-after (+ i buffer-length (point-min)))))
1421 (setq names-match-flag nil))
1422 (setq i (1+ i)))
1423 (delete-region (+ (point-min) buffer-length) (point-max))
1424 (and names-match-flag
1425 mail-extr-ignore-realname-equals-mailbox-name
1426 (narrow-to-region (point) (point)))))
1428 ;; Nuke name if it's just one word.
1429 (goto-char (point-min))
1430 (and mail-extr-ignore-single-names
1431 (not (re-search-forward "[- ]" nil t))
1432 (narrow-to-region (point) (point)))
1434 ;; Record the result
1435 (setq value-list
1436 (cons (list (if (not (= (point-min) (point-max)))
1437 (buffer-string))
1438 (with-current-buffer canonicalization-buffer
1439 (if (not (= (point-min) (point-max)))
1440 (buffer-string))))
1441 value-list))
1443 ;; Unless one address is all we wanted,
1444 ;; delete this one from extraction-buffer
1445 ;; and get ready to extract the next address.
1446 (when all
1447 (if end-of-address
1448 (narrow-to-region 1 end-of-address)
1449 (widen))
1450 (delete-region (point-min) (point-max))
1451 (widen))
1453 (if all (nreverse value-list) (car value-list))
1456 (defcustom mail-extr-disable-voodoo "\\cj"
1457 "*If it is a regexp, names matching it will never be modified.
1458 If it is neither nil nor a string, modifying of names will never take
1459 place. It affects how `mail-extract-address-components' works."
1460 :type '(choice (regexp :size 0)
1461 (const :tag "Always enabled" nil)
1462 (const :tag "Always disabled" t))
1463 :group 'mail-extr)
1465 (defun mail-extr-voodoo (mbox-beg mbox-end canonicalization-buffer)
1466 (unless (and mail-extr-disable-voodoo
1467 (or (not (stringp mail-extr-disable-voodoo))
1468 (progn
1469 (goto-char (point-min))
1470 (re-search-forward mail-extr-disable-voodoo nil t))))
1471 (let ((word-count 0)
1472 (case-fold-search nil)
1473 mixed-case-flag lower-case-flag ;;upper-case-flag
1474 suffix-flag last-name-comma-flag
1475 ;;cbeg cend
1476 initial
1477 begin-again-flag
1478 drop-this-word-if-trailing-flag
1479 drop-last-word-if-trailing-flag
1480 word-found-flag
1481 this-word-beg last-word-beg
1482 name-beg name-end
1483 name-done-flag
1485 (save-excursion
1486 (set-syntax-table mail-extr-address-text-syntax-table)
1488 ;; Get rid of comments.
1489 (goto-char (point-min))
1490 (while (not (eobp))
1491 ;; Initialize for this iteration of the loop.
1492 (skip-chars-forward "^({[\"'`")
1493 (let ((cbeg (point)))
1494 (set-syntax-table mail-extr-address-text-comment-syntax-table)
1495 (if (memq (following-char) '(?\' ?\`))
1496 (search-forward "'" nil 'move
1497 (if (eq ?\' (following-char)) 2 1))
1498 (or (mail-extr-safe-move-sexp 1)
1499 (goto-char (point-max))))
1500 (set-syntax-table mail-extr-address-text-syntax-table)
1501 (when (eq (char-after cbeg) ?\()
1502 ;; Delete the comment itself.
1503 (delete-region cbeg (point))
1504 ;; Canonicalize whitespace where the comment was.
1505 (skip-chars-backward " \t")
1506 (if (looking-at "\\([ \t]+$\\|[ \t]+,\\)")
1507 (replace-match "")
1508 (setq cbeg (point))
1509 (skip-chars-forward " \t")
1510 (if (bobp)
1511 (delete-region (point) cbeg)
1512 (just-one-space))))))
1514 ;; This was moved above.
1515 ;; Fix . used as space
1516 ;; But it belongs here because it occurs not only as
1517 ;; rypens@reks.uia.ac.be (Piet.Rypens)
1518 ;; but also as
1519 ;; "Piet.Rypens" <rypens@reks.uia.ac.be>
1520 ;;(goto-char (point-min))
1521 ;;(while (re-search-forward mail-extr-bad-dot-pattern nil t)
1522 ;; (replace-match "\\1 \\2" t))
1524 (unless (search-forward " " nil t)
1525 (goto-char (point-min))
1526 (cond ((search-forward "_" nil t)
1527 ;; Handle the *idiotic* use of underlines as spaces.
1528 ;; Example: fml@foo.bar.dom (First_M._Last)
1529 (goto-char (point-min))
1530 (while (search-forward "_" nil t)
1531 (replace-match " " t)))
1532 ((search-forward "." nil t)
1533 ;; Fix . used as space
1534 ;; Example: danj1@cb.att.com (daniel.jacobson)
1535 (goto-char (point-min))
1536 (while (re-search-forward mail-extr-bad-dot-pattern nil t)
1537 (replace-match "\\1 \\2" t)))))
1539 ;; Loop over the words (and other junk) in the name.
1540 (goto-char (point-min))
1541 (while (not name-done-flag)
1543 (when word-found-flag
1544 ;; Last time through this loop we skipped over a word.
1545 (setq last-word-beg this-word-beg)
1546 (setq drop-last-word-if-trailing-flag
1547 drop-this-word-if-trailing-flag)
1548 (setq word-found-flag nil))
1550 (when begin-again-flag
1551 ;; Last time through the loop we found something that
1552 ;; indicates we should pretend we are beginning again from
1553 ;; the start.
1554 (setq word-count 0)
1555 (setq last-word-beg nil)
1556 (setq drop-last-word-if-trailing-flag nil)
1557 (setq mixed-case-flag nil)
1558 (setq lower-case-flag nil)
1559 ;; (setq upper-case-flag nil)
1560 (setq begin-again-flag nil))
1562 ;; Initialize for this iteration of the loop.
1563 (mail-extr-skip-whitespace-forward)
1564 (if (eq word-count 0) (narrow-to-region (point) (point-max)))
1565 (setq this-word-beg (point))
1566 (setq drop-this-word-if-trailing-flag nil)
1568 ;; Decide what to do based on what we are looking at.
1569 (cond
1571 ;; Delete title
1572 ((and (eq word-count 0)
1573 (looking-at mail-extr-full-name-prefixes))
1574 (goto-char (match-end 0))
1575 (narrow-to-region (point) (point-max)))
1577 ;; Stop after name suffix
1578 ((and (>= word-count 2)
1579 (looking-at mail-extr-full-name-suffix-pattern))
1580 (mail-extr-skip-whitespace-backward)
1581 (setq suffix-flag (point))
1582 (if (eq ?, (following-char))
1583 (forward-char 1)
1584 (insert ?,))
1585 ;; Enforce at least one space after comma
1586 (or (eq ?\ (following-char))
1587 (insert ?\ ))
1588 (mail-extr-skip-whitespace-forward)
1589 (cond ((memq (following-char) '(?j ?J ?s ?S))
1590 (capitalize-word 1)
1591 (if (eq (following-char) ?.)
1592 (forward-char 1)
1593 (insert ?.)))
1595 (upcase-word 1)))
1596 (setq word-found-flag t)
1597 (setq name-done-flag t))
1599 ;; Handle SCA names
1600 ((looking-at "MKA \\(.+\\)") ; "Mundanely Known As"
1601 (goto-char (match-beginning 1))
1602 (narrow-to-region (point) (point-max))
1603 (setq begin-again-flag t))
1605 ;; Check for initial last name followed by comma
1606 ((and (eq ?, (following-char))
1607 (eq word-count 1))
1608 (forward-char 1)
1609 (setq last-name-comma-flag t)
1610 (or (eq ?\ (following-char))
1611 (insert ?\ )))
1613 ;; Stop before trailing comma-separated comment
1614 ;; THIS CASE MUST BE AFTER THE PRECEDING CASES.
1615 ;; *** This case is redundant???
1616 ;;((eq ?, (following-char))
1617 ;; (setq name-done-flag t))
1619 ;; Delete parenthesized/quoted comment/nickname
1620 ((memq (following-char) '(?\( ?\{ ?\[ ?\" ?\' ?\`))
1621 (setq cbeg (point))
1622 (set-syntax-table mail-extr-address-text-comment-syntax-table)
1623 (cond ((memq (following-char) '(?\' ?\`))
1624 (or (search-forward "'" nil t
1625 (if (eq ?\' (following-char)) 2 1))
1626 (delete-char 1)))
1628 (or (mail-extr-safe-move-sexp 1)
1629 (goto-char (point-max)))))
1630 (set-syntax-table mail-extr-address-text-syntax-table)
1631 (setq cend (point))
1632 (cond
1633 ;; Handle case of entire name being quoted
1634 ((and (eq word-count 0)
1635 (looking-at " *\\'")
1636 (>= (- cend cbeg) 2))
1637 (narrow-to-region (1+ cbeg) (1- cend))
1638 (goto-char (point-min)))
1640 ;; Handle case of quoted initial
1641 (if (and (or (= 3 (- cend cbeg))
1642 (and (= 4 (- cend cbeg))
1643 (eq ?. (char-after (+ 2 cbeg)))))
1644 (not (looking-at " *\\'")))
1645 (setq initial (char-after (1+ cbeg)))
1646 (setq initial nil))
1647 (delete-region cbeg cend)
1648 (if initial
1649 (insert initial ". ")))))
1651 ;; Handle *Stupid* VMS date stamps
1652 ((looking-at mail-extr-stupid-vms-date-stamp-pattern)
1653 (replace-match "" t))
1655 ;; Handle Chinese characters.
1656 ((looking-at mail-extr-hz-embedded-gb-encoded-chinese-pattern)
1657 (goto-char (match-end 0))
1658 (setq word-found-flag t))
1660 ;; Skip initial garbage characters.
1661 ;; THIS CASE MUST BE AFTER THE PRECEDING CASES.
1662 ((and (eq word-count 0)
1663 (looking-at mail-extr-leading-garbage))
1664 (goto-char (match-end 0))
1665 ;; *** Skip backward over these???
1666 ;; (skip-chars-backward "& \"")
1667 (narrow-to-region (point) (point-max)))
1669 ;; Various stopping points
1670 ((or
1672 ;; Stop before ALL CAPS acronyms, if preceded by mixed-case
1673 ;; words. Example: XT-DEM.
1674 (and (>= word-count 2)
1675 mixed-case-flag
1676 (looking-at mail-extr-weird-acronym-pattern)
1677 (not (looking-at mail-extr-roman-numeral-pattern)))
1679 ;; Stop before trailing alternative address
1680 (looking-at mail-extr-alternative-address-pattern)
1682 ;; Stop before trailing comment not introduced by comma
1683 ;; THIS CASE MUST BE AFTER AN EARLIER CASE.
1684 (looking-at mail-extr-trailing-comment-start-pattern)
1686 ;; Stop before telephone numbers
1687 (and (>= word-count 1)
1688 (looking-at mail-extr-telephone-extension-pattern)))
1689 (setq name-done-flag t))
1691 ;; Delete ham radio call signs
1692 ((looking-at mail-extr-ham-call-sign-pattern)
1693 (delete-region (match-beginning 0) (match-end 0)))
1695 ;; Fixup initials
1696 ((looking-at mail-extr-initial-pattern)
1697 (or (eq (following-char) (upcase (following-char)))
1698 (setq lower-case-flag t))
1699 (forward-char 1)
1700 (if (eq ?. (following-char))
1701 (forward-char 1)
1702 (insert ?.))
1703 (or (eq ?\ (following-char))
1704 (insert ?\ ))
1705 (setq word-found-flag t))
1707 ;; Handle BITNET LISTSERV list names.
1708 ((and (eq word-count 0)
1709 (looking-at mail-extr-listserv-list-name-pattern))
1710 (narrow-to-region (match-beginning 1) (match-end 1))
1711 (setq word-found-flag t)
1712 (setq name-done-flag t))
1714 ;; Handle & substitution, when & is last and is not first.
1715 ((and (> word-count 0)
1716 (eq ?\ (preceding-char))
1717 (eq (following-char) ?&)
1718 (eq (1+ (point)) (point-max)))
1719 (delete-char 1)
1720 (capitalize-region
1721 (point)
1722 (progn
1723 (insert-buffer-substring canonicalization-buffer
1724 mbox-beg mbox-end)
1725 (point)))
1726 (setq disable-initial-guessing-flag t)
1727 (setq word-found-flag t))
1729 ;; Handle & between names, as in "Bob & Susie".
1730 ((and (> word-count 0) (eq (following-char) ?\&))
1731 (setq name-beg (point))
1732 (setq name-end (1+ name-beg))
1733 (setq word-found-flag t)
1734 (goto-char name-end))
1736 ;; Regular name words
1737 ((looking-at mail-extr-name-pattern)
1738 (setq name-beg (point))
1739 (setq name-end (match-end 0))
1741 ;; Certain words will be dropped if they are at the end.
1742 (and (>= word-count 2)
1743 (not lower-case-flag)
1745 ;; Trailing 4-or-more letter lowercase words preceded by
1746 ;; mixed case or uppercase words will be dropped.
1747 (looking-at "[[:lower:]]\\{4,\\}[ \t]*\\'")
1748 ;; Drop a trailing word which is terminated with a period.
1749 (eq ?. (char-after (1- name-end))))
1750 (setq drop-this-word-if-trailing-flag t))
1752 ;; Set the flags that indicate whether we have seen a lowercase
1753 ;; word, a mixed case word, and an uppercase word.
1754 (if (re-search-forward "[[:lower:]]" name-end t)
1755 (if (progn
1756 (goto-char name-beg)
1757 (re-search-forward "[[:upper:]]" name-end t))
1758 (setq mixed-case-flag t)
1759 (setq lower-case-flag t))
1760 ;; (setq upper-case-flag t)
1763 (goto-char name-end)
1764 (setq word-found-flag t))
1766 ;; Allow a number as a word, if it doesn't mean anything else.
1767 ((looking-at "[0-9]+\\>")
1768 (setq name-beg (point))
1769 (setq name-end (match-end 0))
1770 (goto-char name-end)
1771 (setq word-found-flag t))
1774 (setq name-done-flag t)
1777 ;; Count any word that we skipped over.
1778 (if word-found-flag
1779 (setq word-count (1+ word-count))))
1781 ;; If the last thing in the name is 2 or more periods, or one or more
1782 ;; other sentence terminators (but not a single period) then keep them
1783 ;; and the preceding word. This is for the benefit of whole sentences
1784 ;; in the name field: it's better behavior than dropping the last word
1785 ;; of the sentence...
1786 (if (and (not suffix-flag)
1787 (looking-at "\\(\\.+\\|[?!;:.][?!;:.]+\\|[?!;:][?!;:.]*\\)\\'"))
1788 (goto-char (setq suffix-flag (point-max))))
1790 ;; Drop everything after point and certain trailing words.
1791 (narrow-to-region (point-min)
1792 (or (and drop-last-word-if-trailing-flag
1793 last-word-beg)
1794 (point)))
1796 ;; Xerox's mailers SUCK!!!!!!
1797 ;; We simply refuse to believe that any last name is PARC or ADOC.
1798 ;; If it looks like that is the last name, that there is no meaningful
1799 ;; here at all. Actually I guess it would be best to map patterns
1800 ;; like foo.hoser@xerox.com into foo@hoser.xerox.com, but I don't
1801 ;; actually know that that is what's going on.
1802 (unless suffix-flag
1803 (goto-char (point-min))
1804 (let ((case-fold-search t))
1805 (if (looking-at "[-A-Za-z_]+[. ]\\(PARC\\|ADOC\\)\\'")
1806 (erase-buffer))))
1808 ;; If last name first put it at end (but before suffix)
1809 (when last-name-comma-flag
1810 (goto-char (point-min))
1811 (search-forward ",")
1812 (setq name-end (1- (point)))
1813 (goto-char (or suffix-flag (point-max)))
1814 (or (eq ?\ (preceding-char))
1815 (insert ?\ ))
1816 (insert-buffer-substring (current-buffer) (point-min) name-end)
1817 (goto-char name-end)
1818 (skip-chars-forward "\t ,")
1819 (narrow-to-region (point) (point-max)))
1821 ;; Delete leading and trailing junk characters.
1822 ;; *** This is probably completely unneeded now.
1823 ;;(goto-char (point-max))
1824 ;;(skip-chars-backward mail-extr-non-end-name-chars)
1825 ;;(if (eq ?. (following-char))
1826 ;; (forward-char 1))
1827 ;;(narrow-to-region (point)
1828 ;; (progn
1829 ;; (goto-char (point-min))
1830 ;; (skip-chars-forward mail-extr-non-begin-name-chars)
1831 ;; (point)))
1833 ;; Compress whitespace
1834 (goto-char (point-min))
1835 (while (re-search-forward "[ \t\n]+" nil t)
1836 (replace-match (if (eobp) "" " ") t))
1837 ))))
1841 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1843 ;; Table of top-level domain names.
1845 ;; This is used during address canonicalization; be careful of format changes.
1846 ;; Keep in mind that the country abbreviations follow ISO-3166. There is
1847 ;; a U.S. FIPS that specifies a different set of two-letter country
1848 ;; abbreviations.
1850 ;; Updated by the RIPE Network Coordination Centre.
1852 ;; Source: ISO 3166 Maintenance Agency
1853 ;; http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1-semic.txt
1854 ;; http://www.iana.org/domain-names.htm
1855 ;; http://www.iana.org/cctld/cctld-whois.htm
1856 ;; Latest change: 2007/11/15
1858 (defconst mail-extr-all-top-level-domains
1859 (let ((ob (make-vector 739 0)))
1860 (mapc
1861 (lambda (x)
1862 (put (intern (downcase (car x)) ob)
1863 'domain-name
1864 (if (nth 2 x)
1865 (format (nth 2 x) (nth 1 x))
1866 (nth 1 x))))
1868 ;; ISO 3166 codes:
1869 ("ac" "Ascension Island")
1870 ("ad" "Andorra")
1871 ("ae" "United Arab Emirates")
1872 ("af" "Afghanistan")
1873 ("ag" "Antigua and Barbuda")
1874 ("ai" "Anguilla")
1875 ("al" "Albania")
1876 ("am" "Armenia")
1877 ("an" "Netherlands Antilles")
1878 ("ao" "Angola")
1879 ("aq" "Antarctica") ; continent
1880 ("ar" "Argentina" "Argentine Republic")
1881 ("as" "American Samoa")
1882 ("at" "Austria" "The Republic of %s")
1883 ("au" "Australia")
1884 ("aw" "Aruba")
1885 ("ax" "Aland Islands")
1886 ("az" "Azerbaijan")
1887 ("ba" "Bosnia-Herzegovina")
1888 ("bb" "Barbados")
1889 ("bd" "Bangladesh")
1890 ("be" "Belgium" "The Kingdom of %s")
1891 ("bf" "Burkina Faso")
1892 ("bg" "Bulgaria")
1893 ("bh" "Bahrain")
1894 ("bi" "Burundi")
1895 ("bj" "Benin")
1896 ("bl" "Saint Barthelemy")
1897 ("bm" "Bermuda")
1898 ("bn" "Brunei Darussalam")
1899 ("bo" "Bolivia" "Republic of %s")
1900 ("br" "Brazil" "The Federative Republic of %s")
1901 ("bs" "Bahamas")
1902 ("bt" "Bhutan")
1903 ("bv" "Bouvet Island")
1904 ("bw" "Botswana")
1905 ("by" "Belarus")
1906 ("bz" "Belize")
1907 ("ca" "Canada")
1908 ("cc" "Cocos (Keeling) Islands")
1909 ("cd" "Congo" "The Democratic Republic of the %s")
1910 ("cf" "Central African Republic")
1911 ("cg" "Congo")
1912 ("ch" "Switzerland" "The Swiss Confederation")
1913 ("ci" "Ivory Coast") ; Cote D'ivoire
1914 ("ck" "Cook Islands")
1915 ("cl" "Chile" "The Republic of %s")
1916 ("cm" "Cameroon") ; In .fr domain
1917 ("cn" "China" "The People's Republic of %s")
1918 ("co" "Colombia")
1919 ("cr" "Costa Rica" "The Republic of %s")
1920 ("cu" "Cuba")
1921 ("cv" "Cape Verde")
1922 ("cx" "Christmas Island")
1923 ("cy" "Cyprus")
1924 ("cz" "Czech Republic")
1925 ("de" "Germany")
1926 ("dj" "Djibouti")
1927 ("dk" "Denmark")
1928 ("dm" "Dominica")
1929 ("do" "Dominican Republic" "The %s")
1930 ("dz" "Algeria")
1931 ("ec" "Ecuador" "The Republic of %s")
1932 ("ee" "Estonia")
1933 ("eg" "Egypt" "The Arab Republic of %s")
1934 ("eh" "Western Sahara")
1935 ("er" "Eritrea")
1936 ("es" "Spain" "The Kingdom of %s")
1937 ("et" "Ethiopia")
1938 ("eu" "European Union")
1939 ("fi" "Finland" "The Republic of %s")
1940 ("fj" "Fiji")
1941 ("fk" "Falkland Islands (Malvinas)")
1942 ("fm" "Micronesia" "Federated States of %s")
1943 ("fo" "Faroe Islands")
1944 ("fr" "France")
1945 ("ga" "Gabon")
1946 ("gb" "United Kingdom")
1947 ("gd" "Grenada")
1948 ("ge" "Georgia")
1949 ("gf" "French Guiana")
1950 ("gg" "Guernsey")
1951 ("gh" "Ghana")
1952 ("gi" "Gibraltar")
1953 ("gl" "Greenland")
1954 ("gm" "Gambia")
1955 ("gn" "Guinea")
1956 ("gp" "Guadeloupe (Fr.)")
1957 ("gq" "Equatorial Guinea")
1958 ("gr" "Greece" "The Hellenic Republic (%s)")
1959 ("gs" "South Georgia and The South Sandwich Islands")
1960 ("gt" "Guatemala")
1961 ("gu" "Guam (U.S.)")
1962 ("gw" "Guinea-Bissau")
1963 ("gy" "Guyana")
1964 ("hk" "Hong Kong")
1965 ("hm" "Heard Island and Mcdonald Islands")
1966 ("hn" "Honduras")
1967 ("hr" "Croatia" "Croatia (Hrvatska)")
1968 ("ht" "Haiti")
1969 ("hu" "Hungary" "The Hungarian Republic")
1970 ("id" "Indonesia")
1971 ("ie" "Ireland")
1972 ("il" "Israel" "The State of %s")
1973 ("im" "Isle of Man" "The %s") ; NOT in ISO 3166-1 of 2001-02-26
1974 ("in" "India" "The Republic of %s")
1975 ("io" "British Indian Ocean Territory")
1976 ("iq" "Iraq")
1977 ("ir" "Iran" "Islamic Republic of %s")
1978 ("is" "Iceland" "The Republic of %s")
1979 ("it" "Italy" "The Italian Republic")
1980 ("je" "Jersey")
1981 ("jm" "Jamaica")
1982 ("jo" "Jordan")
1983 ("jp" "Japan")
1984 ("ke" "Kenya")
1985 ("kg" "Kyrgyzstan")
1986 ("kh" "Cambodia")
1987 ("ki" "Kiribati")
1988 ("km" "Comoros")
1989 ("kn" "Saint Kitts and Nevis")
1990 ("kp" "Korea (North)" "Democratic People's Republic of Korea")
1991 ("kr" "Korea (South)" "Republic of Korea")
1992 ("kw" "Kuwait")
1993 ("ky" "Cayman Islands")
1994 ("kz" "Kazakhstan")
1995 ("la" "Lao People's Democratic Republic")
1996 ("lb" "Lebanon")
1997 ("lc" "Saint Lucia")
1998 ("li" "Liechtenstein")
1999 ("lk" "Sri Lanka" "The Democratic Socialist Republic of %s")
2000 ("lr" "Liberia")
2001 ("ls" "Lesotho")
2002 ("lt" "Lithuania")
2003 ("lu" "Luxembourg")
2004 ("lv" "Latvia")
2005 ("ly" "Libyan Arab Jamahiriya")
2006 ("ma" "Morocco")
2007 ("mc" "Monaco")
2008 ("md" "Moldova" "The Republic of %s")
2009 ("me" "Montenegro")
2010 ("mf" "Saint Martin (French part)")
2011 ("mg" "Madagascar")
2012 ("mh" "Marshall Islands")
2013 ("mk" "Macedonia" "The Former Yugoslav Republic of %s")
2014 ("ml" "Mali")
2015 ("mm" "Myanmar")
2016 ("mn" "Mongolia")
2017 ("mo" "Macao")
2018 ("mp" "Northern Mariana Islands")
2019 ("mq" "Martinique")
2020 ("mr" "Mauritania")
2021 ("ms" "Montserrat")
2022 ("mt" "Malta")
2023 ("mu" "Mauritius")
2024 ("mv" "Maldives")
2025 ("mw" "Malawi")
2026 ("mx" "Mexico" "The United Mexican States")
2027 ("my" "Malaysia")
2028 ("mz" "Mozambique")
2029 ("na" "Namibia")
2030 ("nc" "New Caledonia (Fr.)")
2031 ("ne" "Niger") ; In .fr domain
2032 ("nf" "Norfolk Island")
2033 ("ng" "Nigeria")
2034 ("ni" "Nicaragua" "The Republic of %s")
2035 ("nl" "Netherlands" "The Kingdom of the %s")
2036 ("no" "Norway" "The Kingdom of %s")
2037 ("np" "Nepal") ; Via .in domain
2038 ("nr" "Nauru")
2039 ("nu" "Niue")
2040 ("nz" "New Zealand")
2041 ("om" "Oman")
2042 ("pa" "Panama")
2043 ("pe" "Peru")
2044 ("pf" "French Polynesia")
2045 ("pg" "Papua New Guinea")
2046 ("ph" "Philippines" "The Republic of the %s")
2047 ("pk" "Pakistan")
2048 ("pl" "Poland")
2049 ("pm" "Saint Pierre and Miquelon")
2050 ("pn" "Pitcairn")
2051 ("pr" "Puerto Rico (U.S.)")
2052 ("ps" "Palestinian Territory, Occupied")
2053 ("pt" "Portugal" "The Portuguese Republic")
2054 ("pw" "Palau")
2055 ("py" "Paraguay")
2056 ("qa" "Qatar")
2057 ("re" "Reunion (Fr.)") ; In .fr domain
2058 ("ro" "Romania")
2059 ("rs" "Serbia")
2060 ("ru" "Russia" "Russian Federation")
2061 ("rw" "Rwanda")
2062 ("sa" "Saudi Arabia")
2063 ("sb" "Solomon Islands")
2064 ("sc" "Seychelles")
2065 ("sd" "Sudan")
2066 ("se" "Sweden" "The Kingdom of %s")
2067 ("sg" "Singapore" "The Republic of %s")
2068 ("sh" "Saint Helena")
2069 ("si" "Slovenia")
2070 ("sj" "Svalbard and Jan Mayen") ; In .no domain
2071 ("sk" "Slovakia" "The Slovak Republic")
2072 ("sl" "Sierra Leone")
2073 ("sm" "San Marino")
2074 ("sn" "Senegal")
2075 ("so" "Somalia")
2076 ("sr" "Suriname")
2077 ("st" "Sao Tome and Principe")
2078 ("su" "U.S.S.R." "The Union of Soviet Socialist Republics")
2079 ("sv" "El Salvador")
2080 ("sy" "Syrian Arab Republic")
2081 ("sz" "Swaziland")
2082 ("tc" "Turks and Caicos Islands")
2083 ("td" "Chad")
2084 ("tf" "French Southern Territories")
2085 ("tg" "Togo")
2086 ("th" "Thailand" "The Kingdom of %s")
2087 ("tj" "Tajikistan")
2088 ("tk" "Tokelau")
2089 ("tl" "East Timor")
2090 ("tm" "Turkmenistan")
2091 ("tn" "Tunisia")
2092 ("to" "Tonga")
2093 ("tp" "East Timor")
2094 ("tr" "Turkey" "The Republic of %s")
2095 ("tt" "Trinidad and Tobago")
2096 ("tv" "Tuvalu")
2097 ("tw" "Taiwan" "%s, Province of China")
2098 ("tz" "Tanzania" "United Republic of %s")
2099 ("ua" "Ukraine")
2100 ("ug" "Uganda")
2101 ("uk" "United Kingdom" "The %s of Great Britain and Northern Ireland")
2102 ("um" "United States Minor Outlying Islands")
2103 ("us" "United States" "The %s of America")
2104 ("uy" "Uruguay" "The Eastern Republic of %s")
2105 ("uz" "Uzbekistan")
2106 ("va" "Holy See (Vatican City State)")
2107 ("vc" "Saint Vincent and the Grenadines")
2108 ("ve" "Venezuela" "The Republic of %s")
2109 ("vg" "Virgin Islands, British")
2110 ("vi" "Virgin Islands, U.S.")
2111 ("vn" "Vietnam")
2112 ("vu" "Vanuatu")
2113 ("wf" "Wallis and Futuna")
2114 ("ws" "Samoa")
2115 ("ye" "Yemen")
2116 ("yt" "Mayotte")
2117 ("yu" "Yugoslavia" "Yugoslavia, AKA Serbia-Montenegro")
2118 ("za" "South Africa" "The Republic of %s")
2119 ("zm" "Zambia")
2120 ("zw" "Zimbabwe" "Republic of %s")
2121 ;; Generic Domains:
2122 ("aero" t "Air Transport Industry")
2123 ("asia" t "Pan-Asia and Asia Pacific community")
2124 ("biz" t "Businesses")
2125 ("cat" t "Catalan language and culture")
2126 ("com" t "Commercial")
2127 ("coop" t "Cooperative Associations")
2128 ("info" t "Info")
2129 ("jobs" t "Employment")
2130 ("mobi" t "Mobile products")
2131 ("museum" t "Museums")
2132 ("name" t "Individuals")
2133 ("net" t "Network")
2134 ("org" t "Non-profit Organization")
2135 ("pro" t "Credentialed professionals")
2136 ("tel" t "Contact data")
2137 ("travel" t "Travel industry")
2138 ;;("bitnet" t "Because It's Time NET")
2139 ("gov" t "United States Government")
2140 ("edu" t "Educational")
2141 ("mil" t "United States Military")
2142 ("int" t "International Treaties")
2143 ;;("nato" t "North Atlantic Treaty Organization")
2144 ("uucp" t "Unix to Unix CoPy")
2145 ;; Infrastructure Domains:
2146 ("arpa" t "Advanced Research Projects Agency (U.S. DoD)")
2148 ob))
2150 ;;;###autoload
2151 (defun what-domain (domain)
2152 "Convert mail domain DOMAIN to the country it corresponds to."
2153 (interactive
2154 (let ((completion-ignore-case t))
2155 (list (completing-read "Domain: "
2156 mail-extr-all-top-level-domains nil t))))
2157 (or (setq domain (intern-soft (downcase domain)
2158 mail-extr-all-top-level-domains))
2159 (error "No such domain"))
2160 (message "%s: %s" (upcase (symbol-name domain)) (get domain 'domain-name)))
2163 ;(let ((all nil))
2164 ; (mapatoms #'(lambda (x)
2165 ; (if (and (boundp x)
2166 ; (string-match "^mail-extr-" (symbol-name x)))
2167 ; (setq all (cons x all)))))
2168 ; (setq all (sort all #'string-lessp))
2169 ; (cons 'setq
2170 ; (apply 'nconc (mapcar #'(lambda (x)
2171 ; (list x (symbol-value x)))
2172 ; all))))
2175 (provide 'mail-extr)
2177 ;; arch-tag: 7785fade-1073-4ed6-b4f6-28db34a7982d
2178 ;;; mail-extr.el ends here