aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/smtpmail.texi7
1 files changed, 7 insertions, 0 deletions
diff --git a/man/smtpmail.texi b/man/smtpmail.texi
index 6efe6f71630..26fd77eafb3 100644
--- a/man/smtpmail.texi
+++ b/man/smtpmail.texi
@@ -279,6 +279,13 @@ respectively.
279;; Authenticate using this username and password against my server. 279;; Authenticate using this username and password against my server.
280(setq smtpmail-auth-credentials 280(setq smtpmail-auth-credentials
281 '(("@var{hostname}" "@var{port}" "@var{username}" "@var{password}"))) 281 '(("@var{hostname}" "@var{port}" "@var{username}" "@var{password}")))
282
283;; Note that if @var{port} is an integer, you must not quote it as a
284;; string. Normally @var{port} should be the integer 25, and the example
285;; become:
286(setq smtpmail-auth-credentials
287 '(("@var{hostname}" 25 "@var{username}" "@var{password}")))
288
282;; Use STARTTLS without authentication against the server. 289;; Use STARTTLS without authentication against the server.
283(setq smtpmail-starttls-credentials 290(setq smtpmail-starttls-credentials
284 '(("@var{hostname}" "@var{port}" nil nil))) 291 '(("@var{hostname}" "@var{port}" nil nil)))