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>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; The entry point of this code is
29 ;; mail-extract-address-components: (address &optional all)
31 ;; Given an RFC-822 ADDRESS, extract full name and canonical address.
32 ;; Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
33 ;; If no name can be extracted, FULL-NAME will be nil.
34 ;; ADDRESS may be a string or a buffer. If it is a buffer, the visible
35 ;; (narrowed) portion of the buffer will be interpreted as the address.
36 ;; (This feature exists so that the clever caller might be able to avoid
38 ;; If ADDRESS contains more than one RFC-822 address, only the first is
41 ;; If ALL is non-nil, that means return info about all the addresses
42 ;; that are found in ADDRESS. The value is a list of elements of
43 ;; the form (FULL-NAME CANONICAL-ADDRESS), one per address.
45 ;; This code is more correct (and more heuristic) parser than the code in
46 ;; rfc822.el. And despite its size, it's fairly fast.
48 ;; There are two main benefits:
50 ;; 1. Higher probability of getting the correct full name for a human than
51 ;; any other package we know of. (On the other hand, it will cheerfully
52 ;; mangle non-human names/comments.)
53 ;; 2. Address part is put in a canonical form.
55 ;; The interface is not yet carved in stone; please give us suggestions.
57 ;; We have an extensive test-case collection of funny addresses if you want to
58 ;; work with the code. Developing this code requires frequent testing to
59 ;; make sure you're not breaking functionality. The test cases aren't included
60 ;; because they are over 100K.
62 ;; If you find an address that mail-extr fails on, please send it to the
63 ;; maintainer along with what you think the correct results should be. We do
64 ;; not consider it a bug if mail-extr mangles a comment that does not
65 ;; correspond to a real human full name, although we would prefer that
66 ;; mail-extr would return the comment as-is.
70 ;; * Full name handling:
72 ;; * knows where full names can be found in an address.
73 ;; * avoids using empty comments and quoted text.
74 ;; * extracts full names from mailbox names.
75 ;; * recognizes common formats for comments after a full name.
76 ;; * puts a period and a space after each initial.
77 ;; * understands & referring to the mailbox name, capitalized.
78 ;; * strips name prefixes like "Prof.", etc.
79 ;; * understands what characters can occur in names (not just letters).
80 ;; * figures out middle initial from mailbox name.
81 ;; * removes funny nicknames.
82 ;; * keeps suffixes such as Jr., Sr., III, etc.
83 ;; * reorders "Last, First" type names.
85 ;; * Address handling:
87 ;; * parses rfc822 quoted text, comments, and domain literals.
88 ;; * parses rfc822 multi-line headers.
89 ;; * does something reasonable with rfc822 GROUP addresses.
90 ;; * handles many rfc822 noncompliant and garbage addresses.
91 ;; * canonicalizes addresses (after stripping comments/phrases outside <>).
92 ;; * converts ! addresses into .UUCP and %-style addresses.
93 ;; * converts rfc822 ROUTE addresses to %-style addresses.
94 ;; * truncates %-style addresses at leftmost fully qualified domain name.
95 ;; * handles local relative precedence of ! vs. % and @ (untested).
97 ;; It does almost no string creation. It primarily uses the built-in
98 ;; parsing routines with the appropriate syntax tables. This should
99 ;; result in greater speed.
103 ;; * handle all test cases. (This will take forever.)
104 ;; * software to pick the correct header to use (eg., "Senders-Name:").
105 ;; * multiple addresses in the "From:" header (almost all of the necessary
107 ;; * flag to not treat `,' as an address separator. (This is useful when
108 ;; there is a "From:" header but no "Sender:" header, because then there
109 ;; is only allowed to be one address.)
110 ;; * mailbox name does not necessarily contain full name.
111 ;; * fixing capitalization when it's all upper or lowercase. (Hard!)
112 ;; * some of the domain literal handling is missing. (But I've never even
113 ;; seen one of these in a mail address, so maybe no big deal.)
114 ;; * arrange to have syntax tables byte-compiled.
116 ;; * delete unused variables.
117 ;; * arrange for testing with different relative precedences of ! vs. @
119 ;; * insert documentation strings!
120 ;; * handle X.400-gatewayed addresses according to RFC 1148.
124 ;; Thu Feb 17 17:57:33 1994 Jamie Zawinski (jwz@lucid.com)
126 ;; * merged with jbw's latest version
128 ;; Wed Feb 9 21:56:27 1994 Jamie Zawinski (jwz@lucid.com)
130 ;; * high-bit chars in comments weren't treated as word syntax
132 ;; Sat Feb 5 03:13:40 1994 Jamie Zawinski (jwz@lucid.com)
134 ;; * call replace-match with fixed-case arg
136 ;; Thu Dec 16 21:56:45 1993 Jamie Zawinski (jwz@lucid.com)
138 ;; * some more cleanup, doc, added provide
140 ;; Tue Mar 23 21:23:18 1993 Joe Wells (jbw at csd.bu.edu)
142 ;; * Made mail-full-name-prefixes a user-customizable variable.
143 ;; Allow passing the address as a buffer as well as a string.
144 ;; Allow [ and ] as name characters (Finnish character set).
146 ;; Mon Mar 22 21:20:56 1993 Joe Wells (jbw at bigbird.bu.edu)
148 ;; * Handle "null" addresses. Handle = used for spacing in mailbox
149 ;; name. Fix bug in handling of ROUTE-ADDR-type addresses that are
150 ;; missing their brackets. Handle uppercase "JR". Extract full
151 ;; names from X.400 addresses encoded in RFC-822. Fix bug in
152 ;; handling of multiple addresses where first has trailing comment.
153 ;; Handle more kinds of telephone extension lead-ins.
155 ;; Mon Mar 22 20:16:57 1993 Joe Wells (jbw at bigbird.bu.edu)
157 ;; * Handle HZ encoding for embedding GB encoded chinese characters.
159 ;; Mon Mar 22 00:46:12 1993 Joe Wells (jbw at bigbird.bu.edu)
161 ;; * Fixed too broad matching of ham radio call signs. Fixed bug in
162 ;; handling an unmatched ' in a name string. Enhanced recognition
163 ;; of when . in the mailbox name terminates the name portion.
164 ;; Narrowed conversion of . to space to only the necessary
165 ;; situation. Deal with VMS's stupid date stamps. Handle a unique
166 ;; way of introducing an alternate address. Fixed spacing bug I
167 ;; introduced in switching last name order. Fixed bug in handling
168 ;; address with ! and % but no @. Narrowed the cases in which
169 ;; certain trailing words are discarded.
171 ;; Sun Mar 21 21:41:06 1993 Joe Wells (jbw at bigbird.bu.edu)
173 ;; * Fixed bugs in handling GROUP addresses. Certain words in the
174 ;; middle of a name no longer terminate it. Handle LISTSERV list
175 ;; names. Ignore comment field containing mailbox name.
177 ;; Sun Mar 21 14:39:38 1993 Joe Wells (jbw at bigbird.bu.edu)
179 ;; * Moved variant-method code back into main function. Handle
180 ;; underscores as spaces in comments. Handle leading nickname. Add
181 ;; flag to ignore single-word names. Other changes.
183 ;; Mon Feb 1 22:23:31 1993 Joe Wells (jbw at bigbird.bu.edu)
185 ;; * Added in changes by Rod Whitby and Jamie Zawinski. This
186 ;; includes the flag mail-extr-guess-middle-initial and the fix for
187 ;; handling multiple addresses correctly. (Whitby just changed
190 ;; Mon Apr 6 23:59:09 1992 Joe Wells (jbw at bigbird.bu.edu)
192 ;; * Cleaned up some more. Release version 1.0 to world.
194 ;; Sun Apr 5 19:39:08 1992 Joe Wells (jbw at bigbird.bu.edu)
196 ;; * Cleaned up full name extraction extensively.
198 ;; Sun Feb 2 14:45:24 1992 Joe Wells (jbw at bigbird.bu.edu)
200 ;; * Total rewrite. Integrated mail-canonicalize-address into
201 ;; mail-extract-address-components. Now handles GROUP addresses more
202 ;; or less correctly. Better handling of lots of different cases.
204 ;; Fri Jun 14 19:39:50 1991
210 (defgroup mail-extr nil
211 "Extract full name and address from RFC 822 mail header."
215 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
217 ;; User configuration variable definitions.
220 (defcustom mail-extr-guess-middle-initial nil
221 "*Whether to try to guess middle initial from mail address.
222 If true, then when we see an address like \"John Smith <jqs@host.com>\"
223 we will assume that \"John Q. Smith\" is the fellow's name."
227 (defcustom mail-extr-ignore-single-names nil
228 "*Whether to ignore a name that is just a single word.
229 If true, then when we see an address like \"Idiot <dumb@stupid.com>\"
230 we will act as though we couldn't find a full name in the address."
235 (defcustom mail-extr-ignore-realname-equals-mailbox-name t
236 "*Whether to ignore a name that is equal to the mailbox name.
237 If true, then when the address is like \"Single <single@address.com>\"
238 we will act as though we couldn't find a full name in the address."
242 ;; Matches a leading title that is not part of the name (does not
243 ;; contribute to uniquely identifying the person).
244 (defcustom mail-extr-full-name-prefixes
246 "\\(Prof\\|D[Rr]\\|Mrs?\\|Rev\\|Rabbi\\|SysOp\\|LCDR\\)\\.?[ \t\n]")
247 "*Matches prefixes to the full name that identify a person's position.
248 These are stripped from the full name because they do not contribute to
249 uniquely identifying the person."
253 (defcustom mail-extr-
@-binds-tighter-than-
! nil
254 "*Whether the local mail transport agent looks at ! before @."
258 (defcustom mail-extr-mangle-uucp nil
259 "*Whether to throw away information in UUCP addresses
260 by translating things like \"foo!bar!baz@host\" into \"baz@bar.UUCP\"."
264 ;;----------------------------------------------------------------------
265 ;; what orderings are meaningful?????
266 ;;(defvar mail-operator-precedence-list '(?! ?% ?@))
267 ;; Right operand of a % or a @ must be a domain name, period. No other
268 ;; operators allowed. Left operand of a @ is an address relative to that
271 ;; Left operand of a ! must be a domain name. Right operand is an
272 ;; arbitrary address.
273 ;;----------------------------------------------------------------------
277 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
279 ;; Constant definitions.
282 ;; Any character that can occur in a name, not counting characters that
283 ;; separate parts of a multipart name (hyphen and period).
284 ;; Yes, there are weird people with digits in their names.
285 ;; You will also notice the consideration for the
286 ;; Swedish/Finnish/Norwegian character set.
287 (defconst mail-extr-all-letters-but-separators
288 (purecopy "][[:alnum:]{|}'~`"))
290 ;; Any character that can occur in a name in an RFC822 address including
291 ;; the separator (hyphen and possibly period) for multipart names.
292 ;; #### should . be in here?
293 (defconst mail-extr-all-letters
294 (purecopy (concat mail-extr-all-letters-but-separators
"---")))
296 ;; Any character that can start a name.
297 ;; Keep this set as minimal as possible.
298 (defconst mail-extr-first-letters
(purecopy "[:alpha:]"))
300 ;; Any character that can end a name.
301 ;; Keep this set as minimal as possible.
302 (defconst mail-extr-last-letters
(purecopy "[:alpha:]`'."))
304 (defconst mail-extr-leading-garbage
"\\W+")
306 ;; (defconst mail-extr-non-name-chars
307 ;; (purecopy (concat "^" mail-extr-all-letters ".")))
308 ;; (defconst mail-extr-non-begin-name-chars
309 ;; (purecopy (concat "^" mail-extr-first-letters)))
310 ;; (defconst mail-extr-non-end-name-chars
311 ;; (purecopy (concat "^" mail-extr-last-letters)))
313 ;; Matches an initial not followed by both a period and a space.
314 ;; (defconst mail-extr-bad-initials-pattern
316 ;; (format "\\(\\([^%s]\\|\\`\\)[%s]\\)\\(\\.\\([^ ]\\)\\| \\|\\([^%s .]\\)\\|\\'\\)"
317 ;; mail-extr-all-letters mail-extr-first-letters mail-extr-all-letters)))
319 ;; Matches periods used instead of spaces. Must not match the period
320 ;; following an initial.
321 (defconst mail-extr-bad-dot-pattern
323 (format "\\([%s][%s]\\)\\.+\\([%s]\\)"
324 mail-extr-all-letters
325 mail-extr-last-letters
326 mail-extr-first-letters
)))
328 ;; Matches an embedded or leading nickname that should be removed.
329 ;; (defconst mail-extr-nickname-pattern
331 ;; (format "\\([ .]\\|\\`\\)[\"'`\[\(]\\([ .%s]+\\)[\]\"'\)] "
332 ;; mail-extr-all-letters)))
334 ;; Matches the occurrence of a generational name suffix, and the last
335 ;; character of the preceding name. This is important because we want to
336 ;; keep such suffixes: they help to uniquely identify the person.
337 ;; *** Perhaps this should be a user-customizable variable. However, the
338 ;; *** regular expression is fairly tricky to alter, so maybe not.
339 (defconst mail-extr-full-name-suffix-pattern
342 "\\(,? ?\\([JjSs][Rr]\\.?\\|V?I+V?\\)\\)\\([^%s]\\([^%s]\\|\\'\\)\\|\\'\\)"
343 mail-extr-all-letters mail-extr-all-letters
)))
345 (defconst mail-extr-roman-numeral-pattern
(purecopy "V?I+V?\\b"))
347 ;; Matches a trailing uppercase (with other characters possible) acronym.
348 ;; Must not match a trailing uppercase last name or trailing initial
349 (defconst mail-extr-weird-acronym-pattern
350 (purecopy "\\([A-Z]+[-_/]\\|[A-Z][A-Z][A-Z]?\\b\\)"))
352 ;; Matches a mixed-case or lowercase name (not an initial).
353 ;; #### Match Latin1 lower case letters here too?
354 ;; (defconst mail-extr-mixed-case-name-pattern
357 ;; "\\b\\([a-z][%s]*[%s]\\|[%s][%s]*[a-z][%s]*[%s]\\|[%s][%s]*[a-z]\\)"
358 ;; mail-extr-all-letters mail-extr-last-letters
359 ;; mail-extr-first-letters mail-extr-all-letters mail-extr-all-letters
360 ;; mail-extr-last-letters mail-extr-first-letters mail-extr-all-letters)))
362 ;; Matches a trailing alternative address.
363 ;; #### Match Latin1 letters here too?
364 ;; #### Match _ before @ here too?
365 (defconst mail-extr-alternative-address-pattern
366 (purecopy "\\(aka *\\)?[a-zA-Z.]+[!@][a-zA-Z.]"))
368 ;; Matches a variety of trailing comments not including comma-delimited
370 (defconst mail-extr-trailing-comment-start-pattern
371 (purecopy " [-{]\\|--\\|[+@#></\;]"))
373 ;; Matches a name (not an initial).
374 ;; This doesn't force a word boundary at the end because sometimes a
375 ;; comment is separated by a `-' with no preceding space.
376 (defconst mail-extr-name-pattern
377 (purecopy (format "\\b[%s][%s]*[%s]"
378 mail-extr-first-letters
379 mail-extr-all-letters
380 mail-extr-last-letters
)))
382 (defconst mail-extr-initial-pattern
383 (purecopy (format "\\b[%s]\\([. ]\\|\\b\\)" mail-extr-first-letters
)))
385 ;; Matches a single name before a comma.
386 ;; (defconst mail-extr-last-name-first-pattern
387 ;; (purecopy (concat "\\`" mail-extr-name-pattern ",")))
389 ;; Matches telephone extensions.
390 (defconst mail-extr-telephone-extension-pattern
392 "\\(\\([Ee]xt\\|\\|[Tt]ph\\|[Tt]el\\|[Xx]\\).?\\)? *\\+?[0-9][- 0-9]+"))
394 ;; Matches ham radio call signs.
395 ;; Help from: Mat Maessen N2NJZ <maessm@rpi.edu>, Mark Feit
396 ;; <mark@era.com>, Michael Covington <mcovingt@ai.uga.edu>.
397 ;; Examples: DX504 DX515 K5MRU K8DHK KA9WGN KA9WGN KD3FU KD6EUI KD6HBW
398 ;; KE9TV KF0NV N1API N3FU N3GZE N3IGS N4KCC N7IKQ N9HHU W4YHF W6ANK WA2SUH
399 ;; WB7VZI N2NJZ NR3G KJ4KK AB4UM AL7NI KH6OH WN3KBT N4TMI W1A N0NZO
400 (defconst mail-extr-ham-call-sign-pattern
401 (purecopy "\\b\\(DX[0-9]+\\|[AKNW][A-Z]?[0-9][A-Z][A-Z]?[A-Z]?\\)"))
403 ;; Possible trailing suffixes: "\\(/\\(KT\\|A[AEG]\\|[R0-9]\\)\\)?"
404 ;; /KT == Temporary Technician (has CSC but not "real" license)
405 ;; /AA == Temporary Advanced
406 ;; /AE == Temporary Extra
407 ;; /AG == Temporary General
409 ;; /# == stations operating out of home district
410 ;; I don't include these in the regexp above because I can't imagine
411 ;; anyone putting them with their name in an e-mail address.
413 ;; Matches normal single-part name
414 (defconst mail-extr-normal-name-pattern
415 (purecopy (format "\\b[%s][%s]+[%s]"
416 mail-extr-first-letters
417 mail-extr-all-letters-but-separators
418 mail-extr-last-letters
)))
420 ;; Matches a single word name.
421 ;; (defconst mail-extr-one-name-pattern
422 ;; (purecopy (concat "\\`" mail-extr-normal-name-pattern "\\'")))
424 ;; Matches normal two names with missing middle initial
425 ;; The first name is not allowed to have a hyphen because this can cause
426 ;; false matches where the "middle initial" is actually the first letter
427 ;; of the second part of the first name.
428 (defconst mail-extr-two-name-pattern
430 (concat "\\`\\(" mail-extr-normal-name-pattern
431 "\\|" mail-extr-initial-pattern
432 "\\) +\\(" mail-extr-name-pattern
"\\)\\(,\\|\\'\\)")))
434 (defconst mail-extr-listserv-list-name-pattern
435 (purecopy "Multiple recipients of list \\([-A-Z]+\\)"))
437 (defconst mail-extr-stupid-vms-date-stamp-pattern
439 "[0-9][0-9]-[JFMASOND][aepuco][nbrylgptvc]-[0-9][0-9][0-9][0-9] [0-9]+ *"))
441 ;;; HZ -- GB (PRC Chinese character encoding) in ASCII embedding protocol
443 ;; In ASCII mode, a byte is interpreted as an ASCII character, unless a '~' is
444 ;; encountered. The character '~' is an escape character. By convention, it
445 ;; must be immediately followed ONLY by '~', '{' or '\n' (<LF>), with the
446 ;; following special meaning.
448 ;; o The escape sequence '~~' is interpreted as a '~'.
449 ;; o The escape-to-GB sequence '~{' switches the mode from ASCII to GB.
450 ;; o The escape sequence '~\n' is a line-continuation marker to be consumed
451 ;; with no output produced.
453 ;; In GB mode, characters are interpreted two bytes at a time as (pure) GB
454 ;; codes until the escape-from-GB code '~}' is read. This code switches the
455 ;; mode from GB back to ASCII. (Note that the escape-from-GB code '~}'
456 ;; ($7E7D) is outside the defined GB range.)
457 (defconst mail-extr-hz-embedded-gb-encoded-chinese-pattern
458 (purecopy "~{\\([^~].\\|~[^\}]\\)+~}"))
460 ;; The leading optional lowercase letters are for a bastardized version of
461 ;; the encoding, as is the optional nature of the final slash.
462 (defconst mail-extr-x400-encoded-address-pattern
463 (purecopy "[a-z]?[a-z]?\\(/[A-Za-z]+\\(\\.[A-Za-z]+\\)?=[^/]+\\)+/?\\'"))
465 (defconst mail-extr-x400-encoded-address-field-pattern-format
466 (purecopy "/%s=\\([^/]+\\)\\(/\\|\\'\\)"))
468 (defconst mail-extr-x400-encoded-address-surname-pattern
469 ;; S stands for Surname (family name).
471 (format mail-extr-x400-encoded-address-field-pattern-format
"[Ss]")))
473 (defconst mail-extr-x400-encoded-address-given-name-pattern
474 ;; G stands for Given name.
476 (format mail-extr-x400-encoded-address-field-pattern-format
"[Gg]")))
478 (defconst mail-extr-x400-encoded-address-full-name-pattern
479 ;; PN stands for Personal Name. When used it represents the combination
480 ;; of the G and S fields.
481 ;; "The one system I used having this field asked it with the prompt
482 ;; `Personal Name'. But they mapped it into G and S on outgoing real
483 ;; X.400 addresses. As they mapped G and S into PN on incoming..."
485 (format mail-extr-x400-encoded-address-field-pattern-format
"[Pp][Nn]")))
489 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
491 ;; Syntax tables used for quick parsing.
494 (defconst mail-extr-address-syntax-table
(make-syntax-table))
495 (defconst mail-extr-address-comment-syntax-table
(make-syntax-table))
496 (defconst mail-extr-address-domain-literal-syntax-table
(make-syntax-table))
497 (defconst mail-extr-address-text-comment-syntax-table
(make-syntax-table))
498 (defconst mail-extr-address-text-syntax-table
(make-syntax-table))
501 (let ((syntax-table (symbol-value (car pair
))))
502 (dolist (item (cdr pair
))
503 (if (eq 2 (length item
))
504 ;; modifying syntax of a single character
505 (modify-syntax-entry (car item
) (car (cdr item
)) syntax-table
)
506 ;; modifying syntax of a range of characters
507 (let ((char (nth 0 item
))
509 (syntax (nth 2 item
)))
510 (while (<= char bound
)
511 (modify-syntax-entry char syntax syntax-table
)
512 (setq char
(1+ char
))))))))
513 '((mail-extr-address-syntax-table
514 (?
\000 ?
\037 "w") ;control characters
516 (?
! ?~
"w") ;printable characters
534 ;; % and ! aren't RFC822 characters, but it is convenient to pretend
536 (?
! ".") ;; this needs to be word-constituent when not in .UUCP mode
538 (mail-extr-address-comment-syntax-table
548 (mail-extr-address-domain-literal-syntax-table
558 (mail-extr-address-text-comment-syntax-table
576 (mail-extr-address-text-syntax-table
595 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
597 ;; Utility functions and macros.
600 ;; Fixme: There are Latin-1 nbsp below. If such characters should be
601 ;; included, this is the wrong thing to do -- it should use syntax (or
602 ;; regexp char classes).
604 (defsubst mail-extr-skip-whitespace-forward
()
605 ;; v19 fn skip-syntax-forward is more tasteful, but not byte-coded.
606 (skip-chars-forward " \t\n\r "))
608 (defsubst mail-extr-skip-whitespace-backward
()
609 ;; v19 fn skip-syntax-backward is more tasteful, but not byte-coded.
610 (skip-chars-backward " \t\n\r "))
613 (defsubst mail-extr-undo-backslash-quoting
(beg end
)
616 (narrow-to-region beg end
)
617 (goto-char (point-min))
619 (while (search-forward "\\" nil t
)
622 (forward-char 1))))))
624 (defsubst mail-extr-nuke-char-at
(pos)
630 (put 'mail-extr-nuke-outside-range
631 'edebug-form-spec
'(symbolp &optional form form atom
))
633 (defmacro mail-extr-nuke-outside-range
(list-symbol
634 beg-symbol end-symbol
635 &optional no-replace
)
636 "Delete all elements outside BEG..END in LIST.
637 LIST-SYMBOL names a variable holding a list of buffer positions
638 BEG-SYMBOL and END-SYMBOL name variables delimiting a range
639 Each element of LIST-SYMBOL which lies outside of the range is
640 deleted from the list.
641 Unless NO-REPLACE is true, at each of the positions in LIST-SYMBOL
642 which lie outside of the range, one character at that position is
643 replaced with a SPC."
644 (or (memq no-replace
'(t nil
))
645 (error "no-replace must be t or nil, evaluable at macroexpand-time"))
646 `(let ((temp ,list-symbol
)
650 (when (or (> ch
,end-symbol
)
654 `((mail-extr-nuke-char-at ch
)))
656 (setq temp
(cdr temp
)))
657 (setq ,list-symbol
(delq nil
,list-symbol
))))
659 (defun mail-extr-demarkerize (marker)
660 ;; if arg is a marker, destroys the marker, then returns the old value.
661 ;; otherwise returns the arg.
663 (let ((temp (marker-position marker
)))
664 (set-marker marker nil
)
668 (defun mail-extr-markerize (pos)
669 ;; coerces pos to a marker if non-nil.
670 (if (or (markerp pos
) (null pos
))
674 (defsubst mail-extr-safe-move-sexp
(arg)
675 ;; Safely skip over one balanced sexp, if there is one. Return t if success.
676 (condition-case error
678 (goto-char (or (scan-sexps (point) arg
) (point)))
681 ;; #### kludge kludge kludge kludge kludge kludge kludge !!!
682 (if (string-equal (nth 1 error
) "Unbalanced parentheses")
685 (signal (car error
) (cdr error
)))))))
687 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
689 ;; The main function to grind addresses
692 (defvar disable-initial-guessing-flag
) ; dynamic assignment
693 (defvar cbeg
) ; dynamic assignment
694 (defvar cend
) ; dynamic assignment
695 (defvar mail-extr-all-top-level-domains
) ; Defined below.
698 (defun mail-extract-address-components (address &optional all
)
699 "Given an RFC-822 address ADDRESS, extract full name and canonical address.
700 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). If no
701 name can be extracted, FULL-NAME will be nil. Also see
702 `mail-extr-ignore-single-names' and
703 `mail-extr-ignore-realname-equals-mailbox-name'.
705 If the optional argument ALL is non-nil, then ADDRESS can contain zero
706 or more recipients, separated by commas, and we return a list of
707 the form ((FULL-NAME CANONICAL-ADDRESS) ...) with one element for
708 each recipient. If ALL is nil, then if ADDRESS contains more than
709 one recipients, all but the first is ignored.
711 ADDRESS may be a string or a buffer. If it is a buffer, the visible
712 \(narrowed) portion of the buffer will be interpreted as the address.
713 \(This feature exists so that the clever caller might be able to avoid
715 (let ((canonicalization-buffer (get-buffer-create " *canonical address*"))
716 (extraction-buffer (get-buffer-create " *extract address components*"))
719 (with-current-buffer (get-buffer-create extraction-buffer
)
721 (buffer-disable-undo extraction-buffer
)
722 (set-syntax-table mail-extr-address-syntax-table
)
725 (setq case-fold-search nil
)
727 ;; Insert extra space at beginning to allow later replacement with <
728 ;; without having to move markers.
731 ;; Insert the address itself.
732 (cond ((stringp address
)
735 (insert-buffer-substring address
))
737 (error "Invalid address: %s" address
)))
739 (set-text-properties (point-min) (point-max) nil
)
741 (with-current-buffer (get-buffer-create canonicalization-buffer
)
743 (buffer-disable-undo canonicalization-buffer
)
744 (setq case-fold-search nil
))
747 ;; Unfold multiple lines.
748 (goto-char (point-min))
749 (while (re-search-forward "\\([^\\]\\(\\\\\\\\\\)*\\)\n[ \t]" nil t
)
750 (replace-match "\\1 " t
))
752 ;; Loop over addresses until we have as many as we want.
753 (while (and (or all
(null value-list
))
754 (progn (goto-char (point-min))
755 (skip-chars-forward " \t")
759 <-pos
>-pos
@-pos colon-pos comma-pos
!-pos %-pos \
;-pos
760 group-
:-pos group-\
;-pos route-addr-:-pos
762 first-real-pos last-real-pos
763 phrase-beg phrase-end
764 cbeg cend
; dynamically set from -voodoo
771 fi mi li
; first, middle, last initial
772 saved-%-pos saved-
!-pos saved-
@-pos
773 domain-pos \.-pos insert-point
774 ;; mailbox-name-processed-flag
775 disable-initial-guessing-flag
) ; dynamically set from -voodoo
777 (set-syntax-table mail-extr-address-syntax-table
)
778 (goto-char (point-min))
780 ;; Insert extra space at beginning to allow later replacement with <
781 ;; without having to move markers.
782 (or (eq (following-char) ?\
)
785 ;; First pass grabs useful information about address.
787 (mail-extr-skip-whitespace-forward)
789 (setq char
(char-after (point)))
791 (if (not (eq char ?\
())
792 (setq first-real-pos
(point))))
796 (set-syntax-table mail-extr-address-comment-syntax-table
)
797 ;; only record the first non-empty comment's position
801 (mail-extr-skip-whitespace-forward)
802 (not (eq ?\
) (char-after (point))))))
804 ;; TODO: don't record if unbalanced
805 (or (mail-extr-safe-move-sexp 1)
807 (set-syntax-table mail-extr-address-syntax-table
)
810 (setq cend
(point))))
813 ;; only record the first non-empty quote's position
814 (if (and (not quote-beg
)
817 (mail-extr-skip-whitespace-forward)
818 (not (eq ?
\" (char-after (point))))))
819 (setq quote-beg
(point)))
820 ;; TODO: don't record if unbalanced
821 (or (mail-extr-safe-move-sexp 1)
825 (setq quote-end
(point))))
828 (set-syntax-table mail-extr-address-domain-literal-syntax-table
)
829 (or (mail-extr-safe-move-sexp 1)
831 (set-syntax-table mail-extr-address-syntax-table
))
832 ;; commas delimit addresses when outside < > pairs.
834 (or (and (null <-pos
)
835 ;; Handle ROUTE-ADDR address that is missing its <.
836 (not (eq ?
@ (char-after (1+ (point))))))
838 ;; handle weird munged addresses
839 ;; BUG FIX: This test was reversed. Thanks to the
840 ;; brilliant Rod Whitby <rwhitby@research.canon.oz.au>
841 ;; for discovering this!
842 (< (car (last <-pos
)) (car >-pos
)))))
843 ;; The argument contains more than one address.
844 ;; Temporarily hide everything after this one.
845 (setq end-of-address
(copy-marker (1+ (point)) t
))
846 (narrow-to-region (point-min) (1+ (point)))
848 (setq char ?\
() ; HAVE I NO SHAME??
850 ;; record the position of various interesting chars, determine
852 ((setq record-pos-symbol
854 '((?
< .
<-pos
) (?
> .
>-pos
) (?
@ .
@-pos
)
855 (?
: . colon-pos
) (?
, . comma-pos
) (?
! .
!-pos
)
856 (?% . %-pos
) (?\
; . \;-pos)))))
857 (set record-pos-symbol
858 (cons (point) (symbol-value record-pos-symbol
)))
863 ;; comment terminator invalid
865 ;; domain literal terminator invalid
867 ;; \ allowed only within quoted strings,
868 ;; domain literals, and comments
871 (mail-extr-nuke-char-at (point))
874 ;; Do `(forward-word 1)', recognizing non-ASCII characters
875 ;; except Latin-1 nbsp as words.
877 (skip-chars-forward "^\000-\177Â ")
879 (eq ?w
(char-syntax (char-after)))
883 (> (char-after) ?
\177)
884 (not (eq (char-after) ?Â
)))))))))
886 ;; At the end of first address of a multiple address header.
889 (setq last-real-pos
(point))))
891 ;; Use only the leftmost <, if any. Replace all others with spaces.
893 (mail-extr-nuke-char-at (car <-pos
))
894 (setq <-pos
(cdr <-pos
)))
896 ;; Use only the rightmost >, if any. Replace all others with spaces.
898 (mail-extr-nuke-char-at (nth 1 >-pos
))
899 (setcdr >-pos
(nthcdr 2 >-pos
)))
901 ;; If multiple @s and a :, but no < and >, insert around buffer.
902 ;; Example: @foo.bar.dom,@xxx.yyy.zzz:mailbox@aaa.bbb.ccc
903 ;; This commonly happens on the UUCP "From " line. Ugh.
904 (when (and (> (length @-pos
) 1)
905 (eq 1 (length colon-pos
)) ;TODO: check if between last two @s
908 (goto-char (point-min))
910 (setq <-pos
(list (point)))
913 ;; If < but no >, insert > in rightmost possible position
914 (when (and <-pos
(null >-pos
))
915 (goto-char (point-max))
916 (setq >-pos
(list (point)))
919 ;; If > but no <, replace > with space.
920 (when (and >-pos
(null <-pos
))
921 (mail-extr-nuke-char-at (car >-pos
))
924 ;; Turn >-pos and <-pos into non-lists
925 (setq >-pos
(car >-pos
)
928 ;; Trim other punctuation lists of items outside < > pair to handle
930 (when <-pos
; don't need to check >-pos also
931 ;; handle bozo software that violates RFC 822 by sticking
932 ;; punctuation marks outside of a < > pair
933 (mail-extr-nuke-outside-range @-pos
<-pos
>-pos t
)
934 ;; RFC 822 says nothing about these two outside < >, but
935 ;; remove those positions from the lists to make things
937 (mail-extr-nuke-outside-range !-pos
<-pos
>-pos t
)
938 (mail-extr-nuke-outside-range %-pos
<-pos
>-pos t
))
940 ;; Check for : that indicates GROUP list and for : part of
942 ;; Can't possibly be more than two :. Nuke any extra.
944 (setq temp
(car colon-pos
)
945 colon-pos
(cdr colon-pos
))
946 (cond ((and <-pos
>-pos
949 (if (or route-addr-
:-pos
952 (< temp
(nth 1 @-pos
)))
953 (mail-extr-nuke-char-at temp
)
954 (setq route-addr-
:-pos temp
)))
958 (setq group-
:-pos temp
))))
960 ;; Nuke any ; that is in or to the left of a < > pair or to the left
961 ;; of a GROUP starting :. Also, there may only be one ;.
963 (setq temp
(car \
;-pos)
965 (cond ((and <-pos
>-pos
968 (mail-extr-nuke-char-at temp
))
969 ((and (or (not group-
:-pos
)
970 (> temp group-
:-pos
))
972 (setq group-\
;-pos temp))))
974 ;; Nuke unmatched GROUP syntax characters.
975 (when (and group-
:-pos
(not group-\
;-pos))
976 ;; *** Do I really need to erase it?
977 (mail-extr-nuke-char-at group-
:-pos
)
978 (setq group-
:-pos nil
))
979 (when (and group-\
;-pos (not group-:-pos))
980 ;; *** Do I really need to erase it?
981 (mail-extr-nuke-char-at group-\
;-pos)
982 (setq group-\
;-pos nil))
984 ;; Handle junk like ";@host.company.dom" that sendmail adds.
985 ;; **** should I remember comment positions?
987 ;; this is fine for now
988 (mail-extr-nuke-outside-range !-pos group-
:-pos group-\
;-pos t)
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 comma-pos group-
:-pos group-\
;-pos t)
993 (> last-real-pos
(1+ group-\
;-pos))
994 (setq last-real-pos
(1+ group-\
;-pos)))
995 ;; *** This may be wrong:
997 (> cend group-\
;-pos)
1001 (> quote-end group-\
;-pos)
1004 ;; This was both wrong and unnecessary:
1005 ;;(narrow-to-region (point-min) group-\;-pos)
1007 ;; *** The entire handling of GROUP addresses seems rather lame.
1008 ;; *** It deserves a complete rethink, except that these addresses
1009 ;; *** are hardly ever seen.
1012 ;; Any commas must be between < and : of ROUTE-ADDR. Nuke any
1014 ;; Hell, go ahead and nuke all of the commas.
1015 ;; **** This will cause problems when we start handling commas in
1016 ;; the PHRASE part .... no it won't ... yes it will ... ?????
1017 (mail-extr-nuke-outside-range comma-pos
1 1)
1019 ;; can only have multiple @s inside < >. The fact that some MTAs
1020 ;; put de-bracketed ROUTE-ADDRs in the UUCP-style "From " line is
1023 ;; Locate PHRASE part of ROUTE-ADDR.
1026 (mail-extr-skip-whitespace-backward)
1027 (setq phrase-end
(point))
1028 (goto-char (or ;;group-:-pos
1030 (mail-extr-skip-whitespace-forward)
1031 (if (< (point) phrase-end
)
1032 (setq phrase-beg
(point))
1033 (setq phrase-end nil
)))
1035 ;; handle ROUTE-ADDRS with real ROUTEs.
1036 ;; If there are multiple @s, then we assume ROUTE-ADDR syntax, and
1037 ;; any % or ! must be semantically meaningless.
1038 ;; TODO: do this processing into canonicalization buffer
1039 (when route-addr-
:-pos
1042 >-pos
(copy-marker >-pos
)
1043 route-addr-
:-pos
(copy-marker route-addr-
:-pos
))
1045 (insert-before-markers ?X
)
1046 (goto-char (car @-pos
))
1047 (while (setq @-pos
(cdr @-pos
))
1049 (setq %-pos
(cons (point-marker) %-pos
))
1051 (goto-char (1- >-pos
))
1053 (insert-buffer-substring extraction-buffer
1054 (car @-pos
) route-addr-
:-pos
)
1055 (delete-region (car @-pos
) route-addr-
:-pos
))
1057 (setq saved-
@-pos
(list (point)))))
1058 (setq @-pos saved-
@-pos
)
1061 (mail-extr-nuke-char-at route-addr-
:-pos
)
1062 (mail-extr-demarkerize route-addr-
:-pos
)
1063 (setq route-addr-
:-pos nil
1064 >-pos
(mail-extr-demarkerize >-pos
)
1065 %-pos
(mapcar 'mail-extr-demarkerize %-pos
)))
1068 (setq @-pos
(car @-pos
))
1070 ;; TODO: remove comments in the middle of an address
1072 (with-current-buffer canonicalization-buffer
1075 (insert-buffer-substring extraction-buffer
)
1078 (narrow-to-region (progn
1079 (goto-char (1+ <-pos
))
1080 (mail-extr-skip-whitespace-forward)
1083 (if (and first-real-pos last-real-pos
)
1084 (narrow-to-region first-real-pos last-real-pos
)
1085 ;; ****** Oh no! What if the address is completely empty!
1086 ;; *** Is this correct?
1087 (narrow-to-region (point-max) (point-max))))
1090 (mail-extr-nuke-outside-range %-pos
(point-min) @-pos
))
1092 (mail-extr-nuke-outside-range !-pos
(point-min) (car %-pos
)))
1093 (and @-pos
!-pos
(not %-pos
)
1094 (mail-extr-nuke-outside-range !-pos
(point-min) @-pos
))
1096 ;; Error condition:?? (and %-pos (not @-pos))
1098 ;; WARNING: THIS CODE IS DUPLICATED BELOW.
1099 (when (and %-pos
(not @-pos
))
1100 (goto-char (car %-pos
))
1102 (setq @-pos
(point))
1104 (setq %-pos
(cdr %-pos
)))
1106 (when (and mail-extr-mangle-uucp
!-pos
)
1107 ;; **** I don't understand this save-restriction and the
1108 ;; narrow-to-region inside it. Why did I do that?
1111 mail-extr-
@-binds-tighter-than-
!)
1113 (setq %-pos
(cons (point) %-pos
)
1117 (setq insert-point
(point-max)))
1118 (mail-extr-@-binds-tighter-than-
!
1119 (setq insert-point
(point-max)))
1121 (setq insert-point
(car (last %-pos
))
1122 saved-%-pos
(mapcar 'mail-extr-markerize %-pos
)
1124 @-pos
(mail-extr-markerize @-pos
)))
1126 (setq insert-point
@-pos
)
1127 (setq @-pos
(mail-extr-markerize @-pos
)))
1129 (setq insert-point
(point-max))))
1130 (narrow-to-region (point-min) insert-point
)
1131 (setq saved-
!-pos
(car !-pos
))
1133 (goto-char (point-max))
1134 (cond ((and (not @-pos
)
1136 (setq @-pos
(point))
1137 (insert-before-markers "@ "))
1139 (setq %-pos
(cons (point) %-pos
))
1140 (insert-before-markers "% ")))
1142 (insert-buffer-substring
1150 (mail-extr-safe-move-sexp -
1)
1151 (mail-extr-skip-whitespace-backward)
1152 (eq ?.
(preceding-char)))
1153 (insert-before-markers
1155 (mail-extr-skip-whitespace-backward)
1156 (eq ?.
(preceding-char)))
1160 (setq !-pos
(cdr !-pos
))))
1162 (setq %-pos
(append (mapcar 'mail-extr-demarkerize
1165 (setq @-pos
(mail-extr-demarkerize @-pos
))
1166 (narrow-to-region (1+ saved-
!-pos
) (point-max)))
1168 ;; WARNING: THIS CODE IS DUPLICATED ABOVE.
1169 (when (and %-pos
(not @-pos
))
1170 (goto-char (car %-pos
))
1172 (setq @-pos
(point))
1174 (setq %-pos
(cdr %-pos
)))
1176 (when (setq %-pos
(nreverse %-pos
)) ; implies @-pos valid
1180 (goto-char (or (nth 1 temp
)
1182 (mail-extr-skip-whitespace-backward)
1184 (mail-extr-safe-move-sexp -
1)
1185 (setq domain-pos
(point))
1186 (mail-extr-skip-whitespace-backward)
1187 (setq \.-pos
(eq ?.
(preceding-char))))
1189 ;; #### string consing
1190 (let ((s (intern-soft
1191 (buffer-substring domain-pos
(point))
1192 mail-extr-all-top-level-domains
)))
1193 (and s
(get s
'domain-name
))))
1194 (narrow-to-region (point-min) (point))
1195 (goto-char (car temp
))
1197 (setq @-pos
(point))
1199 (setq %-pos
(delq @-pos %-pos
))
1201 (throw 'truncated t
))
1202 (setq temp
(cdr temp
)))))
1203 (setq mbox-beg
(point-min)
1204 mbox-end
(if %-pos
(car %-pos
)
1209 ;; Make the domain-name part lowercase since it's case
1210 ;; insensitive anyway.
1211 (downcase-region (1+ @-pos
) (point-max))))
1213 ;; Done canonicalizing address.
1214 ;; We are now back in extraction-buffer.
1216 ;; Decide what part of the address to search to find the full name.
1218 ;; Example: "First M. Last" <fml@foo.bar.dom>
1220 (eq quote-beg phrase-beg
)
1221 (<= quote-end phrase-end
))
1222 (narrow-to-region (1+ quote-beg
) (1- quote-end
))
1223 (mail-extr-undo-backslash-quoting (point-min) (point-max)))
1225 ;; Example: First Last <fml@foo.bar.dom>
1227 (narrow-to-region phrase-beg phrase-end
))
1229 ;; Example: fml@foo.bar.dom (First M. Last)
1231 (narrow-to-region (1+ cbeg
) (1- cend
))
1232 (mail-extr-undo-backslash-quoting (point-min) (point-max))
1234 ;; Deal with spacing problems
1235 (goto-char (point-min))
1236 ;;; (cond ((not (search-forward " " nil t))
1237 ;;; (goto-char (point-min))
1238 ;;; (cond ((search-forward "_" nil t)
1239 ;;; ;; Handle the *idiotic* use of underlines as spaces.
1240 ;;; ;; Example: fml@foo.bar.dom (First_M._Last)
1241 ;;; (goto-char (point-min))
1242 ;;; (while (search-forward "_" nil t)
1243 ;;; (replace-match " " t)))
1244 ;;; ((search-forward "." nil t)
1245 ;;; ;; Fix . used as space
1246 ;;; ;; Example: danj1@cb.att.com (daniel.jacobson)
1247 ;;; (goto-char (point-min))
1248 ;;; (while (re-search-forward mail-extr-bad-dot-pattern nil t)
1249 ;;; (replace-match "\\1 \\2" t))))))
1252 ;; Otherwise we try to get the name from the mailbox portion
1254 ;; Example: First_M_Last@foo.bar.dom
1256 ;; *** Work in canon buffer instead? No, can't. Hmm.
1257 (goto-char (point-max))
1258 (narrow-to-region (point) (point))
1259 (insert-buffer-substring canonicalization-buffer
1261 (goto-char (point-min))
1263 ;; Example: First_Last.XXX@foo.bar.dom
1264 (setq \.-ends-name
(re-search-forward "[_0-9]" nil t
))
1266 (goto-char (point-min))
1268 (if (not mail-extr-mangle-uucp
)
1269 (modify-syntax-entry ?
! "w" (syntax-table)))
1272 (mail-extr-skip-whitespace-forward)
1274 (setq char
(char-after (point)))
1277 (setq quote-beg
(point))
1278 (or (mail-extr-safe-move-sexp 1)
1279 ;; TODO: handle this error condition!!!!!
1281 ;; take into account deletions
1282 (setq quote-end
(- (point) 2))
1286 (goto-char quote-beg
)
1289 (mail-extr-undo-backslash-quoting quote-beg quote-end
)
1290 (or (eq ?\
(char-after (point)))
1292 ;; (setq mailbox-name-processed-flag t)
1293 (setq \.-ends-name t
))
1295 (if (memq (char-after (1+ (point))) '(?_ ?
=))
1301 (narrow-to-region (point-min) (point))
1304 ;; (setq mailbox-name-processed-flag t)
1306 ((memq (char-syntax char
) '(?. ?
\\))
1309 ;; (setq mailbox-name-processed-flag t)
1312 (setq atom-beg
(point))
1314 (setq atom-end
(point))
1315 (goto-char atom-beg
)
1317 (narrow-to-region atom-beg atom-end
)
1320 ;; Handle X.400 addresses encoded in RFC-822.
1321 ;; *** Shit! This has to handle the case where it is
1322 ;; *** embedded in a quote too!
1323 ;; *** Shit! The input is being broken up into atoms
1325 ((looking-at mail-extr-x400-encoded-address-pattern
)
1327 ;; Copy the contents of the individual fields that
1328 ;; might hold name data to the beginning.
1330 (lambda (field-pattern)
1333 (re-search-forward field-pattern nil t
))
1334 (insert-buffer-substring (current-buffer)
1338 (list mail-extr-x400-encoded-address-given-name-pattern
1339 mail-extr-x400-encoded-address-surname-pattern
1340 mail-extr-x400-encoded-address-full-name-pattern
))
1342 ;; Discard the rest, since it contains stuff like
1343 ;; routing information, not part of a name.
1344 (mail-extr-skip-whitespace-backward)
1345 (delete-region (point) (point-max))
1347 ;; Handle periods used for spacing.
1348 (while (re-search-forward mail-extr-bad-dot-pattern nil t
)
1349 (replace-match "\\1 \\2" t
))
1351 ;; (setq mailbox-name-processed-flag t)
1354 ;; Handle normal addresses.
1356 (goto-char (point-min))
1357 ;; Handle _ and = used for spacing.
1358 (while (re-search-forward "\\([^_=]+\\)[_=]" nil t
)
1359 (replace-match "\\1 " t
)
1360 ;; (setq mailbox-name-processed-flag t)
1362 (goto-char (point-max))))))))
1364 ;; undo the dirty deed
1365 (if (not mail-extr-mangle-uucp
)
1366 (modify-syntax-entry ?
! "." (syntax-table)))
1368 ;; If we derived the name from the mailbox part of the address,
1369 ;; and we only got one word out of it, don't treat that as a
1370 ;; name. "foo@bar" --> (nil "foo@bar"), not ("foo" "foo@bar")
1371 ;; (if (not mailbox-name-processed-flag)
1372 ;; (delete-region (point-min) (point-max)))
1375 (set-syntax-table mail-extr-address-text-syntax-table
)
1377 (mail-extr-voodoo mbox-beg mbox-end canonicalization-buffer
)
1378 (goto-char (point-min))
1380 ;; If name is "First Last" and userid is "F?L", then assume
1381 ;; the middle initial is the second letter in the userid.
1382 ;; Initial code by Jamie Zawinski <jwz@lucid.com>
1383 ;; *** Make it work when there's a suffix as well.
1384 (goto-char (point-min))
1385 (when (and mail-extr-guess-middle-initial
1386 (not disable-initial-guessing-flag
)
1387 (eq 3 (- mbox-end mbox-beg
))
1389 (goto-char (point-min))
1390 (looking-at mail-extr-two-name-pattern
)))
1391 (setq fi
(char-after (match-beginning 0))
1392 li
(char-after (match-beginning 3)))
1393 (with-current-buffer canonicalization-buffer
1394 ;; char-equal is ignoring case here, so no need to upcase
1396 (let ((case-fold-search t
))
1397 (and (char-equal fi
(char-after mbox-beg
))
1398 (char-equal li
(char-after (1- mbox-end
)))
1399 (setq mi
(char-after (1+ mbox-beg
))))))
1401 ;; TODO: use better table than syntax table
1402 (eq ?w
(char-syntax mi
)))
1403 (goto-char (match-beginning 3))
1404 (insert (upcase mi
) ". ")))
1406 ;; Nuke name if it is the same as mailbox name.
1407 (let ((buffer-length (- (point-max) (point-min)))
1409 (names-match-flag t
))
1410 (when (and (> buffer-length
0)
1411 (eq buffer-length
(- mbox-end mbox-beg
)))
1412 (goto-char (point-max))
1413 (insert-buffer-substring canonicalization-buffer
1415 (while (and names-match-flag
1416 (< i buffer-length
))
1417 (or (eq (downcase (char-after (+ i
(point-min))))
1419 (char-after (+ i buffer-length
(point-min)))))
1420 (setq names-match-flag nil
))
1422 (delete-region (+ (point-min) buffer-length
) (point-max))
1423 (and names-match-flag
1424 mail-extr-ignore-realname-equals-mailbox-name
1425 (narrow-to-region (point) (point)))))
1427 ;; Nuke name if it's just one word.
1428 (goto-char (point-min))
1429 (and mail-extr-ignore-single-names
1430 (not (re-search-forward "[- ]" nil t
))
1431 (narrow-to-region (point) (point)))
1433 ;; Record the result
1435 (cons (list (if (not (= (point-min) (point-max)))
1437 (with-current-buffer canonicalization-buffer
1438 (if (not (= (point-min) (point-max)))
1442 ;; Unless one address is all we wanted,
1443 ;; delete this one from extraction-buffer
1444 ;; and get ready to extract the next address.
1447 (narrow-to-region 1 end-of-address
)
1449 (delete-region (point-min) (point-max))
1452 (if all
(nreverse value-list
) (car value-list
))
1455 (defcustom mail-extr-disable-voodoo
"\\cj"
1456 "*If it is a regexp, names matching it will never be modified.
1457 If it is neither nil nor a string, modifying of names will never take
1458 place. It affects how `mail-extract-address-components' works."
1459 :type
'(choice (regexp :size
0)
1460 (const :tag
"Always enabled" nil
)
1461 (const :tag
"Always disabled" t
))
1464 (defun mail-extr-voodoo (mbox-beg mbox-end canonicalization-buffer
)
1465 (unless (and mail-extr-disable-voodoo
1466 (or (not (stringp mail-extr-disable-voodoo
))
1468 (goto-char (point-min))
1469 (re-search-forward mail-extr-disable-voodoo nil t
))))
1470 (let ((word-count 0)
1471 (case-fold-search nil
)
1472 mixed-case-flag lower-case-flag
;;upper-case-flag
1473 suffix-flag last-name-comma-flag
1477 drop-this-word-if-trailing-flag
1478 drop-last-word-if-trailing-flag
1480 this-word-beg last-word-beg
1485 (set-syntax-table mail-extr-address-text-syntax-table
)
1487 ;; Get rid of comments.
1488 (goto-char (point-min))
1490 ;; Initialize for this iteration of the loop.
1491 (skip-chars-forward "^({[\"'`")
1492 (let ((cbeg (point)))
1493 (set-syntax-table mail-extr-address-text-comment-syntax-table
)
1494 (if (memq (following-char) '(?
\' ?\
`))
1495 (search-forward "'" nil
'move
1496 (if (eq ?
\' (following-char)) 2 1))
1497 (or (mail-extr-safe-move-sexp 1)
1498 (goto-char (point-max))))
1499 (set-syntax-table mail-extr-address-text-syntax-table
)
1500 (when (eq (char-after cbeg
) ?\
()
1501 ;; Delete the comment itself.
1502 (delete-region cbeg
(point))
1503 ;; Canonicalize whitespace where the comment was.
1504 (skip-chars-backward " \t")
1505 (if (looking-at "\\([ \t]+$\\|[ \t]+,\\)")
1508 (skip-chars-forward " \t")
1510 (delete-region (point) cbeg
)
1511 (just-one-space))))))
1513 ;; This was moved above.
1514 ;; Fix . used as space
1515 ;; But it belongs here because it occurs not only as
1516 ;; rypens@reks.uia.ac.be (Piet.Rypens)
1518 ;; "Piet.Rypens" <rypens@reks.uia.ac.be>
1519 ;;(goto-char (point-min))
1520 ;;(while (re-search-forward mail-extr-bad-dot-pattern nil t)
1521 ;; (replace-match "\\1 \\2" t))
1523 (unless (search-forward " " nil t
)
1524 (goto-char (point-min))
1525 (cond ((search-forward "_" nil t
)
1526 ;; Handle the *idiotic* use of underlines as spaces.
1527 ;; Example: fml@foo.bar.dom (First_M._Last)
1528 (goto-char (point-min))
1529 (while (search-forward "_" nil t
)
1530 (replace-match " " t
)))
1531 ((search-forward "." nil t
)
1532 ;; Fix . used as space
1533 ;; Example: danj1@cb.att.com (daniel.jacobson)
1534 (goto-char (point-min))
1535 (while (re-search-forward mail-extr-bad-dot-pattern nil t
)
1536 (replace-match "\\1 \\2" t
)))))
1538 ;; Loop over the words (and other junk) in the name.
1539 (goto-char (point-min))
1540 (while (not name-done-flag
)
1542 (when word-found-flag
1543 ;; Last time through this loop we skipped over a word.
1544 (setq last-word-beg this-word-beg
)
1545 (setq drop-last-word-if-trailing-flag
1546 drop-this-word-if-trailing-flag
)
1547 (setq word-found-flag nil
))
1549 (when begin-again-flag
1550 ;; Last time through the loop we found something that
1551 ;; indicates we should pretend we are beginning again from
1554 (setq last-word-beg nil
)
1555 (setq drop-last-word-if-trailing-flag nil
)
1556 (setq mixed-case-flag nil
)
1557 (setq lower-case-flag nil
)
1558 ;; (setq upper-case-flag nil)
1559 (setq begin-again-flag nil
))
1561 ;; Initialize for this iteration of the loop.
1562 (mail-extr-skip-whitespace-forward)
1563 (if (eq word-count
0) (narrow-to-region (point) (point-max)))
1564 (setq this-word-beg
(point))
1565 (setq drop-this-word-if-trailing-flag nil
)
1567 ;; Decide what to do based on what we are looking at.
1571 ((and (eq word-count
0)
1572 (looking-at mail-extr-full-name-prefixes
))
1573 (goto-char (match-end 0))
1574 (narrow-to-region (point) (point-max)))
1576 ;; Stop after name suffix
1577 ((and (>= word-count
2)
1578 (looking-at mail-extr-full-name-suffix-pattern
))
1579 (mail-extr-skip-whitespace-backward)
1580 (setq suffix-flag
(point))
1581 (if (eq ?
, (following-char))
1584 ;; Enforce at least one space after comma
1585 (or (eq ?\
(following-char))
1587 (mail-extr-skip-whitespace-forward)
1588 (cond ((memq (following-char) '(?j ?J ?s ?S
))
1590 (if (eq (following-char) ?.
)
1595 (setq word-found-flag t
)
1596 (setq name-done-flag t
))
1599 ((looking-at "MKA \\(.+\\)") ; "Mundanely Known As"
1600 (goto-char (match-beginning 1))
1601 (narrow-to-region (point) (point-max))
1602 (setq begin-again-flag t
))
1604 ;; Check for initial last name followed by comma
1605 ((and (eq ?
, (following-char))
1608 (setq last-name-comma-flag t
)
1609 (or (eq ?\
(following-char))
1612 ;; Stop before trailing comma-separated comment
1613 ;; THIS CASE MUST BE AFTER THE PRECEDING CASES.
1614 ;; *** This case is redundant???
1615 ;;((eq ?, (following-char))
1616 ;; (setq name-done-flag t))
1618 ;; Delete parenthesized/quoted comment/nickname
1619 ((memq (following-char) '(?\
( ?\
{ ?\
[ ?
\" ?
\' ?\
`))
1621 (set-syntax-table mail-extr-address-text-comment-syntax-table
)
1622 (cond ((memq (following-char) '(?
\' ?\
`))
1623 (or (search-forward "'" nil t
1624 (if (eq ?
\' (following-char)) 2 1))
1627 (or (mail-extr-safe-move-sexp 1)
1628 (goto-char (point-max)))))
1629 (set-syntax-table mail-extr-address-text-syntax-table
)
1632 ;; Handle case of entire name being quoted
1633 ((and (eq word-count
0)
1634 (looking-at " *\\'")
1635 (>= (- cend cbeg
) 2))
1636 (narrow-to-region (1+ cbeg
) (1- cend
))
1637 (goto-char (point-min)))
1639 ;; Handle case of quoted initial
1640 (if (and (or (= 3 (- cend cbeg
))
1641 (and (= 4 (- cend cbeg
))
1642 (eq ?.
(char-after (+ 2 cbeg
)))))
1643 (not (looking-at " *\\'")))
1644 (setq initial
(char-after (1+ cbeg
)))
1646 (delete-region cbeg cend
)
1648 (insert initial
". ")))))
1650 ;; Handle *Stupid* VMS date stamps
1651 ((looking-at mail-extr-stupid-vms-date-stamp-pattern
)
1652 (replace-match "" t
))
1654 ;; Handle Chinese characters.
1655 ((looking-at mail-extr-hz-embedded-gb-encoded-chinese-pattern
)
1656 (goto-char (match-end 0))
1657 (setq word-found-flag t
))
1659 ;; Skip initial garbage characters.
1660 ;; THIS CASE MUST BE AFTER THE PRECEDING CASES.
1661 ((and (eq word-count
0)
1662 (looking-at mail-extr-leading-garbage
))
1663 (goto-char (match-end 0))
1664 ;; *** Skip backward over these???
1665 ;; (skip-chars-backward "& \"")
1666 (narrow-to-region (point) (point-max)))
1668 ;; Various stopping points
1671 ;; Stop before ALL CAPS acronyms, if preceded by mixed-case
1672 ;; words. Example: XT-DEM.
1673 (and (>= word-count
2)
1675 (looking-at mail-extr-weird-acronym-pattern
)
1676 (not (looking-at mail-extr-roman-numeral-pattern
)))
1678 ;; Stop before trailing alternative address
1679 (looking-at mail-extr-alternative-address-pattern
)
1681 ;; Stop before trailing comment not introduced by comma
1682 ;; THIS CASE MUST BE AFTER AN EARLIER CASE.
1683 (looking-at mail-extr-trailing-comment-start-pattern
)
1685 ;; Stop before telephone numbers
1686 (and (>= word-count
1)
1687 (looking-at mail-extr-telephone-extension-pattern
)))
1688 (setq name-done-flag t
))
1690 ;; Delete ham radio call signs
1691 ((looking-at mail-extr-ham-call-sign-pattern
)
1692 (delete-region (match-beginning 0) (match-end 0)))
1695 ((looking-at mail-extr-initial-pattern
)
1696 (or (eq (following-char) (upcase (following-char)))
1697 (setq lower-case-flag t
))
1699 (if (eq ?.
(following-char))
1702 (or (eq ?\
(following-char))
1704 (setq word-found-flag t
))
1706 ;; Handle BITNET LISTSERV list names.
1707 ((and (eq word-count
0)
1708 (looking-at mail-extr-listserv-list-name-pattern
))
1709 (narrow-to-region (match-beginning 1) (match-end 1))
1710 (setq word-found-flag t
)
1711 (setq name-done-flag t
))
1713 ;; Handle & substitution, when & is last and is not first.
1714 ((and (> word-count
0)
1715 (eq ?\
(preceding-char))
1716 (eq (following-char) ?
&)
1717 (eq (1+ (point)) (point-max)))
1722 (insert-buffer-substring canonicalization-buffer
1725 (setq disable-initial-guessing-flag t
)
1726 (setq word-found-flag t
))
1728 ;; Handle & between names, as in "Bob & Susie".
1729 ((and (> word-count
0) (eq (following-char) ?\
&))
1730 (setq name-beg
(point))
1731 (setq name-end
(1+ name-beg
))
1732 (setq word-found-flag t
)
1733 (goto-char name-end
))
1735 ;; Regular name words
1736 ((looking-at mail-extr-name-pattern
)
1737 (setq name-beg
(point))
1738 (setq name-end
(match-end 0))
1740 ;; Certain words will be dropped if they are at the end.
1741 (and (>= word-count
2)
1742 (not lower-case-flag
)
1744 ;; Trailing 4-or-more letter lowercase words preceded by
1745 ;; mixed case or uppercase words will be dropped.
1746 (looking-at "[[:lower:]]\\{4,\\}[ \t]*\\'")
1747 ;; Drop a trailing word which is terminated with a period.
1748 (eq ?.
(char-after (1- name-end
))))
1749 (setq drop-this-word-if-trailing-flag t
))
1751 ;; Set the flags that indicate whether we have seen a lowercase
1752 ;; word, a mixed case word, and an uppercase word.
1753 (if (re-search-forward "[[:lower:]]" name-end t
)
1755 (goto-char name-beg
)
1756 (re-search-forward "[[:upper:]]" name-end t
))
1757 (setq mixed-case-flag t
)
1758 (setq lower-case-flag t
))
1759 ;; (setq upper-case-flag t)
1762 (goto-char name-end
)
1763 (setq word-found-flag t
))
1765 ;; Allow a number as a word, if it doesn't mean anything else.
1766 ((looking-at "[0-9]+\\>")
1767 (setq name-beg
(point))
1768 (setq name-end
(match-end 0))
1769 (goto-char name-end
)
1770 (setq word-found-flag t
))
1773 (setq name-done-flag t
)
1776 ;; Count any word that we skipped over.
1778 (setq word-count
(1+ word-count
))))
1780 ;; If the last thing in the name is 2 or more periods, or one or more
1781 ;; other sentence terminators (but not a single period) then keep them
1782 ;; and the preceding word. This is for the benefit of whole sentences
1783 ;; in the name field: it's better behavior than dropping the last word
1784 ;; of the sentence...
1785 (if (and (not suffix-flag
)
1786 (looking-at "\\(\\.+\\|[?!;:.][?!;:.]+\\|[?!;:][?!;:.]*\\)\\'"))
1787 (goto-char (setq suffix-flag
(point-max))))
1789 ;; Drop everything after point and certain trailing words.
1790 (narrow-to-region (point-min)
1791 (or (and drop-last-word-if-trailing-flag
1795 ;; Xerox's mailers SUCK!!!!!!
1796 ;; We simply refuse to believe that any last name is PARC or ADOC.
1797 ;; If it looks like that is the last name, that there is no meaningful
1798 ;; here at all. Actually I guess it would be best to map patterns
1799 ;; like foo.hoser@xerox.com into foo@hoser.xerox.com, but I don't
1800 ;; actually know that that is what's going on.
1802 (goto-char (point-min))
1803 (let ((case-fold-search t
))
1804 (if (looking-at "[-A-Za-z_]+[. ]\\(PARC\\|ADOC\\)\\'")
1807 ;; If last name first put it at end (but before suffix)
1808 (when last-name-comma-flag
1809 (goto-char (point-min))
1810 (search-forward ",")
1811 (setq name-end
(1- (point)))
1812 (goto-char (or suffix-flag
(point-max)))
1813 (or (eq ?\
(preceding-char))
1815 (insert-buffer-substring (current-buffer) (point-min) name-end
)
1816 (goto-char name-end
)
1817 (skip-chars-forward "\t ,")
1818 (narrow-to-region (point) (point-max)))
1820 ;; Delete leading and trailing junk characters.
1821 ;; *** This is probably completely unneeded now.
1822 ;;(goto-char (point-max))
1823 ;;(skip-chars-backward mail-extr-non-end-name-chars)
1824 ;;(if (eq ?. (following-char))
1825 ;; (forward-char 1))
1826 ;;(narrow-to-region (point)
1828 ;; (goto-char (point-min))
1829 ;; (skip-chars-forward mail-extr-non-begin-name-chars)
1832 ;; Compress whitespace
1833 (goto-char (point-min))
1834 (while (re-search-forward "[ \t\n]+" nil t
)
1835 (replace-match (if (eobp) "" " ") t
))
1840 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1842 ;; Table of top-level domain names.
1844 ;; This is used during address canonicalization; be careful of format changes.
1845 ;; Keep in mind that the country abbreviations follow ISO-3166. There is
1846 ;; a U.S. FIPS that specifies a different set of two-letter country
1849 ;; Updated by the RIPE Network Coordination Centre.
1851 ;; Source: ISO 3166 Maintenance Agency
1852 ;; http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1-semic.txt
1853 ;; http://www.iana.org/domain-names.htm
1854 ;; http://www.iana.org/cctld/cctld-whois.htm
1855 ;; Latest change: 2007/11/15
1857 (defconst mail-extr-all-top-level-domains
1858 (let ((ob (make-vector 739 0)))
1861 (put (intern (downcase (car x
)) ob
)
1864 (format (nth 2 x
) (nth 1 x
))
1868 ("ac" "Ascension Island")
1870 ("ae" "United Arab Emirates")
1871 ("af" "Afghanistan")
1872 ("ag" "Antigua and Barbuda")
1876 ("an" "Netherlands Antilles")
1878 ("aq" "Antarctica") ; continent
1879 ("ar" "Argentina" "Argentine Republic")
1880 ("as" "American Samoa")
1881 ("at" "Austria" "The Republic of %s")
1884 ("ax" "Aland Islands")
1886 ("ba" "Bosnia-Herzegovina")
1889 ("be" "Belgium" "The Kingdom of %s")
1890 ("bf" "Burkina Faso")
1895 ("bl" "Saint Barthelemy")
1897 ("bn" "Brunei Darussalam")
1898 ("bo" "Bolivia" "Republic of %s")
1899 ("br" "Brazil" "The Federative Republic of %s")
1902 ("bv" "Bouvet Island")
1907 ("cc" "Cocos (Keeling) Islands")
1908 ("cd" "Congo" "The Democratic Republic of the %s")
1909 ("cf" "Central African Republic")
1911 ("ch" "Switzerland" "The Swiss Confederation")
1912 ("ci" "Ivory Coast") ; Cote D'ivoire
1913 ("ck" "Cook Islands")
1914 ("cl" "Chile" "The Republic of %s")
1915 ("cm" "Cameroon") ; In .fr domain
1916 ("cn" "China" "The People's Republic of %s")
1918 ("cr" "Costa Rica" "The Republic of %s")
1921 ("cx" "Christmas Island")
1923 ("cz" "Czech Republic")
1928 ("do" "Dominican Republic" "The %s")
1930 ("ec" "Ecuador" "The Republic of %s")
1932 ("eg" "Egypt" "The Arab Republic of %s")
1933 ("eh" "Western Sahara")
1935 ("es" "Spain" "The Kingdom of %s")
1937 ("eu" "European Union")
1938 ("fi" "Finland" "The Republic of %s")
1940 ("fk" "Falkland Islands (Malvinas)")
1941 ("fm" "Micronesia" "Federated States of %s")
1942 ("fo" "Faroe Islands")
1945 ("gb" "United Kingdom")
1948 ("gf" "French Guiana")
1955 ("gp" "Guadeloupe (Fr.)")
1956 ("gq" "Equatorial Guinea")
1957 ("gr" "Greece" "The Hellenic Republic (%s)")
1958 ("gs" "South Georgia and The South Sandwich Islands")
1960 ("gu" "Guam (U.S.)")
1961 ("gw" "Guinea-Bissau")
1964 ("hm" "Heard Island and Mcdonald Islands")
1966 ("hr" "Croatia" "Croatia (Hrvatska)")
1968 ("hu" "Hungary" "The Hungarian Republic")
1971 ("il" "Israel" "The State of %s")
1972 ("im" "Isle of Man" "The %s") ; NOT in ISO 3166-1 of 2001-02-26
1973 ("in" "India" "The Republic of %s")
1974 ("io" "British Indian Ocean Territory")
1976 ("ir" "Iran" "Islamic Republic of %s")
1977 ("is" "Iceland" "The Republic of %s")
1978 ("it" "Italy" "The Italian Republic")
1988 ("kn" "Saint Kitts and Nevis")
1989 ("kp" "Korea (North)" "Democratic People's Republic of Korea")
1990 ("kr" "Korea (South)" "Republic of Korea")
1992 ("ky" "Cayman Islands")
1994 ("la" "Lao People's Democratic Republic")
1996 ("lc" "Saint Lucia")
1997 ("li" "Liechtenstein")
1998 ("lk" "Sri Lanka" "The Democratic Socialist Republic of %s")
2004 ("ly" "Libyan Arab Jamahiriya")
2007 ("md" "Moldova" "The Republic of %s")
2009 ("mf" "Saint Martin (French part)")
2011 ("mh" "Marshall Islands")
2012 ("mk" "Macedonia" "The Former Yugoslav Republic of %s")
2017 ("mp" "Northern Mariana Islands")
2025 ("mx" "Mexico" "The United Mexican States")
2029 ("nc" "New Caledonia (Fr.)")
2030 ("ne" "Niger") ; In .fr domain
2031 ("nf" "Norfolk Island")
2033 ("ni" "Nicaragua" "The Republic of %s")
2034 ("nl" "Netherlands" "The Kingdom of the %s")
2035 ("no" "Norway" "The Kingdom of %s")
2036 ("np" "Nepal") ; Via .in domain
2039 ("nz" "New Zealand")
2043 ("pf" "French Polynesia")
2044 ("pg" "Papua New Guinea")
2045 ("ph" "Philippines" "The Republic of the %s")
2048 ("pm" "Saint Pierre and Miquelon")
2050 ("pr" "Puerto Rico (U.S.)")
2051 ("ps" "Palestinian Territory, Occupied")
2052 ("pt" "Portugal" "The Portuguese Republic")
2056 ("re" "Reunion (Fr.)") ; In .fr domain
2059 ("ru" "Russia" "Russian Federation")
2061 ("sa" "Saudi Arabia")
2062 ("sb" "Solomon Islands")
2065 ("se" "Sweden" "The Kingdom of %s")
2066 ("sg" "Singapore" "The Republic of %s")
2067 ("sh" "Saint Helena")
2069 ("sj" "Svalbard and Jan Mayen") ; In .no domain
2070 ("sk" "Slovakia" "The Slovak Republic")
2071 ("sl" "Sierra Leone")
2076 ("st" "Sao Tome and Principe")
2077 ("su" "U.S.S.R." "The Union of Soviet Socialist Republics")
2078 ("sv" "El Salvador")
2079 ("sy" "Syrian Arab Republic")
2081 ("tc" "Turks and Caicos Islands")
2083 ("tf" "French Southern Territories")
2085 ("th" "Thailand" "The Kingdom of %s")
2089 ("tm" "Turkmenistan")
2093 ("tr" "Turkey" "The Republic of %s")
2094 ("tt" "Trinidad and Tobago")
2096 ("tw" "Taiwan" "%s, Province of China")
2097 ("tz" "Tanzania" "United Republic of %s")
2100 ("uk" "United Kingdom" "The %s of Great Britain and Northern Ireland")
2101 ("um" "United States Minor Outlying Islands")
2102 ("us" "United States" "The %s of America")
2103 ("uy" "Uruguay" "The Eastern Republic of %s")
2105 ("va" "Holy See (Vatican City State)")
2106 ("vc" "Saint Vincent and the Grenadines")
2107 ("ve" "Venezuela" "The Republic of %s")
2108 ("vg" "Virgin Islands, British")
2109 ("vi" "Virgin Islands, U.S.")
2112 ("wf" "Wallis and Futuna")
2116 ("yu" "Yugoslavia" "Yugoslavia, AKA Serbia-Montenegro")
2117 ("za" "South Africa" "The Republic of %s")
2119 ("zw" "Zimbabwe" "Republic of %s")
2121 ("aero" t
"Air Transport Industry")
2122 ("asia" t
"Pan-Asia and Asia Pacific community")
2123 ("biz" t
"Businesses")
2124 ("cat" t
"Catalan language and culture")
2125 ("com" t
"Commercial")
2126 ("coop" t
"Cooperative Associations")
2128 ("jobs" t
"Employment")
2129 ("mobi" t
"Mobile products")
2130 ("museum" t
"Museums")
2131 ("name" t
"Individuals")
2133 ("org" t
"Non-profit Organization")
2134 ("pro" t
"Credentialed professionals")
2135 ("tel" t
"Contact data")
2136 ("travel" t
"Travel industry")
2137 ;;("bitnet" t "Because It's Time NET")
2138 ("gov" t
"United States Government")
2139 ("edu" t
"Educational")
2140 ("mil" t
"United States Military")
2141 ("int" t
"International Treaties")
2142 ;;("nato" t "North Atlantic Treaty Organization")
2143 ("uucp" t
"Unix to Unix CoPy")
2144 ;; Infrastructure Domains:
2145 ("arpa" t
"Advanced Research Projects Agency (U.S. DoD)")
2150 (defun what-domain (domain)
2151 "Convert mail domain DOMAIN to the country it corresponds to."
2153 (let ((completion-ignore-case t
))
2154 (list (completing-read "Domain: "
2155 mail-extr-all-top-level-domains nil t
))))
2156 (or (setq domain
(intern-soft (downcase domain
)
2157 mail-extr-all-top-level-domains
))
2158 (error "No such domain"))
2159 (message "%s: %s" (upcase (symbol-name domain
)) (get domain
'domain-name
)))
2163 ; (mapatoms #'(lambda (x)
2164 ; (if (and (boundp x)
2165 ; (string-match "^mail-extr-" (symbol-name x)))
2166 ; (setq all (cons x all)))))
2167 ; (setq all (sort all #'string-lessp))
2169 ; (apply 'nconc (mapcar #'(lambda (x)
2170 ; (list x (symbol-value x)))
2174 (provide 'mail-extr
)
2176 ;; arch-tag: 7785fade-1073-4ed6-b4f6-28db34a7982d
2177 ;;; mail-extr.el ends here