diff options
| author | Simon Josefsson | 2004-02-29 22:08:05 +0000 |
|---|---|---|
| committer | Simon Josefsson | 2004-02-29 22:08:05 +0000 |
| commit | aef3a1f2eb041c10d6e2c8e2c4e03590b6fde0fc (patch) | |
| tree | dcf57fe8b1a84f8952753cc9c161672e5e7f5bb8 /man | |
| parent | 5bb0fcd1e717b608155c8c234e55204ad5894d7c (diff) | |
| download | emacs-aef3a1f2eb041c10d6e2c8e2c4e03590b6fde0fc.tar.gz emacs-aef3a1f2eb041c10d6e2c8e2c4e03590b6fde0fc.zip | |
(Authentication): Changed the list of supported
authentication mechanisms from CRAM-MD5, PLAIN and LOGIN-MD5 to
CRAM-MD5 and LOGIN, tiny patch from Andreas Voegele
<voegelas@gmx.net>.
Diffstat (limited to 'man')
| -rw-r--r-- | man/ChangeLog | 7 | ||||
| -rw-r--r-- | man/smtpmail.texi | 20 |
2 files changed, 16 insertions, 11 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index 116cb15ccef..a43729904a8 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2004-02-29 Simon Josefsson <jas@extundo.com> | ||
| 2 | |||
| 3 | * smtpmail.texi (Authentication): Changed the list of supported | ||
| 4 | authentication mechanisms from CRAM-MD5, PLAIN and LOGIN-MD5 to | ||
| 5 | CRAM-MD5 and LOGIN, tiny patch from Andreas Voegele | ||
| 6 | <voegelas@gmx.net>. | ||
| 7 | |||
| 1 | 2004-02-29 Juanma Barranquero <lektu@terra.es> | 8 | 2004-02-29 Juanma Barranquero <lektu@terra.es> |
| 2 | 9 | ||
| 3 | * makefile.w32-in (mostlyclean, clean, maintainer-clean): Use | 10 | * makefile.w32-in (mostlyclean, clean, maintainer-clean): Use |
diff --git a/man/smtpmail.texi b/man/smtpmail.texi index c04d5a19bd2..08ce87ac995 100644 --- a/man/smtpmail.texi +++ b/man/smtpmail.texi | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | @settitle Emacs SMTP Library | 3 | @settitle Emacs SMTP Library |
| 4 | @syncodeindex vr fn | 4 | @syncodeindex vr fn |
| 5 | @copying | 5 | @copying |
| 6 | Copyright @copyright{} 2003 Free Software Foundation, Inc. | 6 | Copyright @copyright{} 2003, 2004 Free Software Foundation, Inc. |
| 7 | 7 | ||
| 8 | @quotation | 8 | @quotation |
| 9 | Permission is granted to copy, distribute and/or modify this document | 9 | Permission is granted to copy, distribute and/or modify this document |
| @@ -207,7 +207,6 @@ The following example illustrates what you could put in | |||
| 207 | 207 | ||
| 208 | @cindex SASL | 208 | @cindex SASL |
| 209 | @cindex CRAM-MD5 | 209 | @cindex CRAM-MD5 |
| 210 | @cindex PLAIN | ||
| 211 | @cindex LOGIN | 210 | @cindex LOGIN |
| 212 | @cindex STARTTLS | 211 | @cindex STARTTLS |
| 213 | Many environments require SMTP clients to authenticate themselves | 212 | Many environments require SMTP clients to authenticate themselves |
| @@ -215,15 +214,14 @@ before they are allowed to route mail via a server. The two following | |||
| 215 | variables contains the authentication information needed for this. | 214 | variables contains the authentication information needed for this. |
| 216 | The first variable, @code{smtpmail-auth-credentials}, instructs the | 215 | The first variable, @code{smtpmail-auth-credentials}, instructs the |
| 217 | SMTP library to use a SASL authentication step, currently only the | 216 | SMTP library to use a SASL authentication step, currently only the |
| 218 | CRAM-MD5, PLAIN and LOGIN-MD5 mechanisms are supported and will be | 217 | CRAM-MD5 and LOGIN mechanisms are supported and will be selected in |
| 219 | selected in that order if the server supports them. The second | 218 | that order if the server supports them. The second variable, |
| 220 | variable, @code{smtpmail-starttls-credentials}, instructs the SMTP | 219 | @code{smtpmail-starttls-credentials}, instructs the SMTP library to |
| 221 | library to connect to the server using STARTTLS. This means the | 220 | connect to the server using STARTTLS. This means the protocol |
| 222 | protocol exchange can be integrity protected and confidential by using | 221 | exchange can be integrity protected and confidential by using TLS, and |
| 223 | TLS, and optionally also authentication of the client. It is common | 222 | optionally also authentication of the client. It is common to use |
| 224 | to use both these mechanisms, e.g., to use STARTTLS to achieve | 223 | both these mechanisms, e.g., to use STARTTLS to achieve integrity and |
| 225 | integrity and confidentiality and then use SASL for client | 224 | confidentiality and then use SASL for client authentication. |
| 226 | authentication. | ||
| 227 | 225 | ||
| 228 | @table @code | 226 | @table @code |
| 229 | @item smtpmail-auth-credentials | 227 | @item smtpmail-auth-credentials |