* mail-source.el (mail-source-touch-pop): Doc fix.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 8 Mar 2004 06:54:23 +0000 (06:54 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 8 Mar 2004 06:54:23 +0000 (06:54 +0000)
* message.el (message-smtpmail-send-it): Doc fix.

lisp/ChangeLog
lisp/mail-source.el
lisp/message.el

index bb3bc78..0d040ef 100644 (file)
@@ -1,3 +1,9 @@
+2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * mail-source.el (mail-source-touch-pop): Doc fix.
+
+       * message.el (message-smtpmail-send-it): Doc fix.
+
 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
 
        * sha1-el.el (sha1-maximum-internal-length): Doc fix.
index df66090..39a202c 100644 (file)
@@ -825,12 +825,13 @@ Pass INFO on to CALLBACK."
   "Open and close a POP connection shortly.
 POP server should be defined in `mail-source-primary-source' (which is
 preferred) or `mail-sources'.  You may use it for the POP-before-SMTP
-authentication.  To do that, you need to set the option
-`message-send-mail-function' to `message-smtpmail-send-it' and put the
-following line in .gnus file:
+authentication.  To do that, you need to set the
+`message-send-mail-function' variable as `message-smtpmail-send-it'
+and put the following line in your ~/.gnus.el file:
 
 \(add-hook 'message-send-mail-hook 'mail-source-touch-pop)
-"
+
+See the Gnus manual for details."
   (let ((sources (if mail-source-primary-source
                     (list mail-source-primary-source)
                   mail-sources)))
index b488171..0ddcc1a 100644 (file)
@@ -3892,8 +3892,8 @@ to find out how to use this."
   "Send the prepared message buffer with `smtpmail-send-it'.
 This only differs from `smtpmail-send-it' that this command evaluates
 `message-send-mail-hook' just before sending a message.  It is useful
-if your ISP requires the POP-before-SMTP authentication.  See the
-documentation for the function `mail-source-touch-pop'."
+if your ISP requires the POP-before-SMTP authentication.  See the Gnus
+manual for details."
   (run-hooks 'message-send-mail-hook)
   (smtpmail-send-it))