diff options
| author | Simon Josefsson | 2004-04-09 13:39:30 +0000 |
|---|---|---|
| committer | Simon Josefsson | 2004-04-09 13:39:30 +0000 |
| commit | 758b7b09622af0b743d00e84395ae60eb3653377 (patch) | |
| tree | f3777d5c2c6b6c63391b6486c8cf03e3c5373095 | |
| parent | 91fa27cd3227261dc694a54b069963e9448eb407 (diff) | |
| download | emacs-758b7b09622af0b743d00e84395ae60eb3653377.tar.gz emacs-758b7b09622af0b743d00e84395ae60eb3653377.zip | |
Add comment, based on report by kdc@rcn.com (Kevin D. Clark).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fd15aaf2004..308b3fdb020 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-04-09 Simon Josefsson <jas@extundo.com> | ||
| 2 | |||
| 3 | * mail/smtpmail.el: Add comment, based on report by | ||
| 4 | kdc@rcn.com (Kevin D. Clark). | ||
| 5 | |||
| 1 | 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * progmodes/compile.el (compilation-mode-font-lock-keywords): | 8 | * progmodes/compile.el (compilation-mode-font-lock-keywords): |
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 3ebea497e87..60831b259d8 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | ;;; smtpmail.el --- simple SMTP protocol (RFC 821) for sending mail | 1 | ;;; smtpmail.el --- simple SMTP protocol (RFC 821) for sending mail |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1995, 1996, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1995, 1996, 2001, 2002, 2003, 2004 |
| 4 | ;; Free Software Foundation, Inc. | ||
| 4 | 5 | ||
| 5 | ;; Author: Tomoji Kagatani <kagatani@rbc.ncl.omron.co.jp> | 6 | ;; Author: Tomoji Kagatani <kagatani@rbc.ncl.omron.co.jp> |
| 6 | ;; Maintainer: Simon Josefsson <simon@josefsson.org> | 7 | ;; Maintainer: Simon Josefsson <simon@josefsson.org> |
| @@ -44,6 +45,8 @@ | |||
| 44 | ;; '(("YOUR SMTP HOST" 25 "username" "password"))) | 45 | ;; '(("YOUR SMTP HOST" 25 "username" "password"))) |
| 45 | ;;(setq smtpmail-starttls-credentials | 46 | ;;(setq smtpmail-starttls-credentials |
| 46 | ;; '(("YOUR SMTP HOST" 25 "~/.my_smtp_tls.key" "~/.my_smtp_tls.cert"))) | 47 | ;; '(("YOUR SMTP HOST" 25 "~/.my_smtp_tls.key" "~/.my_smtp_tls.cert"))) |
| 48 | ;; Where the 25 equals the value of `smtpmail-smtp-service', it can be an | ||
| 49 | ;; integer or a string, just as long as they match (eq). | ||
| 47 | 50 | ||
| 48 | ;; To queue mail, set smtpmail-queue-mail to t and use | 51 | ;; To queue mail, set smtpmail-queue-mail to t and use |
| 49 | ;; smtpmail-send-queued-mail to send. | 52 | ;; smtpmail-send-queued-mail to send. |