Sync with Tramp 2.1.10.
[bpt/emacs.git] / man / smtpmail.texi
CommitLineData
15a21dbf
SJ
1\input texinfo @c -*-texinfo-*-
2@setfilename ../info/smtpmail
3@settitle Emacs SMTP Library
4@syncodeindex vr fn
5@copying
4e6835db 6Copyright @copyright{} 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
15a21dbf
SJ
7
8@quotation
9Permission is granted to copy, distribute and/or modify this document
678e7c71 10under the terms of the GNU Free Documentation License, Version 1.2 or
777081fe
SJ
11any later version published by the Free Software Foundation; with no
12Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
13and with the Back-Cover Texts as in (a) below. A copy of the license
14is included in the section entitled ``GNU Free Documentation License''
15in the Emacs manual.
15a21dbf
SJ
16
17(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
18this GNU Manual, like GNU software. Copies published by the Free
19Software Foundation raise funds for GNU development.''
20
21This document is part of a collection distributed under the GNU Free
22Documentation License. If you want to distribute this document
23separately from the collection, you can do so by adding a copy of the
24license to the document, as described in section 6 of the license.
25@end quotation
26@end copying
27
28@dircategory Emacs
29@direntry
777081fe 30* SMTP: (smtpmail). Emacs library for sending mail via SMTP.
15a21dbf
SJ
31@end direntry
32
33@titlepage
34@title{Emacs SMTP Library}
35@subtitle{An Emacs package for sending mail via SMTP}
f4c61ea8
SJ
36@author{Simon Josefsson, Alex Schroeder}
37@page
38@vskip 0pt plus 1filll
39@insertcopying
15a21dbf
SJ
40@end titlepage
41
f4c61ea8
SJ
42@contents
43
44@ifnottex
15a21dbf 45@node Top
f4c61ea8
SJ
46@top Emacs SMTP Library
47
48@insertcopying
49@end ifnottex
50
51@menu
52* How Mail Works:: Brief introduction to mail concepts.
53* Emacs Speaks SMTP:: How to use the SMTP library in Emacs.
54* Authentication:: Authenticating yourself to the server.
a8f76028 55* Queued delivery:: Sending mail without an internet connection.
f4c61ea8
SJ
56* Server workarounds:: Mail servers with special requirements.
57* Debugging:: Tracking down problems.
84247bb5 58* GNU Free Documentation License:: The license for this documentation.
f4c61ea8
SJ
59
60Indices
61
62* Index:: Index over variables and functions.
63@end menu
15a21dbf 64
f4c61ea8
SJ
65@node How Mail Works
66@chapter How Mail Works
67
68@cindex SMTP
69@cindex MTA
a8f76028 70 On the internet, mail is sent from mail host to mail host using the
f4c61ea8
SJ
71simple mail transfer protocol (SMTP). To send and receive mail, you
72must get it from and send it to a mail host. Every mail host runs a
a8f76028 73mail transfer agent (MTA) such as Exim that accepts mails and passes
f4c61ea8
SJ
74them on. The communication between a mail host and other clients does
75not necessarily involve SMTP, however. Here is short overview of what
76is involved.
77
78@cindex MUA
79 The mail program --- also called a mail user agent (MUA) ---
80usually sends outgoing mail to a mail host. When your computer is
81permanently connected to the internet, it might even be a mail host
82itself. In this case, the MUA will pipe mail to the
83@file{/usr/lib/sendmail} application. It will take care of your mail
84and pass it on to the next mail host.
85
86@cindex ISP
87 When you are only connected to the internet from time to time, your
88internet service provider (ISP) has probably told you which mail host
89to use. You must configure your MUA to use that mail host. Since you
90are reading this manual, you probably want to configure Emacs to use
91SMTP to send mail to that mail host. More on that in the next
92section.
93
94@cindex MDA
95 Things are different when reading mail. The mail host responsible
96for your mail keeps it in a file somewhere. The messages get into the
97file by way of a mail delivery agent (MDA) such as procmail. These
98delivery agents often allow you to filter and munge your mails before
99you get to see it. When your computer is that mail host, this file is
100called a spool, and sometimes located in the directory
a8f76028
JB
101@file{/var/spool/mail/}. All your MUA has to do is read mail from the
102spool, then.
f4c61ea8
SJ
103
104@cindex POP3
105@cindex IMAP
a8f76028 106 When your computer is not always connected to the internet, you
f4c61ea8
SJ
107must get the mail from the remote mail host using a protocol such as
108POP3 or IMAP. POP3 essentially downloads all your mail from the mail
109host to your computer. The mail is stored in some file on your
110computer, and again, all your MUA has to do is read mail from the
111spool.
112
113 When you read mail from various machines, downloading mail from the
114mail host to your current machine is not convenient. In that case,
115you will probably want to use the IMAP protocol. Your mail is kept on
116the mail host, and you can read it while you are connected via IMAP to
117the mail host.
118
119@cindex Webmail
120 So how does reading mail via the web work, you ask. In that case,
121the web interface just allows you to remote-control a MUA on the web
122host. Whether the web host is also a mail host, and how all the
123pieces interact is completely irrelevant. You usually cannot use
124Emacs to read mail via the web, unless you use software that parses
125the ever-changing HTML of the web interface.
126
127@node Emacs Speaks SMTP
128@chapter Emacs Speaks SMTP
15a21dbf
SJ
129
130 Emacs includes a package for sending your mail to a SMTP server and
131have it take care of delivering it to the final destination, rather
132than letting the MTA on your local system take care of it. This can
133be useful if you don't have a MTA set up on your host, or if your
a8f76028 134machine is often disconnected from the internet.
15a21dbf
SJ
135
136 Sending mail via SMTP requires configuring your mail user agent
137(@pxref{Mail Methods,,,emacs}) to use the SMTP library. How to do
138this should be described for each mail user agent; for the default
139mail user agent the variable @code{send-mail-function} (@pxref{Mail
140Sending,,,emacs}) is used; for the Message and Gnus user agents the
141variable @code{message-send-mail-function} (@pxref{Mail
142Variables,,,message}) is used.
143
144@example
145;; If you use the default mail user agent.
146(setq send-mail-function 'smtpmail-send-it)
147;; If you use Message or Gnus.
148(setq message-send-mail-function 'smtpmail-send-it)
149@end example
150
151 Before using SMTP you must find out the hostname of the SMTP server
152to use. Your system administrator should provide you with this
153information, but often it is the same as the server you receive mail
154from.
155
156@table @code
157@item smtpmail-smtp-server
158@vindex smtpmail-smtp-server
159@vindex SMTPSERVER
160 The variable @code{smtpmail-smtp-server} controls the hostname of
161the server to use. It is a string with an IP address or hostname. It
a8f76028 162defaults to the contents of the @env{SMTPSERVER} environment
15a21dbf
SJ
163variable, or, if empty, the contents of
164@code{smtpmail-default-smtp-server}.
165
166@item smtpmail-default-smtp-server
167@vindex smtpmail-default-smtp-server
168 The variable @code{smtpmail-default-smtp-server} controls the
169default hostname of the server to use. It is a string with an IP
170address or hostname. It must be set before the SMTP library is
171loaded. It has no effect if set after the SMTP library has been
172loaded, or if @code{smtpmail-smtp-server} is defined. It is usually
173set by system administrators in a site wide initialization file.
174@end table
175
176The following example illustrates what you could put in
177@file{~/.emacs} to set the SMTP server name.
178
179@example
180;; Send mail using SMTP via mail.example.org.
181(setq smtpmail-smtp-server "mail.example.org")
182@end example
183
184@cindex Mail Submission
185SMTP is normally used on the registered ``smtp'' TCP service port 25.
186Some environments use SMTP in ``Mail Submission'' mode, which uses
187port 587. Using other ports is not uncommon, either for security by
188obscurity purposes, port forwarding, or otherwise.
189
190@table @code
191@item smtpmail-smtp-service
192@vindex smtpmail-smtp-service
193 The variable @code{smtpmail-smtp-service} controls the port on the
194server to contact. It is either a string, in which case it will be
195translated into an integer using system calls, or an integer.
196@end table
197
198The following example illustrates what you could put in
199@file{~/.emacs} to set the SMTP service port.
200
201@example
202;; Send mail using SMTP on the mail submission port 587.
203(setq smtpmail-smtp-service 587)
204@end example
205
15a21dbf 206@node Authentication
f4c61ea8 207@chapter Authentication
15a21dbf 208
f4c61ea8
SJ
209@cindex SASL
210@cindex CRAM-MD5
f4c61ea8
SJ
211@cindex LOGIN
212@cindex STARTTLS
5f85272e
SJ
213@cindex TLS
214@cindex SSL
15a21dbf
SJ
215Many environments require SMTP clients to authenticate themselves
216before they are allowed to route mail via a server. The two following
217variables contains the authentication information needed for this.
19a39660 218
15a21dbf
SJ
219The first variable, @code{smtpmail-auth-credentials}, instructs the
220SMTP library to use a SASL authentication step, currently only the
aef3a1f2 221CRAM-MD5 and LOGIN mechanisms are supported and will be selected in
c7bd999c
SJ
222that order if the server support both.
223
224The second variable, @code{smtpmail-starttls-credentials}, instructs
225the SMTP library to connect to the server using STARTTLS. This means
226the protocol exchange may be integrity protected and confidential by
19a39660
SJ
227using the Transport Layer Security (TLS) protocol, and optionally also
228authentication of the client and server.
229
230TLS is a security protocol that is also known as SSL, although
231strictly speaking, SSL is an older variant of TLS. TLS is backwards
232compatible with SSL. In most mundane situations, the two terms are
233equivalent.
234
235The TLS feature uses the elisp package @file{starttls.el} (see it for
236more information on customization), which in turn require that at
237least one of the following external tools are installed:
c7bd999c
SJ
238
239@enumerate
240@item
241The GNUTLS command line tool @samp{gnutls-cli}, you can get it from
242@url{http://www.gnu.org/software/gnutls/}. This is the recommended
243tool, mainly because it can verify the server certificates.
244
245@item
246The @samp{starttls} external program, you can get it from
247@file{starttls-*.tar.gz} from @uref{ftp://ftp.opaopa.org/pub/elisp/}.
248@end enumerate
249
250It is not uncommon to use both these mechanisms, e.g., to use STARTTLS
251to achieve integrity and confidentiality and then use SASL for client
252authentication.
15a21dbf
SJ
253
254@table @code
255@item smtpmail-auth-credentials
256@vindex smtpmail-auth-credentials
257 The variable @code{smtpmail-auth-credentials} contains a list of
258hostname, port, username and password tuples. When the SMTP library
259connects to a host on a certain port, this variable is searched to
260find a matching entry for that hostname and port. If an entry is
261found, the authentication process is invoked and the credentials are
c7bd999c
SJ
262used.
263
264The hostname field follows the same format as
15a21dbf
SJ
265@code{smtpmail-smtp-server} (i.e., a string) and the port field the
266same format as @code{smtpmail-smtp-service} (i.e., a string or an
267integer). The username and password fields, which either can be
c7bd999c 268@code{nil} to indicate that the user is prompted for the value
15a21dbf
SJ
269interactively, should be strings with the username and password,
270respectively, information that is normally provided by system
271administrators.
272
273@item smtpmail-starttls-credentials
274@vindex smtpmail-starttls-credentials
275 The variable @code{smtpmail-starttls-credentials} contains a list of
276tuples with hostname, port, name of file containing client key, and
277name of file containing client certificate. The processing is similar
278to the previous variable. The client key and certificate may be
c7bd999c 279@code{nil} if you do not wish to use client authentication.
15a21dbf
SJ
280@end table
281
282The following example illustrates what you could put in
283@file{~/.emacs} to enable both SASL authentication and STARTTLS. The
284server name (@code{smtpmail-smtp-server}) is @var{hostname}, the
285server port (@code{smtpmail-smtp-service}) is @var{port}, and the
a8f76028 286username and password are @var{username} and @var{password}
15a21dbf
SJ
287respectively.
288
289@example
290;; Authenticate using this username and password against my server.
291(setq smtpmail-auth-credentials
292 '(("@var{hostname}" "@var{port}" "@var{username}" "@var{password}")))
040447b5
SJ
293
294;; Note that if @var{port} is an integer, you must not quote it as a
295;; string. Normally @var{port} should be the integer 25, and the example
296;; become:
297(setq smtpmail-auth-credentials
298 '(("@var{hostname}" 25 "@var{username}" "@var{password}")))
299
15a21dbf
SJ
300;; Use STARTTLS without authentication against the server.
301(setq smtpmail-starttls-credentials
302 '(("@var{hostname}" "@var{port}" nil nil)))
303@end example
304
305@node Queued delivery
f4c61ea8 306@chapter Queued delivery
15a21dbf 307
f4c61ea8 308@cindex Dialup connection
a8f76028
JB
309If you connect to the internet via a dialup connection, or for some
310other reason don't have permanent internet connection, sending mail
15a21dbf 311will fail when you are not connected. The SMTP library implements
3d80e1a2 312queued delivery, and the following variable control its behavior.
15a21dbf
SJ
313
314@table @code
15a21dbf
SJ
315@item smtpmail-queue-mail
316@vindex smtpmail-queue-mail
317 The variable @code{smtpmail-queue-mail} controls whether a simple
318off line mail sender is active. This variable is a boolean, and
a8f76028
JB
319defaults to @code{nil} (disabled). If this is non-@code{nil}, mail is
320not sent immediately but rather queued in the directory
15a21dbf
SJ
321@code{smtpmail-queue-dir} and can be later sent manually by invoking
322@code{smtpmail-send-queued-mail} (typically when you connect to the
a8f76028 323internet).
15a21dbf 324
a8f76028 325@item smtpmail-queue-dir
15a21dbf
SJ
326@vindex smtpmail-queue-dir
327 The variable @code{smtpmail-queue-dir} specifies the name of the
328directory to hold queued messages. It defaults to
329@file{~/Mail/queued-mail/}.
1cee566b 330@end table
15a21dbf
SJ
331
332@findex smtpmail-send-queued-mail
333 The function @code{smtpmail-send-queued-mail} can be used to send
334any queued mail when @code{smtpmail-queue-mail} is enabled. It is
a8f76028
JB
335typically invoked interactively with @kbd{M-x
336smtpmail-send-queued-mail RET} when you are connected to the internet.
15a21dbf 337
15a21dbf 338@node Server workarounds
f4c61ea8 339@chapter Server workarounds
15a21dbf
SJ
340
341Some SMTP servers have special requirements. The following variables
342implement support for common requirements.
343
344@table @code
345
346@item smtpmail-local-domain
347@vindex smtpmail-local-domain
348 The variable @code{smtpmail-local-domain} controls the hostname sent
349in the first @code{EHLO} or @code{HELO} command sent to the server.
350It should only be set if the @code{system-name} function returns a
351name that isn't accepted by the server. Do not set this variable
352unless your server complains.
353
354@item smtpmail-sendto-domain
355@vindex smtpmail-sendto-domain
356 The variable @code{smtpmail-sendto-domain} makes the SMTP library
357add @samp{@@} and the specified value to recipients specified in the
358message when they are sent using the @code{RCPT TO} command. Some
3d80e1a2 359configurations of sendmail requires this behavior. Don't bother to
15a21dbf
SJ
360set this unless you have get an error like:
361
362@example
363 Sending failed; SMTP protocol error
364@end example
365
366when sending mail, and the debug buffer (@pxref{Debugging})) contains
367an error such as:
368
369@example
370 RCPT TO: @var{someone}
371 501 @var{someone}: recipient address must contain a domain
372@end example
373
374@end table
375
376
377@node Debugging
f4c61ea8 378@chapter Debugging
15a21dbf
SJ
379
380Sometimes delivery fails, often with the generic error message
381@samp{Sending failed; SMTP protocol error}. Enabling one or both of
382the following variables and inspecting a trace buffer will often give
383clues to the reason for the error.
384
385@table @code
386
387@item smtpmail-debug-info
388@vindex smtpmail-debug-info
389 The variable @code{smtpmail-debug-info} controls whether to print
390the SMTP protocol exchange in the minibuffer, and retain the entire
391exchange in a buffer @samp{*trace of SMTP session to @var{server}*},
392where @var{server} is the name of the mail server to which you send
393mail.
394
395@item smtpmail-debug-verb
396@vindex smtpmail-debug-verb
397 The variable @code{smtpmail-debug-verb} controls whether to send the
398@code{VERB} token to the server. The @code{VERB} server instructs the
399server to be more verbose, and often also to attempt final delivery
400while your SMTP session is still running. It is usually only useful
401together with @code{smtpmail-debug-info}. Note that this may cause
402mail delivery to take considerable time if the final destination
403cannot accept mail.
404
405@end table
406
84247bb5
CY
407@node GNU Free Documentation License
408@chapter GNU Free Documentation License
409@include doclicense.texi
410
15a21dbf 411@node Index
f4c61ea8
SJ
412@chapter Index
413
414@section Concept Index
415
416@printindex cp
417
15a21dbf 418@section Function and Variable Index
f4c61ea8 419
15a21dbf
SJ
420@printindex fn
421
422@contents
423@bye
ab5796a9
MB
424
425@ignore
426 arch-tag: 6316abdf-b366-4562-87a2-f37e8f894b6f
427@end ignore