From: yamaoka Date: Wed, 13 Sep 2000 01:09:46 +0000 (+0000) Subject: Synch with Gnus. X-Git-Tag: t-gnus-6_14-quimby-before-installer-changed-~104 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=c271674bfbd0e1b6bb9066159e095c08f18df4a7;p=elisp%2Fgnus.git- Synch with Gnus. --- diff --git a/contrib/rfc2015.el b/contrib/rfc2015.el index 68305a8..00b51e3 100644 --- a/contrib/rfc2015.el +++ b/contrib/rfc2015.el @@ -23,8 +23,10 @@ ;;; Commentary: -;; Installation: put the following statement in ~/.gnus or ~/.emacs: -;; (add-hook 'gnus-startup-hook 'rfc2015-setup) +;; Installation: put the following statements in ~/.gnus: +;; (require 'rfc2015) +;; (require 'gnus-art) +;; (rfc2015-setup) ;; You may have to make sure that the directory where this file lives ;; is mentioned in `load-path'. ;; diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9f37d87..bd870b9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2000-09-11 Dave Love + + * Changelog: Use iso-2022 coding. + + * gnus-msg.el (gnus-msg-mail): New function. + (gnus-user-agent): New mail agent. + 2000-09-10 Dave Love * message.el: Require mail-abbrevs for XEmacs for a problem with @@ -258,7 +265,7 @@ * mm-decode.el (mm-display-external): Put point at start. -2000-08-10 Kai Großjohann +2000-08-10 Kai Gro,A_(Bjohann * nnmail.el (nnmail-expiry-target): More explicit documentation. @@ -1238,7 +1245,7 @@ Mon May 1 15:09:46 2000 Lars Magne Ingebrigtsen * mm-bodies.el (mm-encode-body): Remove reference to mm-default-charset in comment. -2000-04-24 00:56:00 Björn Torkelsson +2000-04-24 00:56:00 Bj,Av(Brn Torkelsson * rfc2047.el (rfc2047-encode-message-header): Fixing typo. @@ -1347,7 +1354,7 @@ Mon Apr 24 21:12:06 2000 Lars Magne Ingebrigtsen * gnus-sum.el (t): M-down and M-up. -2000-04-22 20:22:03 Kai Großjohann +2000-04-22 20:22:03 Kai Gro,A_(Bjohann * gnus-sum.el: Doc fix. @@ -1408,7 +1415,7 @@ Mon Apr 24 21:12:06 2000 Lars Magne Ingebrigtsen * gnus-msg.el (gnus-configure-posting-styles): Allow nil values to override. -2000-04-21 21:58:20 Kai Großjohann +2000-04-21 21:58:20 Kai Gro,A_(Bjohann * nnmail.el (nnmail-cache-insert): Does some stuff that is probably good to do, or something. I dunno. I just write these @@ -2000,7 +2007,7 @@ Wed Jan 5 17:06:41 2000 Lars Magne Ingebrigtsen * webmail.el (webmail-hotmail-article): Don't insert message id. -1999-12-28 Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Großjohann) +1999-12-28 Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Gro,A_(Bjohann) * nnimap.el (nnimap-split-fancy): New variable. (nnimap-split-fancy): New function. @@ -9158,3 +9165,7 @@ Sat Aug 29 20:34:17 1998 Lars Magne Ingebrigtsen Sat Aug 29 19:32:06 1998 Lars Magne Ingebrigtsen * gnus.el: Gnus v0.2 is released. + +;; Local Variables: +;; coding: iso-2022-7bit +;; End: diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el index 34d7dbd..0e2ca25 100644 --- a/lisp/gnus-msg.el +++ b/lisp/gnus-msg.el @@ -217,6 +217,20 @@ Thank you for your help in stamping out bugs. ;; "c" gnus-summary-send-draft "r" gnus-summary-resend-message) +;;;###autoload +(defun gnus-msg-mail (&rest args) + "Start editing a mail message to be sent. +Like `message-mail', but with Gnus paraphernalia, particularly the +the Gcc: header for archiving purposes." + (interactive) + (gnus-setup-message 'message + (apply 'message-mail args))) + +;;;###autoload +(define-mail-user-agent 'gnus-user-agent + 'gnus-msg-mail 'message-send-and-exit + 'message-kill-buffer 'message-send-hook) + ;;; Internal functions. (defvar gnus-article-reply nil)