* gnus-sum.el (gnus-get-newsgroup-headers): Search for "from:"
authorSimon Josefsson <jas@extundo.com>
Tue, 17 Oct 2000 20:34:43 +0000 (20:34 +0000)
committerSimon Josefsson <jas@extundo.com>
Tue, 17 Oct 2000 20:34:43 +0000 (20:34 +0000)
instead of "from: " for rfc822 compliance.

* gnus-uu.el (gnus-uu-digest-mail-forward): Ditto. Insert SPC.

* nnheader.el (nnheader-parse-head): Ditto.

lisp/ChangeLog
lisp/gnus-sum.el
lisp/gnus-uu.el
lisp/nnheader.el

index a103e3f..8ca328b 100644 (file)
@@ -1,3 +1,12 @@
+2000-10-17  Simon Josefsson  <simon@josefsson.org>
+
+       * gnus-sum.el (gnus-get-newsgroup-headers): Search for "from:"
+       instead of "from: " for rfc822 compliance.
+
+       * gnus-uu.el (gnus-uu-digest-mail-forward): Ditto. Insert SPC.
+
+       * nnheader.el (nnheader-parse-head): Ditto.
+
 2000-10-13  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
 
        * mail-source.el (defvar mail-source-keyword-map): Use
index 1896c85..8cd5e30 100644 (file)
@@ -4745,7 +4745,7 @@ The resulting hash table is returned, or nil if no Xrefs were found."
            ;; From.
            (progn
              (goto-char p)
-             (if (search-forward "\nfrom: " nil t)
+             (if (search-forward "\nfrom:" nil t)
                  (funcall gnus-decode-encoded-word-function
                           (nnheader-header-value))
                "(nobody)"))
index c1960f6..f4ff2ea 100644 (file)
@@ -561,9 +561,9 @@ didn't work, and overwrite existing files.  Otherwise, ask each time."
        (delete-region (point) (gnus-point-at-eol))
        (insert subject))
       (goto-char (point-min))
-      (when (re-search-forward "^From: ")
+      (when (re-search-forward "^From:")
        (delete-region (point) (gnus-point-at-eol))
-       (insert from))
+       (insert " " from))
       (message-forward post t))
     (setq gnus-uu-digest-from-subject nil)))
 
index 1861d7f..24d6090 100644 (file)
@@ -216,7 +216,7 @@ on your system, you could say something like:
           ;; From.
           (progn
             (goto-char p)
-            (if (search-forward "\nfrom: " nil t)
+            (if (search-forward "\nfrom:" nil t)
                 (nnheader-header-value) "(nobody)"))
           ;; Date.
           (progn