]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-forward-separator-regex): New custom variable.
authorFrancesco Potortì <pot@gnu.org>
Fri, 31 Jan 2003 14:01:20 +0000 (14:01 +0000)
committerFrancesco Potortì <pot@gnu.org>
Fri, 31 Jan 2003 14:01:20 +0000 (14:01 +0000)
(unforward-rmail-message): Use it.

lisp/mail/undigest.el

index d5db68f33c54e9722092559cf7cb9028d0a4a4fc..d5efa06df717e9a3a127ed113126f9b297d49634 100644 (file)
   "\^_\^L\n0, unseen,,\n*** EOOH ***\n"
   "String for separating messages in an rmail file.")
 
+(defcustom rmail-forward-separator-regex
+  "^----.*\\([Ff]orwarded\\|[Oo]riginal\\).*[Mm]essage"
+  "*Regexp to match the string that introduces forwarded messages.
+This is not a header, but a string contained in the body of the message.
+You may need to customise it for local needs."
+  :type 'regexp
+  :group 'rmail-headers)
+
 \f
 (defconst rmail-digest-methods
   '(rmail-digest-parse-mime
@@ -231,8 +239,7 @@ following the containing message."
              (forwarded-from (mail-fetch-field "From"))
              (forwarded-date (mail-fetch-field "Date"))
              beg end prefix forward-msg)
-         (cond ((re-search-forward
-                 "^----.*\\([Ff]orwarded\\|[Oo]riginal\\).*[Mm]essage" nil t)
+         (cond ((re-search-forward rmail-forward-separator-regex nil t)
                 (forward-line 1)
                 (skip-chars-forward "\n")
                 (setq beg (point))