(smtpmail-send-it): Extend the search bound to the end of the field for
authoryamaoka <yamaoka>
Wed, 16 Jun 1999 04:54:09 +0000 (04:54 +0000)
committeryamaoka <yamaoka>
Wed, 16 Jun 1999 04:54:09 +0000 (04:54 +0000)
fetching the recipients from Resent-To.

smtpmail.el

index 3d330ec..6458710 100644 (file)
@@ -130,7 +130,8 @@ This is relative to `smtpmail-queue-dir'.")
                    (save-restriction
                      (narrow-to-region (point)
                                        (save-excursion
-                                         (end-of-line)
+                                         (while (looking-at "^[ \t]")
+                                           (forward-line 1))
                                          (point)))
                      (append (mail-parse-comma-list)
                              resend-to-addresses))))