diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-02-09 16:17:56 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-02-09 16:17:56 +0000 |
commit | 1429d866a5c0aa4994a9d5d08f0f19d0c2de785c (patch) | |
tree | 77980d6990e3739d3d8778bd1f8a8984fabfc6f2 /lisp | |
parent | 8f92ec4d4f792a836f1d14748a5cebe48b60af5d (diff) | |
download | emacs-1429d866a5c0aa4994a9d5d08f0f19d0c2de785c.tar.gz |
(smtpmail-smtp-service, smtpmail-queue-index-file): Fix typos in docstrings.
(smtpmail-local-domain, smtpmail-queue-mail): Doc fixes.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/smtpmail.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 2dba755081f..e1e742a1d72 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el @@ -99,13 +99,13 @@ This only has effect if you specify it before loading the smtpmail library." (defcustom smtpmail-smtp-service 25 "*SMTP service port number. -The default value would be \"smtp\" or 25 ." +The default value would be \"smtp\" or 25." :type '(choice (integer :tag "Port") (string :tag "Service")) :group 'smtpmail) (defcustom smtpmail-local-domain nil "*Local domain name without a host name. -If the function (system-name) returns the full internet address, +If the function `system-name' returns the full internet address, don't define this value." :type '(choice (const nil) string) :group 'smtpmail) @@ -145,7 +145,7 @@ The commands enables verbose information from the SMTP server." :group 'smtpmail) (defcustom smtpmail-queue-mail nil - "*Specify if mail is queued (if t) or sent immediately (if nil). + "*If set, mail is queued; otherwise it is sent immediately. If queued, it is stored in the directory `smtpmail-queue-dir' and sent with `smtpmail-send-queued-mail'." :type 'boolean @@ -198,7 +198,7 @@ new SMTP extensions that might be useful to support." :group 'smtpmail) (defvar smtpmail-queue-index-file "index" - "File name of queued mail index, + "File name of queued mail index. This is relative to `smtpmail-queue-dir'.") (defvar smtpmail-address-buffer) |