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