Synch with Oort Gnus.
authoryamaoka <yamaoka>
Tue, 10 Apr 2001 23:09:52 +0000 (23:09 +0000)
committeryamaoka <yamaoka>
Tue, 10 Apr 2001 23:09:52 +0000 (23:09 +0000)
lisp/ChangeLog
lisp/imap.el
lisp/message.el

index 4224fd9..f947b68 100644 (file)
@@ -1,3 +1,17 @@
+2001-04-10  Simon Josefsson  <simon@josefsson.org>
+
+       * message.el (message-options-set-recipient): Look at Cc and Bcc too.
+
+2001-04-10  Colin Marquardt <colin.marquardt@usa.alcatel.com>
+
+       * message.el (message-send-mail): Improve the interaction with the
+       user.
+
+2001-04-10  Simon Josefsson  <simon@josefsson.org>
+
+       * imap.el (imap-message-copy): Work around buggy servers that
+       doesn't send TRYCREATE tags.
+
 2001-04-09 01:15:54  Katsumi Yamaoka <yamaoka@jpl.org>
 
        * gnus-start.el (gnus-read-newsrc-el-file): Work with Semi-gnusae.
index 4bdff4e..ec2585b 100644 (file)
@@ -1451,8 +1451,11 @@ first element, rest of list contain the saved articles' UIDs."
              (if (imap-ok-p (imap-send-command-wait cmd))
                  t
                (when (and (not dont-create)
-                          (imap-mailbox-get-1 'trycreate mailbox))
-                 (imap-mailbox-create-1 mailbox)
+                          ;; removed because of buggy Oracle server
+                          ;; that doesn't send TRYCREATE tags (which
+                          ;; is a MUST according to specifications):
+                          ;;(imap-mailbox-get-1 'trycreate mailbox)
+                          (imap-mailbox-create-1 mailbox))
                  (imap-ok-p (imap-send-command-wait cmd)))))
            (or no-copyuid
                (imap-message-copyuid-1 mailbox)))))))
index eb53fbc..e97cf63 100644 (file)
@@ -3042,7 +3042,7 @@ This sub function is for exclusive use of `message-send-mail'."
        (prin1-to-string failure)))))
 
 (defun message-send-mail-partially ()
-  "Sendmail as message/partial."
+  "Send mail as message/partial."
   ;; replace the header delimiter with a blank line
   (goto-char (point-min))
   (re-search-forward
@@ -5872,8 +5872,11 @@ regexp varstr."
                         (mail-strip-quoted-names
                          (message-fetch-field "from")))
     (message-options-set 'message-recipients
-                         (mail-strip-quoted-names
-                          (message-fetch-field "to")))))
+                        (mail-strip-quoted-names
+                         (concat
+                          (or (message-fetch-field "to") "") ", "
+                          (or (message-fetch-field "cc") "") ", "
+                          (or (message-fetch-field "bcc") ""))))))
 
 (when (featurep 'xemacs)
   (require 'messagexmas)