Make ldap_require_cert work (not segfault).
[exim.git] / doc / doc-src / FAQ.src
CommitLineData
9c2b45c9 1## $Cambridge: exim/doc/doc-src/FAQ.src,v 1.8 2009/11/05 19:37:00 nm4 Exp $
495ae4b0
PH
2##
3## This file is processed by Perl scripts to produce an ASCII and an HTML
4## version. Lines starting with ## are omitted. The markup used with paragraphs
5## is as follows:
6##
7## Markup User for HTML Text
8## ------------------------------------------------------
9## \...\ option fixed-pitch "quoted"
10## \$...$\ variable $italic $plain
11## \*...*\ titles, quotes italic "quoted"
12## \(...)\ file name italic plain
13## \[...]\ replaceable <italic> <plain>
14## \?...?\ URL URL plain
15## \^...^\ Unix command italic plain
16## \%...%\ Exim driver bold "quoted"
17## \^^.^^\ C function bold plain
18## ::...:: header name italic: plain:
19## //...// domain italic plain
20## \/.../\ local part italic plain
21## \"..."\ literal fixed-pitch "quoted"
22## \\...\\ SMTP, build small caps caps
23## \**...**\ warn, item bold plain
24## \-...-\ cmd option -italic -plain
25## \# hard space &nbsp; space
26##
27## ``...'' quoted string &#147;...&#148; "..."
28##
29## @\ is used when a real backslash is required
30##
31## In addition, sequences of not blank lines that start with ==> are displayed
32## in fixed-pitch with no further interpretation. A line containing only [[br]]
33## is removed from the text version, but turned into <br> in the HTML version.
34##
35## The starts of sections and of questions and answers are automatically
36## detected by the scripts.
37##
38##
39THE EXIM FAQ
40------------
41
42This is the FAQ for the Exim Mail Transfer Agent. Many thanks to the many
43people who provided the original information. This file would be amazingly
44cluttered if I tried to list them all. Suggestions for corrections,
45improvements, and additions are always welcome.
46
8e26e4bf 47This version of the FAQ applies to Exim 4.43 and later releases.
495ae4b0
PH
48
49References of the form Cnnn, Fnnn, Lnnn, and Snnn are to the sample
50configuration, filter, \^^local_scan()^^\, and ``useful script'' files. These
51are hyperlinked from the HTML version of this FAQ. They can also be found in
52the separately distributed directory called \(config.samples)\. The primary
53location is
54
55\?ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/config.samples.tar.gz?\
56\?ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/config.samples.tar.bz2?\
57
58There are brief descriptions of these files at the end of this document.
59
60Philip Hazel
8e26e4bf 61Last update: 14-October-2004
495ae4b0
PH
62
63
64The FAQ is divided into the following sections:
65
66 0. General Debugging
67 1. Building and Installing
68 2. Routing in general
69 3. Routing to remote hosts
70 4. Routing for local delivery
71 5. Filtering
72 6. Delivery
73 7. Policy controls
74 8. Rewriting addresses
75 9. Headers
76 10. Performance
77 11. Majordomo
78 12. Fetchmail
79 13. Perl
80 14. Dial-up and ISDN
81 15. UUCP
82 16. Modifying message bodies
83 17. Encryption (TLS/SSL)
84 20. Millennium
85 50. Miscellaneous
86 91. Mac OS X
87 92. FreeBSD
88 93. HP-UX
89 94. BSDI
90 95. IRIX
91 96. Linux
5e0b134b 92 97. Sun systems
495ae4b0
PH
93 98. Configuration cookbook
94 99. List of sample configurations
95
96
97
980. GENERAL DEBUGGING
99
100Q0001: Exim is crashing. What is wrong?
101
102A0001: Exim should never crash. The author is always keen to know about
103 crashes, so that they can be diagnosed and fixed. However, before you
104 start sending me email, please check that you are running the latest
105 release of Exim, in case the problem has already been fixed. The
106 techniques described below can also be useful in trying to pin down
107 exactly which circumstances caused the crash and what Exim was trying to
8e26e4bf 108 do at the time. If the crash is reproducible (by a particular message,
495ae4b0
PH
109 say) keep a copy of that message.
110
111
112Q0002: Exim is not working. What is wrong? How can I check what it is doing?
113
114A0002: Exactly how is it not working? Check the more specific questions in the
115 other sections of this FAQ. Some general techniques for debugging are:
116
117 (1) Look for information in Exim's log files. These are in the \(log)\
118 directory in Exim's spool directory, unless you have configured a
119 different path for them. Serious operational problems are reported
120 in paniclog.
121
122 (2) If the problem involves the delivery of one or more messages, try
123 forcing a delivery with the \-M-\ option and also set the \-d-\
124 option, to cause Exim to output debugging information. For example:
125
126==> exim -d -M 0z6CXU-0005RR-00
127
128 The output is written to the standard error stream. You need to have
129 admin privileges to use \-M-\ and \-d-\.
130
131 (3) If the problem involves incoming SMTP mail, try using the \-bh-\
132 option to simulate an incoming connection from a specific host,
133 for example:
134
135==> exim -bh 10.9.8.7
136
137 This goes through the motions of an SMTP session, without actually
138 accepting a message. Information about various policy checks is
139 output. You will need to know how to pretend to be an SMTP client.
140
141 (4) If the problem involves lack of recognition or incorrect handling
142 of local addresses, try using the \-bt-\ option with debugging turned
143 on, to see how Exim is handling the address. For example,
144
145==> exim -d -bt z6abc
146
147 shows you how it would handle the local part \"z6abc"\.
148
149
150Q0003: What does the error \*Child process of address_pipe transport returned
8e26e4bf 151 127 from command xxx*\ mean?
495ae4b0
PH
152
153A0003: It means that when a transport called \%address_pipe%\ was run to pass an
154 email message by means of a pipe to another process running the command
8e26e4bf 155 xxx, the return code from that command was 127, which indicates some kind
495ae4b0
PH
156 of error (the success return code is 0).
157
8e26e4bf
PH
158 The most common meaning of exit code 127 is that when Exim tried to run
159 the command \(xxx)\, it failed. One cause of this might be incorrect
160 permissions on the file containing the command. See also Q0026.
495ae4b0
PH
161
162
163Q0004: My virtual domain setup isn't working. How can I debug it?
164
165A0004: You can use an exim command with \-d-\ to get it to show you how it is
166 processing addresses. You don't actually need to send a message; use the
167 \-bt-\ option like this:
168
169==> exim -d -bt localpart@virtualhost
170
171 This will show you which routers it is using. If the problem appears
172 to be with the expansion of an option setting, you can use the
173 \debug_print\ option on a router to get Exim to output the expanded
174 string values as it goes along.
175
176
177Q0005: Why is Exim not rejecting incoming messages addressed to non-existent
178 users at SMTP time?
179
180A0005: This is controlled by the ACL that is run for each incoming RCPT
181 command. It is defined by the \acl_smtp_rcpt\ option. You can check this
182 part of your configuration by using the \-bh-\ option to run a simulated
183 SMTP session, during which Exim will tell you what things it is
184 checking.
185
186
187Q0006: I've put an entry for \"*.my.domain"\ in a DBM lookup file, but it isn't
188 getting recognized.
189
190A0006: You need to request ``partial matching'' by setting the search type to
191 \partial-dbm\ in order for this to work.
192
193
194Q0007: I've put the entry \"*@domain.com"\ in a lookup database, but it isn't
195 working. The expansion I'm using is:
196
197==> ${lookup{${lc:$sender_address}}dbm{/the/file} ...
198
199A0007: As no sender address will ever be //*@domain.com// this will indeed have
200 no effect as it stands. You need to tell Exim that you want it to look
201 for defaults after the normal lookup has failed. In this case, change the
202 search type from \"dbm"\ to \"dbm*@"\. See the section on \*Default values in
203 single-key lookups*\ in the chapter entitled \*File and database
204 lookups*\ in the Exim manual.
205
206
207Q0008: If I run \"./exim -d -bt user@domain"\ all seems well, but when I send
208 a message from my User Agent, it does not arrive at its destination.
209
210A0008: Try sending a message directly to Exim by typing this:
211
212==> exim -v user@domain
213 <some message, could be empty>
214 .
215
216 If the message gets delivered to a remote host, but never arrives at its
217 final destination, then the problem is at the remote host. If, however,
218 the message gets through correctly, then the problem may be between your
219 User Agent and Exim. Try setting Exim's \log_selector\ option to include
220 \"+arguments"\, to see with which arguments the UA is calling Exim.
221
222
223Q0009: What does \*no immediate delivery: too many messages received in one SMTP
224 connection*\ mean?
225
226A0009: An SMTP client may send any number of messages down a single SMTP
227 connection to a server. Initially, an Exim server starts up a delivery
228 process as soon as a message is received. However, in order not to start
229 up too many processes when lots of messages are arriving (typically
230 after a period of downtime), it stops doing immediate delivery after a
231 certain number of messages have arrived down the same connection. The
232 threshold is set by \smtp_accept_queue_per_connection\, and the default
233 value is 10. On large systems, the value should be increased. If you are
234 running a dial-in host and expecting to get all your mail down a single
235 SMTP connection, then you can disable the limit altogether by setting
236 the value to zero.
237
238
239Q0010: Exim puts \*for \[address]\*\ in the ::Received:: headers of some, but not all,
240 messages. Is this a bug?
241
242A0010: No. It is deliberate. Exim inserts a ``for'' phrase only if the incoming
243 message has precisely one recipient. If there is more than one
244 recipient, nothing is inserted. The reason for this is that not all
245 recipients appear in the ::To:: or ::Cc:: headers, and it is considered a
246 breach of privacy to expose such recipients to the others. A common
247 case is when a message has come from a mailing list.
248
249
250Q0011: Instead of \^exim_dbmbuild^\, I'm using a homegrown program to build DBM
251 (or cdb) files, but Exim doesn't seem to be able to use them.
252
253A0011: Exim expects there to be a binary zero value on the end of each key used
254 in a DBM file if you use the \"dbm"\ lookup type, but not for the \"dbmnz"\
255 lookup type or for the keys of a cdb file. Check that you haven't
256 slipped up in this regard.
257
258
259Q0012: Exim is unable to route to any remote domains. It doesn't seen to be
260 able to access the DNS.
261
262A0012: Try running \"exim -d+resolver -bt \[remote address]\"\. The \-d-\
263 options turns on debugging output, and the addition of \"+resolver"\
264 will make it show the resolver queries it is building and the results of
265 its DNS queries. If it appears unable to contact any name servers, check
266 the contents and permissions of \(/etc/resolv.conf)\.
267
268
269Q0013: What does the error message \*transport system_aliases: cannot find
270 transport driver "redirect" in line 92*\ mean?
271
272A0013: \%redirect%\ is a router, not a transport. You have put a configuration
273 for a router into the transports section of the configuration file.
274
275
276Q0014: Exim is timing out after receiving and responding to the DATA command
277 from one particular host, and yet the client host also claims to be
278 timing out. This seems to affect only certain messages.
279
280A0014: This kind of problem can have many different causes.
281
282 (1) This problem has been seen with a network that was dropping all
283 packets over a certain size, which mean that the first part of the SMTP
284 transaction worked, but when the body of a large message started
285 flowing, the main data bits never got through the network. See also
286 Q0017.
287
288 (2) This can also happen if a host has a broken TCP stack and won't
289 reassemble fragmented datagrams.
290
291 (3) A very few ISDN lines have been seen which failed when certain data
292 patterns were sent through them, and replacing the routers at both end
293 of the link did not fix things. One of them was triggered by more than 4
294 X's in a row in the data.
295
296
297Q0015: What does the message \*Socket bind() to port 25 for address (any)
298 failed: address already in use*\ mean?
299
300A0015: You are trying to run an Exim daemon when there is one already running -
301 or maybe some other MTA is running, or perhaps you have an SMTP line in
302 \(/etc/inetd.conf)\ which is causing \(inetd)\ to listen on port 25.
303
304
305Q0016: I've set \"verify = header_syntax"\ in my ACL, but this causes Exim to
306 complain about header lines like \"To: Work: Jim <jims@email>,
307 Home: Bob <bobs@email>"\ which look all right to me. Is this a bug?
308
309A0016: No. Header lines such as ::From::, ::To::, etc., which contain addresses, are
310 structured, and have to be in a specific format which is defined in RFC
311 2822. Unquoted colons are not allowed in the ``phrase'' part of an email
312 address (they are OK in other headers such as ::Subject::). The correct
313 form for that header is
314
315==> To: "Work: Jim" <jims@email>, "Home: Bob" <bobs@email>
316
317 You will sometimes see unquoted colons in ::To:: and ::Cc:: headers, but only
318 in connection with name lists (called ``groups''), for example:
319
320==> To: My friends: X <x@y.x>, Y <y@w.z>;,
321 My enemies: A <a@b.c>, B <b@c.d>;
322
323 Each list must be terminated by a semicolon, as shown.
324
325
326Q0017: Whenever Exim tries to deliver a specific message to a particular
327 server, it fails, giving the error \*Remote end closed connection after
328 data*\ or \*Broken pipe*\ or a timeout. What's going on?
329
330A0017: \*Broken pipe*\ is the error you get on some OS when the remote host just
331 drops the connection. The alternative is \*connection reset by peer*\.
332 There are many potential causes. Here are some of them (see also Q0068):
333
334 (1) There are some firewalls that fall over on binary zero characters
335 in email. Have a look, e.g. with \"hexdump -c mymail | tail"\ to see if
336 your mail contains any binary zero characters.
337
338 (2) There are broken SMTP servers around that just drop the connection
339 after the data has been sent if they don't like the message for some
340 reason (e.g. it is too big) instead of sending a 5xx error code. Have
341 you tried sending a small message to the same address?
342
343 It has been reported that some releases of Novell servers running NIMS
344 are unable to handle lines longer than 1024 characters, and just close
345 the connection. This is an example of this behaviour.
346
347 (3) If the problem occurs right at the start of the mail, then it could
348 be a network problem with mishandling of large packets. Many emails are
349 small and thus appear to propagate correctly, but big emails will
350 generate big IP datagrams.
351
352 There have been problems when something in the middle of the network
353 mishandles large packets due to IP tunnelling. In a tunnelled link, your
354 IP datagrams gets wrapped in a larger datagram and sent over a network.
355 This is how virtual private networks (VPNs), and some ISP transit
356 circuits work. Since the datagrams going over the tunnel require a
357 larger packet size, the tunnel needs a bigger maximum transfer unit
358 (MTU) in the network handling the tunnelled packets. However, MTUs
359 are often fixed, so the tunnel will try to fragment the packets.
360
361 If the systems outside the tunnel are using path MTU discovery, (most
362 Sun Sparc Solaris machines do by default), and set the DF (don't
363 fragment) bit because they don't send packets larger than their \(local)\
364 MTU, then ICMP control messages will be sent by the routers at the
365 ends of the tunnel to tell them to reduce their MTU, since the tunnel
366 can't fragment the data, and has to throw it away. If this mechanism
367 stops working, e.g. a firewall blocks ICMP, then your host never
368 knows it has hit the maximum path MTU, but it has received no ACK on
369 the packet either, so it continues to resend the same packet and the
370 connection stalls, eventually timing out.
371
372 You can test the link using pings of large packets and see what works:
373
f0884f39 374==> ping -s host 2048
495ae4b0
PH
375
376 Try reducing the MTU on the sending host:
377
f0884f39 378==> ifconfig le0 mtu 1300
495ae4b0
PH
379
380 Alternatively, you can reduce the size of the buffer Exim uses for SMTP
381 output by putting something like
382
383==> DELIVER_OUT_BUFFER_SIZE=512
384
385 in your \(Local/Makefile)\ and rebuilding Exim (the default is 8192).
386 While this should not in principle have any effect on the size of
387 packets sent, in practice it does seem to have an effect on some OS.
388
389 You can also try disabling path MTU discovery on the sending host. On
390 Linux, try:
391
392==> echo 1 >/proc/sys/net/ipv4/ip_no_pmtu_disc
393
394 For a general discussion and information about other operating systems, see
395 \?http://www.netheaven.com/pmtu.html?\. If disabling path MTU discovery
396 fixes the problem, try to find the broken or misconfigured
397 router/firewall that swallows the ICMP-unreachable packets. Increasing
398 timeouts on the receiving host will not work around the problem.
399
400
401Q0018: Why do messages not get delivered down the same connection when I do
402 something like: \"exim -v -R @aol.com"\? For other domains, I do this and
403 I see the appropriate \*waiting for passed connections to get used*\
404 messages.
405
406A0018: Recall that Exim does not keep separate queues for each domain, but
407 operates in a distributed fashion. Messages get into its `waiting for
408 host x' hints database only when a delivery has been tried, and has had
409 a temporary error. Here are some possibilities:
410
411 (1) The messages to \(aol.com)\ got put in your queue, but no previous
412 delivery attempt occured before you did the \-R-\. This might have been
413 because of your settings of \queue_only_load\, \smtp_accept_queue\, or any
414 other option that caused no immediate delivery attempt on arrival. If
415 this is the case, you can try using \-qqR-\ instead of \-R-\.
416
417 (2) You have set \connection_max_messages\ on the smtp transport, and
418 that limit was reached. This would show as a sequence of messages
419 down one connection, then another sequence down a new connection, etc.
420
421 (3) Exim tried to pass on the SMTP connection to another message, but
422 that message was in the process of being delivered to \(aol.com)\ by some
423 other process (typically, a normal queue runner). This will break the
424 sequence, though the other delivery should pass its connection on to
425 other messages if there are any.
426
427 (4) The folk at \(aol.com)\ changed the MX records so the host names have
428 changed - or a new host has been added. I don't know how likely this is.
429
430 (5) Exim is not performing as it should in this regard, for some reason.
431 Next time you have mail queued up for \(aol.com)\, try running
432
433==> exim_dumpdb /var/spool/exim wait-remote_smtp
434
435 to see if those messages are listed among those waiting for the relevant
436 \(aol.com)\ hosts.
437
438
439Q0019: There seems to be a problem in the string expansion code: it doesn't
440 recognize references to headers such as \"${h_to}"\.
441
442A0019: The only valid syntax for header references is (for example) \"$h_to:"\
443 because header names are permitted by RFC 2822 to contain a very wide
444 range of characters. A colon (or white space) is required as the
445 terminator.
446
447
448Q0020: Why do connections to my machine's SMTP port take a long time to respond
449 with the banner, when connections to other ports respond instantly? The
450 delay is sometimes as long as 30 seconds.
451
452A0020: These kinds of delay are usually caused by some kind of network problem
453 that affects outgoing calls made by Exim at the start of an incoming
454 connection. Configuration options that cause outgoing calls are:
455
456 (1) \rfc1413_hosts\ and \rfc1413_query_timeout\ (for \*ident*\ calls).
457 Firewalls sometimes block ident connections so that they time out,
458 instead of refusing them immediately. This can cause this problem.
459 See Q5023 for a discussion of the usefulness of \*ident*\.
460
461 (2) The \host_lookup\ option, the \host_reject_connection\ option, or a
462 condition in the ACL that runs at connection time requires the
463 remote host's name to be looked up from its IP address. Sometimes
464 these DNS lookups time out. You can get this effect with ACL
465 statements like this:
466
467==> deny hosts = *.x.example
468
469 If at all possible, you should use IP addresses instead of host
9c2b45c9 470 names in blocking lists in order to avoid this problem.
495ae4b0
PH
471
472 You can use the \-bh-\ option to get more information about what is
473 happening at the start of a connection. However, note that the \-bh-\
474 option does not provide a complete simulation. In particular, no
475 \*ident*\ checks are done, so it won't show up a delay problem that is
476 related to (1) above.
477
478
479Q0021: What does \*failed to create child process to send failure message*\ mean?
480 This is a busy mail server with \smtp_accept_max\ set to 500, but this
481 problem started to occur at about 300 incoming connections.
482
483A0021: Some message delivery failed, and when Exim wanted to send a bounce
484 message, it was unable to create a process in which to do so. Probably
485 the limit on the maximum number of simultaneously active processes has
486 been reached. Most OS have some means of increasing this limit, and in
487 some operating systems there is also a limit per uid which can be
488 varied.
489
490
491Q0022: What does \*No transport set by system filter*\ in a log line mean?
492
493A0022: Your system filter contains a \"pipe"\ or \"save"\ or \"mail"\ command,
494 but you have not set the corresponding option which specifies which
495 transport is to be used. You need to set whichever of
496 \system_filter_pipe_transport\, \system_filter_file_transport\ or
497 \system_filter_reply_transport\ is relevant.
498
499
500Q0023: Why is Exim refusing to relay, saying \*failed to find host name from IP
501 address*\ when I have the sender's IP address in an ACL condition? My
502 configuration contains this ACL statement:
503
504==> accept hosts = lsearch;/etc/mail/relaydomains:192.168.96.0/24
505
506A0023: When checking a host list, the items are tested in left-to-right
507 order. The first item in your list is a lookup on the incoming host's
508 name, so Exim has to determine the name from the incoming IP address in
509 order to perform the test. If it can't find the host name, it can't do
510 the check, so it gives up. You would have discovered what was going
511 on if you had run a test such as
512
513==> exim -bh 192.168.96.131
514
515 The solution is to put all explicit IP addresses first in the list.
516 Alternatively, you can split the ACL statement into two like this:
517
518==> accept hosts = lsearch;/etc/mail/relaydomains
519 accept hosts = 192.168.96.0/24
520
521 If the host lookup fails, the first \"accept"\ fails, but then the
522 second one is considered.
523
524
525Q0024: When I run \"exim -bd -q10m"\ I get \*PANIC LOG: exec of exim -q failed*\.
526
527A0024: This probably means that Exim doesn't know its own path so it can't
528 re-exec itself to do the first queue run. Check the output of
529
530==> exim -bP exim_path
531
532
533Q0025: I can't seem to get a pipe command to run when I include a \"${if"\
534 expansion in it. This fails:
535
536==> command = perl -T /usr/local/rt/bin/rtmux.pl \
537 rt-mailgate helpdesk \
538 ${if eq {$local_part}{rt} {correspond}{action}}
539
540A0025: You need some internal quoting in there. Exim expands each individual
541 argument separately. Because you have (necessarily) got spaces in your
542 \"${if"\ item, you have to quote that argument. Try
543
544==> command = perl -T /usr/local/rt/bin/rtmux.pl \
545 rt-mailgate helpdesk \
546 "${if eq {$local_part}{rt} {correspond}{action}}"
547
548 \**Warning:**\ If command starts with an item that requires quoting,
549 you cannot just put it in quotes, because a leading quote means that the
550 entire option setting is being quoted. What you have to do is to quote
551 the entire value, and use internally escaped quotes for the ones you
552 really want. For example:
553
554==> command = "\"${if ....}\" arg1 arg2"
555
556 Any backslashes in the expansion items will have to be doubled to stop
557 them being interpreted by the string reader.
558
559
560Q0026: I'm trying to get Exim to connect an alias to a pipe, but it always
8e26e4bf
PH
561 gives error code 127, with the comment \*(could mean unable to exec
562 or command does not exist)*\.
495ae4b0
PH
563
564A0026: If your alias entry looks like this:
565
566==> alias: |"/some/command some parameters"
567
568 change it to look like this:
569
570==> alias: "|/some/command some parameters"
571
572
573Q0027: What does the error \*Spool file is locked*\ mean?
574
575A0027: This is not an error. All it means is that when an Exim delivery
576 process (probably started by a queue runner process) looked at a message
577 in order to start delivering it, it found that another Exim process was
578 already busy delivering it. On a busy system this is quite a common
579 occurrence. If you set \"-skip_delivery"\ in the \log_selector\ option,
580 these messages are omitted from the log.
581
582 The only time when this message might indicate a problem is if it is
583 repeated for the same message for a very long time. That would suggest
584 that the process that is delivering the message has somehow got stuck.
585
586
587Q0028: Exim is reporting IP addresses as 0.0.0.0 or 255.255.255.255 instead of
588 their correct values. What's going on?
589
590A0028: You are using a version of Exim built with gcc on an IRIX box.
591 See Q9502.
592
593
594Q0029: I can't seem to figure out why PAM support doesn't work correctly.
595
596A0029: There is a problem using PAM with shadow passwords when the calling
597 program is not running as \/root/\. Exim is normally running as the
8e26e4bf 598 Exim user when authenticating a remote host.
495ae4b0 599
8e26e4bf 600 (1) One solution can be found at \?http://www.e-admin.de/pam_exim/?\.
495ae4b0 601
8e26e4bf
PH
602 (2) PAM 0.72 allows authorization as non-\/root/\, using setuid helper
603 programs. Furthermore, in \(/etc/pam.d/exim)\ you can explicitly
604 specify that this authorization (using setuid helpers) is only
605 permitted for certain users and groups.
495ae4b0 606
8e26e4bf
PH
607 (3) Another approach is to authenticate using the \^saslauthd^\ daemon,
608 which has its own interface to PAM. The daemon runs as root, so
609 there is no access problem.
610
611 (4) One suggested solution was to set
612
613==> exim_group=shadow
614
615 in the configuration file, or the equivalent at build time. This is
616 very strongly discouraged. Do not do it! It works, but it's a
617 potential security exposure. Exim is intended to run as a
618 non-privileged user for much of the time. This setting gives it have
619 privileged access to crucial security information all of the time,
620 simply for the purposes of authentication (which Exim will only
621 spend a tiny part of its total time doing). The result is that a
622 successful compromise of the Exim system can give someone direct
623 access to the system passwords.
495ae4b0
PH
624
625
626Q0030: I'm trying to use a query-style lookup for hosts that are allowed to
627 relay, but it is giving really weird errors.
628
629A0030: Does your query contain a colon character? Remember that host lists are
630 colon-separated, so you need to double any colons in the query. This
631 applies even if the query is defined as a macro.
632
633
634Q0031: Exim is rejecting connections from hosts that have more than one IP
635 address, for no apparent reason.
636
637A0031: You are using Solaris 7 or earlier, and have \"nis dns files"\ in
638 \(/etc/nsswitch.conf)\. Change this to \"dns nis files"\ to avoid hitting Sun
639 bug 1154236 (a bad interaction between NIS and the DNS).
640
641
642Q0032: Exim is failing to find the MySQL library, even though is it present
643 within \\LD_LIBRARY_PATH\\. I'm getting this error:
644
645==> /usr/local/bin/exim: fatal: libmysqlclient.so.6: open failed:
646 No such file or directory
647
648A0032: Exim is suid, and \\LD_LIBRARY_PATH\\ is ignored for suid binaries on a
649 Solaris (and other?) systems. What you should be doing is adding
650 \"-R/local/lib/mysql"\ to the same place in the compilation that you added
651 \"-L/local/lib/mysql"\. This tells the binary where to look without
652 needing a path variable.
653
654
655Q0033: What does the error \*lookup of host "xx.xx.xx" failed in yyy router*\
656 mean?
657
658A0033: You configured a \%manualroute%\ router to send the message to xx.xx.xx. When
659 it tried to look up the IP address for that host, the lookup failed
660 with a permanent error. As this is a manual routing, this is a
661 considered to be a serious error which the postmaster needs to know
662 about (maybe you have a typo in your file), and there is little point
663 in keeping on trying. So it freezes the message.
664
665 (1) Don't set up routes to non-existent hosts.
666
667 (2) If you must set up routes to non-existent hosts, and don't want
668 freezing, set the \host_find_failed\ option on the router to do something
669 other than freeze.
670
671
672Q0034: Exim works fine on one host, but when I copied the binary to another
673 identical host, it stopped working (it could not resolve DNS names).
674
675A0034: Is the new host running exactly the same operating system? Most
676 importantly, are the versions of the dynamically loaded libraries
677 (files with names like \(libsocket.so.1)\) the same on both systems? If not,
678 that is probably the cause of the problem. Either arrange for the
679 libraries to be the same, or rebuild Exim from source on the new host.
680
681
682Q0035: I set a \"hosts"\ condition in an ACL to do a lookup in a file of IP
683 addresses, but it doesn't work.
684
685A0035: Did you remember to put \"net-"\ at the start of the the search type? If
686 you set something like this:
687
688==> accept hosts = lsearch;/some/file
689
690 Exim searches the file for the host name, not the IP address. You need
691 to set
692
693==> accept hosts = net-lsearch;/some/file
694
695 to make it use the IP address as the key to the lookup.
696
697
698Q0036: Why do I get the error \*Permission denied: creating lock file hitching
699 post*\ when Exim tries to do a local delivery?
700
701A0036: Your configuration specifies that local mailboxes are all held in
702 single directory, via configuration lines like these (taken from the
703 default configuration):
704
705==> local_delivery:
706 driver = appendfile
707 file = /var/mail/$local_part
708
709 and the permissions on the directory probably look like this:
710
711==> drwxrwxr-x 3 root mail 512 Jul 9 13:48 /var/mail/
712
713 Using the default configuration, Exim runs as the local user when doing
714 a local delivery, and it uses a lock file to prevent any other process
715 from updating the mailbox while it is writing to it. With those
716 permissions the delivery process, running as the user, is unable to
717 create a lock file in the \(/var/mail(\ directory. There are two solutions
718 to this problem:
719
720 (1) Set the \"write"\ and \"sticky bit"\ permissions on the directory, so
721 that it looks like this:
722
723==> drwxrwxrwt 3 root mail 512 Jul 9 13:48 /var/mail/
724
725 The \"w"\ allows any user to create new files in the directory, but
726 the \"t"\ bit means that only the creator of a file is able to remove
727 it. This is the same setting as is normally used with the \(/tmp)\
728 directory.
729
730 (2) Arrange to run the local_delivery transport under a specific group
731 by changing the configuration to read
732
733==> local_delivery:
734 driver = appendfile
735 file = /var/mail/${local_part}
736 group = mail
737
738 The delivery process still runs under the user's uid, but with the
739 group set to \"mail"\. The group permission on the directory allows
740 the process to create and remove the lock file.
741
742 The choice between (1) and (2) is up to the administrator. If the
743 second solution is used, users can empty their mailboxes by updating
744 them, but cannot delete them.
745
f0884f39 746 If your problem involves mail to \/root/\, see also Q0039.
495ae4b0
PH
747
748
749Q0037: I am experiencing mailbox locking problems with Sun's \"mailtool"\ used
750 over a network.
751
752A0037: See Q9705 in the Sun-specific section below.
753
754
755Q0038: What does the error message \*error in forward file (filtering not
756 enabled): missing or malformed local part*\ mean?
757
758A0038: If you are trying to use an Exim filter, you have forgotten to enable
759 the facility, which is disabled by default. In the \%redirect%\ router
760 (in the Exim run time configuration file) you need to set
761
762==> allow_filter = true
763
764 to allow a \(.forward)\ file to be used as an Exim filter. If you are not
765 trying to use an Exim filter, then you have put a malformed address in
766 the \(.forward)\ file.
767
768
769Q0039: I have installed Exim, but now I can't mail to \/root/\ any more. Why is
770 this?
771
772A0039: Most people set up \/root/\ as an alias for the manager of the host. If
773 you haven't done this, Exim will attempt to deliver to \/root/\ as if it
774 were a normal user. This isn't really a good idea because the delivery
8e26e4bf
PH
775 process would run as \/root/\. Exim has two trigger guards that stop
776 deliveries running as root. In the build-time configuration, there is a
777 setting called FIXED_NEVER_USERS, which defaults to \"root"\. This
778 setting cannot be overridden. In addition, the default runtime
779 configuration contains the option
495ae4b0
PH
780
781==> never_users = root
782
8e26e4bf
PH
783 just to be on the safe side. If you really want to run local deliveries
784 as \/root/\, you must use a version of Exim that was built without the
785 FIXED_NEVER_USERS option, and remove the above line from the runtime
786 configuration, but it would be better to create an alias for \/root/\
787 instead.
495ae4b0
PH
788
789
790Q0040: How can I stop undeliverable bounce messages (e.g. to routeable, but
791 undeliverable, spammer senders) from clogging up the queue for days?
792
793A0040: If at all possible, you should try to avoid getting into this situation
794 in the first place, for example, by verifying recipients so that you
795 do not accept undeliverable messages that lead to these bounces.
796 You can, however, configure Exim to discard failing bounce messages
797 early. Just set \ignore_bounce_errors_after\ to specify a (short) time
798 to keep them for.
799
800
801Q0041: What does the message \*unable to set gid=ddd or uid=ddd (euid=ddd):
802 local delivery to ... transport=ttt*\ mean?
803
804A0041: Have you remembered to make Exim setuid \/root/\? It needs root privilege if
805 it is to do any local deliveries, because it does them ``as the user''.
806 Note also that the partition from which Exim is running (where the
807 binary is installed) must not have the \nosuid\ mount option set. You
808 can check this by looking at its \(/etc/fstab)\ entry (or \(/etc/vfstab)\,
809 depending on your OS).
810
811
812Q0042: My ISP's mail server is rejecting bounce messages from Exim, complaining
813 that they have no sender. The SMTP trace does indeed show that the
814 sender address is \"<>"\. Why is the Sender on the bounce message empty?
815
816A0042: Because the RFCs say it must be. Your ISP is at fault. Send them this
817 extract from RFC 2821 section 6.1 (\*Reliable Delivery and Replies by
818 Email*\):
819
820 If there is a delivery failure after acceptance of a message, the
821 receiver-SMTP MUST formulate and mail a notification message. This
822 notification MUST be sent using a null (\"<>"\) reverse path in the
823 envelope. The recipient of this notification MUST be the address
824 from the envelope return path (or the ::Return-Path:: header line).
825 However, if this address is null (\"<>"\), the receiver-SMTP MUST NOT
826 send a notification.
827
828 The reason that bounce messages have no sender is so that they
829 themselves cannot provoke further bounces, as this could lead to a
830 unending exchange of undeliverable messages.
831
832
833Q0043: What does the error \*Unable to get interface configuration: 22 Invalid
834 argument*\ mean?
835
836A0043: This is an error that occurs when Exim is trying to find out the all the
837 IP addresses on all of the local host's interfaces. If you have lots of
838 virtual interfaces, this can occur if there are more than around 250 of
839 them. The solution is to set the option \local_interfaces\ to list just
840 those IP addresses that you want to use for making and receiving SMTP
841 connections.
842
843
844Q0044: What does the error \*Failed to create spool file*\ mean?
845
846A0044: Exim has been unable to create a file in its spool area in which to
847 store an incoming message. This is most likely to be either a
848 permissions problem in the file hierarchy, or a problem with the uid
849 under which Exim is running, though it could be something more drastic
850 such as your disk being full.
851
852 If you are running Exim with an alternate configuration file using a
853 command such as \"exim -C altconfig..."\, remember that the use of -C
cc5fdbc2 854 takes away Exim's root privilege, unless \\TRUSTED_CONFIG_LIST\\
261dc43e
DW
855 is set in \(Local/Makefile)\ and the corresponding file contains a
856 prefix which matches the alternative configuration file being used.
495ae4b0
PH
857
858 Check that you have defined the spool directory correctly by running
859
860==> exim -bP spool_directory
861
862 and examining the output. Check the mode of this directory. It should
863 look like this, assuming you are running Exim as user \/exim/\:
864
865==> drwxr-x--- 6 exim exim 512 Jul 16 12:29 /var/spool/exim
866
867 If there are any subdirectories already in existence, they should have
868 the same permissions, owner, and group. Check also that you haven't got
869 incorrect permissions on superior directories (for example, \(/var/spool)\).
870 Check that you have set up the Exim binary to be setuid \/root/\. It should
871 look like this:
872
873==> -rwsr-xr-x 1 root xxx 502780 Jul 16 14:16 exim
874
875 Note that it is not just the owner that must be \/root/\, but also the third
876 permission must be \"s"\ rather than \"x"\.
877
878
879Q0045: I see entries in the log that mention two different IP addresses for the
880 same connection. Why is this? For example:
881
882==> H=tip-mp8-ncs-13.stanford.edu ([36.173.0.189]) [36.173.0.156]
883
884A0045: The actual IP address from which the call came is the final one.
885 Whenever there's something in parentheses in a host name, it is what the
886 host quoted as the domain part of an SMTP HELO or EHLO command. So in
887 this case, the client, despite being 36.173.0.156, issued the command
888
889==> EHLO [36.173.0.189]
890
891 when it sent your server the message. This is, of course, very
892 misleading.
893
894
895Q0046: A short time after I start Exim I see a defunct zombie process. What
896 is causing this?
897
898A0046: Your system must be lightly loaded as far as mail is concerned. The
899 daemon sets off a queue runner process when it is started, but it only
900 tidies up completed child processes when it wakes up for some other
901 reason. When there's nothing much going on, you occasionally see
902 defunct processes like this waiting to be dealt with. This is
903 perfectly normal.
904
905
906Q0047: On a reboot, or a restart of the mail system, I see the message \*Mailer
907 daemons: exim abandoned: unknown, malformed, or incomplete option
908 -bz sendmail*\. What does this mean?
909
910A0047: \-bz-\ is a Sendmail option requesting it to create a `configuration freeze
911 file'. Exim has no such concept and so does not support the option. You
912 probably have a line like
913
914==> /usr/lib/sendmail -bz
915
916 in some start-up script (e.g. \(/etc/init.d/mail)\) immedately before
917
918==> /usr/lib/sendmail -bd -q15m
919
920 The first of these lines should be commented out.
921
922
923Q0048: Whenever exim restarts it takes up to 3-5 minutes to start responding on
924 the SMTP port. Why is this?
925
926A0048: Something else is hanging onto port 25 and not releasing it. One place
927 to look is \(/etc/inetd.conf)\ in case for any reason an SMTP stream is
928 configured there.
929
930
931Q0049: What does the log message \*no immediate delivery: more than 10 messages
932 received in one connection*\ mean?
933
934A0049: A remote MTA sent a number of messages in a single SMTP session. Exim
935 limits the number of immediate delivery processes it creates as a
936 result of a single SMTP connection, in order to avoid creating a zillion
937 processes on systems that can have many incoming connections. If you are
938 dialing in to collect mail from your ISP, you should probably set
939 \smtp_accept_queue_per_connection\ to some number larger than 10, or
940 arrange to start a queue runner for local delivery (using \-ql-\)
941 immediately after collecting the mail.
942
943
944Q0050: I am getting complaints from a customer who uses my Exim server for
945 relaying that they are being blocked with a \*Too many connections*\
946 error.
947
948A0050: See \smtp_accept_max\, \smep_accept_max_per_host\ and \smtp_accept_reserve\.
949
950
8e26e4bf
PH
951Q0051: When I test my system filter with \-bf-\, I get the error \*filtering
952 command "fail" is disabled*\. Why is this?
495ae4b0
PH
953
954A0051: Use the \-bF-\ option to test system filters. This gives you access to the
955 freeze and fail actions.
956
957
958Q0052: What does \*ridiculously long message header*\ in an error report mean?
959
960A0052: There has to be some limit to the length of a message's header lines,
961 because otherwise a malefactor could open an SMTP channel to your host,
962 start a message, and then just send characters continuously until your
8e26e4bf 963 host runs out of memory. (Exim stores all the header lines in main
495ae4b0
PH
964 memory while processing a message). For this reason a limit is imposed
965 on the total amount of memory that can be used for header lines. The
966 default is 1MB, but this can be changed by setting \\HEADER_MAXSIZE\\ in
967 \(Local/Makefile)\ before building Exim. Exceeding the limit provokes
968 the ``ridiculous'' error message.
969
970
971Q0053: Exim on my host responds to a connection with \"220 *****..."\ and
972 won't understand \\EHLO\\ commands.
973
974A0053: This is the sign of a Cisco Pix ``Mailguard'' sitting in front of your
975 MTA. Pix breaks ESMTP and only does SMTP. It is a nuisance when you have
976 a secure MTA running on your box. Something like ``no fixup protocol
977 smtp 25'' in the Pix configuration is needed. It may be possible to do
978 this by logging into the Pix (using \^telnet^\ or \^ssh^\) and typing
979 \"no fixup smtp"\ to its console. (You may need to use other commands
980 before or after to set up configuration mode and to activate a changed
981 configuration. Consult your Pix documentation or expert.) See also
982 Q0078.
983
984
985Q0054: I'm getting an Exim configuration error \*unknown rewrite flag
986 character (m) in line 386*\ but I haven't used any flags on my rewriting
987 rules.
988
989A0054: You have probably forgotten to quote a replacement string that contains
990 white space.
991
992
993Q0055: What does the error \*Failed to open wait-remote_smtp database: Invalid
994 argument*\ mean?
995
996A0055: This is something that happens if you have existing DBM hints files when
997 you install a new version of Exim that is compiled to use a different or
998 upgraded DBM library. The simplest thing to try is
999
1000==> rm /var/spool/exim/db/*
1001
1002 This removes all the hints files. Exim will start afresh and build new
1003 ones. If the symptom recurs, it suggests there is some problem with your
1004 DBM library.
1005
1006
1007Q0056: We are using Exim to send mail from our web server. However, whenever a
1008 user sends an email it gets sent with the return path (envelope sender)
1009 //apache@server_name.com// because the PHP script is running as
1010 \/apache/\.
1011
1012A0056: You need to include \/apache/\ in the \trusted_users\ configuration option.
1013 Only trusted users are permitted to specify senders when mail is passed
1014 to Exim via the command line.
1015
1016
1017Q0057: We've got people complaining about attachments that don't show up
1018 as attachments, but are included in the body of the message.
1019
8e26e4bf
PH
1020A0057: In the past, these symptoms could be seen when some software passed a
1021 CRLF line terminated message via the command line, because Exim expected
1022 lines to be terminated by LF only, and so it preserved the CRs as data.
1023 Modern versions of Exim (4.21 or later) use heuristics to try to do the
1024 right thing with line endings.
495ae4b0
PH
1025
1026
1027Q0058: What does the error \*failed to open DB file \(/var/spool/exim/db/retry)\:
1028 File exists*\ mean?
1029
1030A0058: This error is most often caused when a hints file that was written with
1031 one version of the Berkeley DB library is read by another version.
1032 Sometimes this can happen if you change from a binary version of Exim to
1033 a locally compiled version. Or it can happen if you compile and install
1034 a new version of Exim after changing Berkeley DB versions. You can find
1035 out which version your Exim is using by running:
1036
1037==> ldd /usr/sbin/exim
1038
1039 The solution to the problem is to delete all the files in the
1040 \(/var/spool/exim/db)\ directory, and let Exim recreate them.
1041
1042
1043Q0059: When my Outlook Express 6.0 client sends a STARTTLS command to begin a
1044 TLS session, Exim doesn't seem to receive it. The Outlook log shows
1045 this:
1046
1047==> SMTP: 14:19:27 [tx] STARTTLS
1048 SMTP: 14:19:27 [rx] 500 Unsupported command.
1049
1050 but the Exim debugging output shows this:
1051
1052==> SMTP<< EHLO xxxx
1053 SMTP>> 250-yyyy Hello xxxx [nnn.nnn.nnn.nnn]
1054 250-SIZE 52428800
1055 250-PIPELINING
1056 250-AUTH CRAM-MD5 PLAIN LOGIN
1057 250-STARTTLS
1058 250 HELP
1059 SMTP<< QUIT
1060
1061A0059: Turn off scanning of outgoing email in Norton Antivirus. If you aren't
1062 running Norton Antivirus, see if you are running some other kind of SMTP
1063 proxying, either on the client or on a firewall between the client and
1064 server. ``Unsupported command'' is not an Exim message.
1065
1066
1067Q0060: Why am I getting the error \*failed to expand \"/data/lists/lists/${lc"\
1068 for require_files: \"${lc"\ is not a known operator*\ for this setting:
1069
1070==> require_files = MAILMAN_HOME/lists/${lc:$local_part}/config.db
1071
8e26e4bf
PH
1072A0060: The value of \"require_files"\ is a list in which each item is
1073 separately expanded. In other words, the splitting into items happens
1074 before the string expansion. You need either to double the colon, or
1075 switch to a different list separator.
495ae4b0
PH
1076
1077
1078Q0061: What does the error \*Too many ``Received'' headers - suspected mail
1079 loop*\ mean?
1080
1081A0061: Whenever a message passes through an MTA, a ::Received:: header gets
1082 added. Exim counts the number of these headers in incoming messages. If
1083 there are more than the value of \received_headers_max\ (default 30),
1084 Exim assumes there is some kind of mail routing loop occurring. For
1085 example, host A passes the message to host B, which immediately passes
1086 it back to host A. Check the ::Received:: headers and the mail logs to
1087 determine exactly what is going on.
1088
1089 One common cause of this problem is users with accounts on both systems
1090 who set up each one to forward to the other, thinking that will cause
1091 copies of all messages to be delivered on both of them.
1092
1093
8e26e4bf
PH
1094Q0062: When I try to start an Exim daemon with \-bd-\ it crashes. I ran a
1095 debugger and discovered that the crash is happening in the function
1096 \^^getservbyname()^^\. What's going on?
495ae4b0
PH
1097
1098A0062: What have you got in the file \(/etc/nsswitch.conf)\? If it contains this
1099 line:
1100
1101==> services: db files
1102
8e26e4bf
PH
1103 try removing the \"db"\. Your system is trying to look in some kind of
1104 database before searching the file \(/etc/services)\, and there is an
1105 incompatibility the is causing the function \^^getservbyname()^^\ crash.
1106 This is an OS problem. See, for instance:
1107
1108 \?http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=129025?\
1109
1110 Another workaround in Exim is to set
1111
1112==> daemon_smtp_port = 25
1113
1114 in the configuration, to stop Exim calling \^^getservbyname()^^\.
495ae4b0
PH
1115
1116
1117Q0063: When I try to start an Exim daemon, nothing happens. There is no
1118 process, and nothing is written to the Exim log.
1119
1120A0063: Check to see if anything is written to \(syslog)\. This problem can be
1121 caused by a permission problem that stops Exim from writing to its log
1122 files, especially if you've specified that they should be written
1123 somewhere other than under Exim's spool directory. You could also try
1124 running the daemon with debugging turned on.
1125
1126
1127Q0064: When I run \"exim -d test@domain"\ it delivers fine, but when I send a
1128 message from the \^mail^\ command, I get \*User unknown*\ and the mail
1129 is saved in \(dead.letter)\.
1130
1131A0064: It looks as if Exim isn't being called by \^mail^\; instead it is
1132 calling some other program (probably Sendmail). Try running the command
1133
1134==> /usr/sbin/sendmail -bV
1135
1136 (If you get \*No such file or directory*\ or \*Command not found*\ you
1137 are running Solaris or IRIX. Try again with \(/usr/lib/sendmail)\.) The
1138 output should be something like this:
1139
1140==> Exim version 4.05 #1 built 13-Jun-2002 10:27:15
1141 Copyright (c) University of Cambridge 2002
1142
1143 If you don't see this, your Exim installation isn't fully operational.
1144 If you are running FreeBSD, see Q9201. For other systems, see Q0114.
1145
1146
1147Q0065: When (as \/root/\) I use -C to run Exim with an alternate configuration
1148 file, it gives an error about being unable to create a spool file when
1149 trying to run an \%autoreply%\ transport. Why is this?
1150
1151A0065: When Exim is called with -C, it passes on -C to any instances of itself
261dc43e
DW
1152 that it calls (so that the whole sequence uses the same config file).
1153 However, Exim gives up its root privilege if any user except \/root\/
1154 passes a -C option to use a non-default configuration file, and that
1155 includes the case where Exim re-execs itself to regain root privilege.
1156 Thus it can't write to the spool.
1157
cc5fdbc2 1158 The fix for this is to use the \\TRUSTED_CONFIG_LIST\\ build-time
261dc43e
DW
1159 option. This defines a file containing a list of 'trusted' prefixes for
1160 configuration files. Any configuration file specified with -C, if it
1161 matches a prefix listed in that file, will be used without dropping root
1162 privileges (as long as it is not writeable by a non-root user).
495ae4b0
PH
1163
1164
1165Q0066: What does the message \*unable to set gid=xxx or uid=xxx*\ mean?
1166
1167A0066: This message is given when an Exim process is unable to change uid or
1168 gid when it needs to, because it does not have root privilege. This is a
1169 serious problem that prevents Exim from carrying on with what it is
1170 doing. The two most common situations where Exim needs to change uid/gid
1171 are doing local deliveries and processing users' filter files. There are
1172 two common causes of this error:
1173
1174 (1) You have forgotten to make the exim binary setuid to \/root/\. This
1175 means that it can never change uid/gid in any situation. Also, the
1176 setuid binary must reside on a disk partition that does not have the
1177 \"nosuid"\ mount option set.
1178
1179 (2) The exim binary is setuid, but you have configured Exim so that,
1180 while trying to verify an address at SMTP time, it runs a router
1181 that needs to change uid/gid. Because Exim runs as \/exim/\ and not
1182 \/root/\ while receiving messages, the router is unable to change
1183 uid and therefore it cannot operate. The usual example of this is a
1184 \%redirect%\ router for users' filter files.
1185
1186 Setting the \user\ or \check_local_user\ options on a \redirect\
1187 router causes this to happen (except in the special case when the
1188 redirection list is provided by the \data\ option and does not
1189 contain \":include:"\).
1190
1191 The solution is to set \no_verify\ on the router that is causing the
1192 problem. This means that it is skipped when an address is being
1193 verified. In ``normal'' configurations where the router is indeed
1194 handling users' filter files, this is quite acceptable, because you
1195 do not usually need to process a filter file in order to verify that
1196 the local part is valid. See, for example, the \%userforward%\
1197 router in the default configuration.
1198
1199
1200Q0067: What does the error \*too many unrecognized commands*\ mean?
1201
1202A0067: There have been instances of network abuse involving mail sent out by
1203 web servers. In most cases, unrecognizable commands are sent as part of
1204 the SMTP session. A real MTA never sends out such invalid commands. Exim
1205 allows a few unrecognized commands in a session to permit humans who are
1206 testing to make a few typos (it responds with a 5xx error). However, if
1207 Exim receives too many such commands, it assumes that it is dealing with
1208 an abuse of some kind, and so it drops the connection.
1209
1210
1211Q0068: Exim times out when trying to connect to some hosts, though those hosts
1212 are known to be up and running. What's the problem?
1213
1214A0068: There could be a number of reasons for this (see also Q0017). The
1215 obvious one is that there is a networking problem between the hosts.
1216 If you can ping between the hosts or connect in other ways, the problem
1217 might be caused by ECN (Explicit Congestion Notification) being enabled
1218 in your kernel. ECN uses TCP flags originally assigned to TOS - it's a
1219 "new" invention, and some hosts and routers are known to be confused if
1220 a client uses it. If you are running Linux, you can turn ECN off by
1221 running this command:
1222
1223==> /bin/echo "0" > /proc/sys/net/ipv4/tcp_ecn
1224
1225 This has also been reported to cure web connection problems from Mozilla
1226 and Netscape browsers in Linux when there were no problems with Windows
1227 Netscape browsers.
1228
1229
1230Q0069: What does the error \*SMTP data timeout (message abandoned) on connection
1231 from...*\ mean?
1232
1233A0069: It means that there was a timeout while Exim was reading the contents of
1234 a message on an incoming SMTP connection. That is, it had successfully
1235 accepted a MAIL command, one or more RCPT commands, and a DATA command,
1236 and was in the process of reading the data itself. The length of timeout
1237 is controlled by the \smtp_receive_timeout\ option.
1238
1239 If you get this error regularly, the cause may be incorrect handling of
1240 large packets by a router or firewall. The maximum size of a packet is
1241 restricted on some links; routers should split packets that are larger.
1242 There is a feature called ``path MTU discovery'' that enables a sender
1243 to discover the maximum packet size over an entire path (multiple
1244 Internet links). This can be broken by misconfigured firewalls and
1245 routers. There is a good explanation at \?http://www.netheaven.com/pmtu.html?\.
1246 Reducing the MTU on your local network can sometimes work round this
1247 problem. See Q0017 (3) for further discussion.
1248
1249
1250Q0070: What does the error \*SMTP command timeout on connection from...*\ mean?
1251
1252A0070: Exim was expecting to read an SMTP command from the client, but no
1253 command was read within the \smtp_receive_timeout\ time limit.
1254
1255
1256Q0071: What does the error \*failed to open DB file \(/var/spool/exim//db/retry)\:
1257 Illegal argument*\ mean?
1258
1259A0071: See Q0058. The cause of this error is usually the same.
1260
1261
1262Q0072: Exim will deliver to normal aliases, and aliases that are pipes or
1263 files, but it objects to aliases that involve \":include:"\ items,
1264 complaining that it can't change gid or uid. Why is this?
1265
1266A0072: See Q0066 for a general answer. The problem happens during verification
1267 of an incoming SMTP message, not during delivery itself. In this
1268 particular case, you must have set up your aliasing router with a \user\
1269 setting. This causes Exim to change uid/gid when reading \":include:"\
1270 files. If you do not need the detailed verification provided by the
1271 router, the easy solution is to set \no_verify\ so that the router isn't
1272 used during verification.
1273
1274 Otherwise, if you set \user\ on the router in order to provide a user
1275 for delivery to pipes or files, one solution is to put the \user\
1276 setting on the transports instead of on the router. You may need to
1277 create some special transports just for this router. The alternative is
1278 to supply two different routers, one with \user\ and \no_verify\, and
1279 the with \verify_only\ but no \user\ setting.
1280
1281
1282Q0073: I'm seeing log file corruption, with parts of log lines getting mangled
1283 by other log entries.
1284
1285A0073: The only time this has been seen is when several servers were writing to
1286 the same log files over NFS. Exim assumes that its log file is on local
1287 disk, and using NFS, especially for more than one server, will not work.
1288
1289
1290Q0074: What does the error message \*remote delivery process count got out of
1291 step*\ mean?
1292
1293A0074: Exim uses subprocesses for remote deliveries; this error means that the
1294 master process expected to have a child process running, but found there
1295 were none. Prior to release 4.11, this error could be caused by running
1296 Exim under \^strace^\ on a Linux system, because stracing causes
1297 children to be ``stolen'' such that a parent that tries to wait for
1298 ``any of my children'' is told that it has none. Current releases of
1299 Exim have code to get round this problem.
1300
1301
1302Q0075: I'm using LDAP, and some email addresses that contain special characters
1303 are causing parsing errors in my LDAP lookups.
1304
1305A0075: You should be using \"${quote_ldap:$local_part}"\ instead of just
1306 \"$local_part"\ in your lookups.
1307
1308
1309Q0076: I've configured Exim to use \^syslog^\ for its logs, with the main and
1310 reject logs sent to different files, but whenever a message is rejected,
1311 I get one message on the reject log and two messages on the main log.
1312
1313A0076: You are probably putting your reject items into the main log as well;
1314 remember \^syslog^\ levels are inclusive (for example, \"mail.info"\
1315 includes all higher levels, so a \"mail.notice"\ message will be caught
1316 by a \"mail.info"\ descriptor).
1317 Test this by running the command:
1318
f0884f39 1319==> logger -p mail.notice test
495ae4b0 1320
8e26e4bf
PH
1321 and seeing which logs it goes into. From Exim release 4.31 it is
1322 possible to disable the rejectlog by setting \write_rejectlog\ false.
495ae4b0
PH
1323
1324
1325Q0077: I've installed Exim and it is delivering mail just fine. However, when I
1326 try to read mail from my PC I get \*connection rejected*\ or \*unable to
1327 connect*\.
1328
1329A0077: See Q5021.
1330
1331
1332Q0078: Exim is logging the unknown SMTP command \"XXXX"\ from my client hosts,
1333 and they are unable to authenticate.
1334
1335A0078: This is a sign of a Cisco PIX firewall getting in the way. It does not
1336 support ESMTP, and turns EHLO commands into XXXX. You should configure
1337 the Pix to leave SMTP alone; see Q0053 for how to do this.
1338
1339
1340Q0079: Our new PIX firewall is causing problems with incoming mail. How can
1341 this be fixed?
1342
1343A0079: See Q0053 and Q0078. If some messages get through and others do not,
1344 see also Q0017.
1345
1346
1347Q0080: Am I to understand that the database lookups must only return one value?
1348 They can not return a list of values? The documentation seems to
1349 indicate that it's possible to return a list.
1350
1351A0080: Lookups can be used in two different situations, and what they return is
1352 different in the two cases. (Be thankful Exim 3 is gone; there was yet
1353 another case!)
1354
1355 (1) You can use a lookup in any expanded string. The syntax is
1356
1357==> ${lookup ..... }
1358
1359 In this case, whatever is looked up replaces the expansion item. It
1360 may be one value or a list of values. Whether a single value or a
1361 list is acceptable or not depends on where you are using the string
1362 expansion. If it is for an option that expects just one value, then
1363 only one value is allowed (for example).
1364
1365 (2) You can make use of the lookup mechanism to test whether something
1366 (typically a host name or IP address) is in a list. For example,
1367
1368==> hosts = a : b : c
1369
1370 in an ACL tests whether the calling host's name matches ``a'', or
1371 ``b'', or ``c''. Now, suppose you want to keep the list of names in
1372 a database, or cdb file, or NIS map, or... By writing
1373
1374==> hosts = pgsql;select ....
1375
1376 you are saying to Exim: ``Run this lookup; if it succeeds, behave as
1377 if the host is in the list; if it fails, the host is not in the
1378 list.'' You are using the indexing mechanism of the database as a
1379 fast way of checking a list. A simpler example is
1380
1381==> hosts = lsearch;/some/file
1382
1383 where the file contains the list of hosts to be searched.
1384
1385 The complication happens when a list is first expanded before being
1386 interpreted as a list. This happens in a lot of cases. You can therefore
1387 write either of these:
1388
1389==> hosts = cdb;/some/file
1390 hosts = ${lookup{something}cdb{/some/file}}
1391
1392 but they have different meanings. The first means ``see if the host name
1393 is in the list in this file''. The second means ``run this lookup and
1394 use the result of the lookup as a list of host items to check''. In the
1395 second case, the list could contain multiple values (colon separated),
1396 and one of those values could even be ``cdb;/some/file''.
1397
1398 Flexibility does lead to complexity, I'm afraid.
1399
1400
1401Q0081: What does \*error in redirect data: included file xxxx is too big*\
1402 mean?
1403
1404A0081: You are trying to include a very large file in a redirection list, using
1405 the \":include:"\ feature. Exim has a built-in limit on the size, as a
1406 safety precaution. The default is 1 megabyte. If you want to increase
1407 this, you have to rebuild Exim. In your \(Local/Makefile)\, put
1408
1409==> MAX_INCLUDE_SIZE = whatever
1410
1411 and then rebuild Exim. The value is a number of bytes, but you can give
1412 it as a parenthesized arithmetic expression such as \"(3*1024*1024)"\.
1413 However, an included file of more than a megabyte is likely to be quite
1414 inefficient. How many addresses does yours contain? You get the best
1415 performance out of Exim if you arrange to send mailing list messages
1416 with no more than about 100 recipients (in order to get parallelism in
1417 the routing).
1418
1419
1420Q0082: What does \*relocation error: /lib/libnss_dns.so.2: symbol
1421 __libc_res_nquery, version GLIBC_PRIVATE not defined in file
1422 libresolv.so.2 with link time reference*\ mean?
1423
1424A0082: You have updated \^glibc^\ while an Exim daemon is running. Stop and
1425 restart the daemon.
1426
1427
1428Q0083: Netscape on Unix is sending messages containing an unqualified user name
1429 in the ::Sender:: header line, which Exim is rejecting because I have
1430 set \"verify = header_syntax"\. How can I fix this?
1431
1432A0083: The only thing you can do in Exim is to set the
1433 \sender_unqualified_hosts\ option to allow unqualified sender addresses
1434 form the relevant hosts; of course, this applies to all sender
1435 addresses, not just the ::Sender:: header line.
1436
1437 Alternatively, you can configure Netscape not to include the header line
1438 in the first place. Add the following line to the
1439 \($HOME/.netscape/preferences.js)\ and \($HOME/.netscape/liprefs.js)\
1440 files:
1441
1442==> user_pref("mail.suppress_sender_header", true);
1443
8e26e4bf 1444 Netscape must be shut down while doing this.
495ae4b0
PH
1445
1446
1447Q0084: I want to set up an alias that pipes a message to \^gpg^\ and then pipes
1448 the result to \^mailx^\ to resubmit the message, but when I use my
1449 tested command in an alias file, I get an error from \^gpg^\.
1450
1451A0084: Probably you are using a shell command with two pipe symbols in it. An
1452 alias like this:
1453
1454==> gpg-xxx: "|gpg <options> | mailx <options"
1455
1456 does not work, because Exim does not run pipes under a shell by default.
1457 You must call a shell explicitly if you want to make use of the shell's
1458 features for double-piping, either by piping to \"/bin/sh"\ with a
1459 suitable \"-c"\ option, or by piping to a shell script.
1460
1461
1462Q0085: I see a lot of \*rejected EHLO ... syntactically invalid argument(s)*\.
1463 I know it's because of the underscore in the host name, but is there a
1464 switch to allow Exim to accept mail from such hosts?
1465
1466A0085: Yes. Add this to your configuration:
1467
1468==> helo_allow_chars = _
1469
1470 For more seriously malformed host names, see \helo_accept_junk_hosts\.
1471 See also Q0732.
1472
1473
1474Q0086: What does \*SMTP protocol violation: synchronization error (next input
1475 sent too soon)*\ mean?
1476
1477A0086: SMTP is a ``lock-step'' protocol, which means that, at certain points in
1478 the protocol, the client must wait for the server to respond before
1479 sending more data. Exim checks for correct behaviour, and issues this
1480 error if the client sends data too soon. This protects against
1481 malefactious clients who send a bunch of SMTP commands (usually to
1482 transmit spam) without waiting for any replies.
1483
8e26e4bf
PH
1484 This error is also provoked if a client unexpectedly tries to start up a
1485 TLS session immediately on connection, without using the STARTTLS
1486 command. See Q1707 for a discussion of this case.
495ae4b0
PH
1487
1488
1489Q0087: What does \*rejected after DATA: malformed address: xx@yy may not follow
8e26e4bf 1490 <xx@yy> : failing address in "from" header*\ mean?
495ae4b0
PH
1491
1492A0087: Your DATA ACL contains
1493
1494==> verify = header_syntax
1495
1496 and an incoming message contained the line
1497
1498==> From: xx@yy <xx@yy>
1499
1500 This is syntactically invalid. The contents of an address in a header
1501 line are either just the address, or a ``phrase'' followed by an address
1502 in angle brackets. In the latter case, the ``phrase'' must be quoted if
1503 it contains special characters such as @. The following are valid
1504 versions of the bad header:
1505
1506==> From: xx@yy
1507 From: "xx@yy" <xx@yy>
1508
1509 though why on earth anything generates this kind of redundant nonsense I
1510 can't think.
1511
1512
1513Q0088: The Windows mailer SENDFILE.EXE sometimes hangs while trying to send a
1514 message to Exim 4, and eventually times out. It worked flawlessly with
1515 Exim 3. What has changed?
1516
1517A0088: Exim 4 sets an obscure TCP/IP parameter called TCP_NODELAY. This
1518 disables the "Nagle algorithm" for the TCP/IP transmission. The Nagle
1519 algorithm can improve network performance in interactive situations such
1520 as a human typing at a keyboard, by buffering up outgoing data until the
1521 previous packet has been acknowledged, and thereby reducing the number
1522 of packets used. This is not relevant for mail transmission, which
1523 mostly consists of quite large blocks of data; setting TCP_NODELAY
1524 should improve performance. However, it seems that some Windows clients
1525 do not function correctly if the server turns off the Nagle algorithm.
1526 If you are using Exim 4.23 or later, you can set
1527
1528==> tcp_nodelay = false
1529
1530 This stops Exim setting TCP_NODELAY on the sockets created by the
1531 listening daemon.
1532
1533
1534Q0089: What does the error \*kernel: application bug: exim(12099) has SIGCHLD
1535 set to SIG_IGN but calls wait()*\ mean?
1536
8e26e4bf
PH
1537A0089: This was a bad interaction between a change to the Linux kernel and some
1538 ``belt and braces'' programming in Exim. The following explanation is
1539 taken from Exim's change log:
495ae4b0
PH
1540
1541 When Exim is receiving multiple messages on a single connection, and
1542 spinning off delivery processess, it sets the SIGCHLD signal handling to
1543 SIG_IGN, because it doesn't want to wait for these processes. However,
1544 because on some OS this didn't work, it also has a paranoid call to
1545 \^waitpid()^\ in the loop to reap any children that have finished. Some
1546 versions of Linux now complain (to the system log) about this
1547 ``illogical'' call to \^waitpid()^\. I have therefore put it inside a
1548 conditional compilation, and arranged for it to be omitted for Linux.
1549
1550 I am pretty sure I caught all the places in Exim where this happened.
1551 However, there are still occasional reports of this error. I have not
1552 heard of any resolutions, but my current belief is that they are caused
1553 by something that Exim calls falling foul of the same check. There was
1554 at one time a suspicion that the IPv6 stack was involved.
1555
1556
1557Q0090: I can't seem to get a pipe command to run when I include a \"${lookup"\
1558 expansion in it.
1559
1560A0090: See Q0025.
1561
1562
1563Q0091: Why is Exim giving the error \*Failed to send message from address_reply
1564 transport*\ when I run it using -C to specify an alternate
1565 configuration?
1566
1567A0091: See Q0065.
1568
1569
8e26e4bf 1570Q0092: The error message \*Program received signal SIGINT, Interrupt.*\ occurs
2683a02a 1571 when I try to use Exim with PostgreSQL.
8e26e4bf
PH
1572
1573A0092: Check that you have not set
2683a02a
PH
1574
1575==> log_statement=true
1576
8e26e4bf
PH
1577 in the PostgreSQL configuration file. It seems that this causes
1578 PostgreSQL to return logging information as the first row in a query
1579 result, which totally confuses Exim.
2683a02a
PH
1580
1581
495ae4b0
PH
1582
15831. BUILDING AND INSTALLING
1584
1585Q0101: I'm having a problem with an Exim RPM.
1586
1587A0101: Normally the thing to do if you have a problem with an RPM package is
1588 to contact the person who built the package first, not the person who
1589 made the software that's in the package. You can usually find out who
1590 made a package using the following command:
1591
1592==> rpm --query --package --queryformat '%{PACKAGER}\n' <rpm-package-file>
1593
1594 where \[rpm-package-file]\ is the actual file, e.g. \(exim-3.03-2.i386.rpm)\.
1595 Or, if the package is installed on your system:
1596
1597==> rpm --query --queryformat '%{PACKAGER}\n' <package-name>
1598
1599 where \[package-name]\ is the name component of the package, e.g. \"exim"\.
1600 If the packager is unable or unwilling to help, only then should you
1601 contact the actual author or associated mailing list of the software.
1602
1603 If you discover through the querying process that you can't tell who
1604 the person (or company or group) is who built the package, or that they
1605 no longer exist at the given address, then you should reconsider
1606 whether you want a package from an unknown source on your system.
1607
1608 If you discover through the querying process that you yourself are the
1609 person who built the package, then you should either (a) contact the
1610 author or associated mailing list, or (b) reconsider whether you ought
1611 to be building and distributing RPM packages of software you don't
1612 understand.
1613
1614 Similar rules of thumb govern other binary package formats, including
1615 debs, tarballs, and POSIX packages.
1616
1617
1618Q0102: I can't get Exim to compile with Berkeley DB version 2.x or 3.x.
1619
1620A0102: Have you set \"USE_DB=yes\" in \(Local/Makefile)\? This causes Exim to use the
1621 native interface to the DBM library instead of the compatibility
1622 interface, which needs a header called \(ndbm.h)\ that may not exist on your
1623 system.
1624
1625
1626Q0103: I'm getting an \*undefined symbol*\ error for \"hosts_ctl"\ when I try to
1627 build Exim. (On some systems this error is \*undefined reference to
1628 'hosts_ctl'*\.)
1629
1630A0103: You should either remove the definition of \\USE_TCP_WRAPPERS\\ or add
1631 \"-lwrap"\ to your \\EXTRALIBS\\ setting in Local/Makefile.
1632
1633
1634Q0104: I'm about to upgrade to a new Exim release. Do I need to ensure the
1635 spool is empty, or take any other special action?
1636
1637A0104: It depends on where you are coming from.
1638
1639 (1) If you are changing to release 4.00 or later from a release prior to
1640 4.00, you will need to make changes to the run time configuration file.
1641 See the file \(doc/Exim4.upgrade)\ for details. If you are coming from
1642 before release 3.00, you should also see \(doc/Exim3.upgrade)\.
1643
1644 (2) If you are upgrading from an Exim 4 release to a later release, you
1645 do not need to take special action. New releases are made backwards
1646 compatible with old spool files and hints databases, so that upgrading
1647 can be done on a running system. All that should be necessary is to
1648 install a new binary and then HUP the daemon.
1649
8e26e4bf
PH
1650 \**Warning**\: If you have changed the release of your DBM library, so
1651 that your new Exim is linked with a different release than the old one,
1652 you may encounter errors when Exim attempts to access the old hints
1653 databases. See Q0055.
1654
495ae4b0
PH
1655
1656Q0105: What does the error \*install-info: command not found*\ mean?
1657
1658A0105: You have set \\INFO_DIRECTORY\\ in your \(Local/Makefile)\, and Exim is trying
1659 to install the Texinfo documentation, but cannot find the command called
1660 \(install-info)\. If you have a version of Texinfo prior to 3.9, you
1661 should upgrade. Otherwise, check your installation of Texinfo to see why
1662 the \(install-info)\ command is not available.
1663
1664
1665Q0106: Exim doesn't seem to be recognizing my operating system type correctly,
1666 and so is failing to build.
1667
1668A0106: Run the command \"scripts/os-type -generic"\. The output should be one of
1669 the known OS types, and should correspond to your operating system. You
1670 can see which OS are supported by obeying \"ls OS/Makefile-*"\ and looking
1671 at the file name suffixes.
1672
1673 If there is a discrepancy, it means that the script is failing to
1674 interpret the output from the \"uname"\ command correctly, or that the
1675 output is wrong. Meanwhile, you can build Exim by obeying
1676
1677==> EXIM_OSTYPE=xxxx make
1678
1679 instead of just \"make"\, provided you are running a Bourne-compatible
1680 shell, or otherwise by setting \\EXIM_OSTYPE\\ correctly in your
1681 environment. It is probably best to start again from a clean
1682 distribution, to avoid any wreckage left over from the failed attempt.
1683
1684
1685Q0107: Exim fails to build, complaining about the absence of the \"killpg"\
1686 function.
1687
1688A0107: This function should be present in all modern flavours of Unix. If you
1689 are using an older version, you should be able to get round the problem
1690 by inserting
1691
1692==> #define killpg(pgid,sig) kill(-(pgid),sig)
1693
1694 into the file called \(OS/os.h-xxx)\, where xxx identifies your operating
1695 system, and is the output of the command \"scripts/os-type -generic"\.
1696
1697
1698Q0108: I'm getting an unresolved symbol \"ldap_is_ldap_url"\ when trying to build
1699 Exim.
1700
1701A0108: You must have specified \"LOOKUP_LDAP=yes"\ in the configuration. Have you
1702 remembered to set \"-lldap"\ somewhere (e.g. in \\LOOKUP_LIBS\\)? You need that
1703 in order to get the LDAP library scanned when linking.
1704
1705
1706Q0109: I'm getting an unresolved symbol \"mysql_close"\ when trying to build Exim.
1707
1708A0109: You must have specified \"LOOKUP_MYSQL=yes"\ in the configuration. Have you
1709 remembered to set \"-lmysqlclient"\ somewhere (e.g. in \\LOOKUP_LIBS\\)? You
1710 need that in order to get the MySQL library scanned when linking.
1711
1712
1713Q0110: I'm trying to build Exim with PAM support. I have included \"-lpam"\ in
1714 \\EXTRALIBS\\, but I'm still getting a linking error:
1715
1716==> /lib/libpam.so: undefined reference to `dlerror'
1717 /lib/libpam.so: undefined reference to `dlclose'
1718 /lib/libpam.so: undefined reference to `dlopen'
1719 /lib/libpam.so: undefined reference to `dlsym'
1720
1721A0110: Add \"-ldl"\ to \\EXTRALIBS\\. In some systems these dynamic loading functions
1722 are in their own library.
1723
1724
1725Q0111: I'm getting the error \*db.h: No such file or directory*\ when I try to
1726 build Exim.
1727
1728A0111: This problem has been seen with RedHat 7.0, but could also happen in
1729 other environments. If your system is using the DB library, you
1730 need to install the DB development package in order to build Exim.
1731 The package is called something like \"db3-devel-3.1.14-16.i386.rpm"\ for
1732 Linux systems, but you should check which version of DB you have
1733 installed (current releases are DB 4).
1734
1735
1736Q0112: I'm getting the error \*/usr/bin/ld: cannot find -ldb*\ when I try to
1737 build Exim.
1738
1739A0112: This is probably the same problem as Q0111.
1740
1741
1742Q0113: I've compiled Exim and I've managed to start it but there was one
1743 problem - it always complained that \(libmsqlclient.so.10)\ was not found,
1744 even though this file is in \(/usr/local/lib/mysql/)\.
1745
1746A0113: Solaris: ensure you have this in your \(Local/Makefile)\:
1747
1748==> LOOKUP_LIBS=-L/usr/local/lib/mysql -R/usr/local/lib/mysql
1749
1750 Net/Open/FreeBSD: Run this command (or ensure it gets run automatically
1751 at boot time):
1752
1753==> ldconfig -m /usr/local/lib/mysql
1754
1755 Linux: add \(/usr/local/lib/mysql)\ to \(/etc/ld.so.conf)\ and re-run \(ldconfig)\.
1756 Alternatively, add
1757
1758==> -Wl,-rpath -Wl,/usr/local/lib/mysql
1759
1760 to EXTRA_LIBS and then re-link (this is similar to the Solaris solution
1761 above). This will probably also work on other systems that use GNU
1762 Binutils.
1763
1764
1765Q0114: How can I remove Sendmail from my system? I've built Exim and run \"make
1766 install"\, but it still doesn't seem to be fully operational.
1767
1768A0114: If you are running FreeBSD, see Q9201. Otherwise, you need to arrange
1769 that whichever of the paths \(/usr/sbin/sendmail)\ or \(/usr/lib/sendmail)\
1770 exists on your system is changed to refer to Exim. For example, you
1771 could use these commands (as \/root/\):
1772
1773==> mv /usr/sbin/sendmail /usr/sbin/sendmail.original
1774 chmod u-s /usr/sbin/sendmail.original
1775 ln -s /path/to/exim /usr/sbin/sendmail
1776
1777 The second command removes the setuid privilege from the old MTA, as a
1778 general safety precaution. In the third command, substitute the actual
1779 path to the Exim binary for \(/path/to/exim)\.
1780
1781
1782Q0115: What does \*Can't open \(../scripts/newer)\: No such file or directory*\
1783 mean? I got it while trying to build Exim.
1784
1785A0115: You are using FreeBSD, or another OS that has a \^make^\ command which
1786 tries to optimize the running of commands. Exim's \(Makefile)\ contains
1787 targets with sequential commands like this:
1788
1789==> buildpcre:
1790 @cd pcre; $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" \
1791 CFLAGS="$(CFLAGS) $(PCRE_CFLAGS)" \
1792 RANLIB="$(RANLIB)" HDRS="$(PHDRS)" \
1793 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
1794 @if $(SHELL) $(SCRIPTS)/newer pcre/libpcre.a exim; then \
1795 /bin/rm -f exim eximon.bin; fi
1796
1797 The second command assumes that the \"cd pcre"\ in the first command is
1798 no longer in effect. If you have \"-j3"\ in your default set of
1799 \"MAKEFLAGS"\, FreeBSD \^make^\ tries to optimize, and ends up up with both
1800 commands in the same shell process. The result is that \"$(SCRIPTS)"\
1801 (which has a value of \"../scripts"\) is not found.
1802
1803 The simplest solution is to force \^make^\ to use backwards compatibility
1804 mode with each command in its own shell, by using the \-B\ flag. To
1805 ensure that this happens throughout the build, it's best to export it in
1806 your environment:
1807
f0884f39
PH
1808==> MAKEFLAGS='-B'
1809 export MAKEFLAGS
1810 make
495ae4b0
PH
1811
1812
1813Q0116: I have tried to build Exim with Berkeley DB 3 and 4, but I always get
1814 errors.
1815
1816A0116: One common problem, especially when you have several different versions
1817 of BDB installed on the same host, is that the header files and library
1818 files for BDB are not in a standard place. You therefore need to tell
1819 Exim where they are, by setting INCLUDE and DBMLIB in your
8e26e4bf
PH
1820 \(Local/Makefile)\. For example, you could use this when you want to
1821 build with DB 4.1:
495ae4b0 1822
8e26e4bf
PH
1823==> INCLUDE=-I/usr/local/include/db-4.1
1824 DBMLIB=/usr/local/lib/db-4.1/libdb.a
495ae4b0
PH
1825
1826 Specifying the complete library file like this will cause it to be
1827 statically linked with Exim. You'll have to check to see where these
1828 files are on your system. For example, on FreeBSD 5, the header is in
1829 \(/usr/local/include/db4)\ and the library is in \(/usr/local/lib)\ and
1830 called \(libdb4)\. In that environment, you could use:
1831
1832==> INCLUDE=-I/usr/local/include/db4
1833 DBMLIB=-L/usr/local/lib -ldb4
1834
1835 This time, DBMLIB is specifying the library directory (\(/usr/local/lib)\)
1836 and the name of the library (\(db4)\) separately. The name of the actual
1837 library file is \(/usr/local/lib/libdb4.something)\. If the library was
1838 compiled for dynamic linking, that will be used.
1839
1840
1841Q0117: Is there a quick walk-through of an Exim install from source anywhere?
1842
1843A0117: Here! This is a contribution from a RedHat user, somewhat edited. On
1844 other operating systems things may be slightly different, but the
1845 general approach is the same.
1846
1847 (1) Install the db needed for Exim. This needs to be done first if you
1848 don't have a DBM library installed. Go to \?http://www.sleepycat.com?\
1849 and download \(db-4.1.25.tar.gz)\, or whatever the current release is.
1850 Then:
1851
1852==> gunzip db-4.1.25.tar.gz
1853 tar -xvf db-4.1.25.tar
1854 cd db-4.1.25
1855 cd build_unix
1856 ../dist/configure
1857 make
1858 make install
1859
1860 (2) Add a user for use by Exim, unless you want to use an existing user
1861 such as \/mail/\:
1862
1863==> adduser exim
1864
1865 (3) Now you can prepare to build Exim. Go to \?http://www.exim.org?\ or
1866 one of its mirrors, or the master ftp site
1867 \?ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4?\, and download
1868 \(exim-4.20.tar.gz)\ or whatever the current release is. Then:
1869
1870==> gunzip exim-4.20.tar.gz
1871 tar -xvf exim-4.20.tar
1872 cd exim-4.20
1873 cp src/EDITME Local/Makefile
1874 cp exim_monitor/EDITME Local/eximon.conf
1875
1876 (4) Edit \(Local/Makefile)\:
1877
1878 Comment out EXIM_MONITOR= unless you want to install the Exim
1879 monitor (it requires X-windows).
1880
1881 Set the user you want Exim to use for itself:
1882
1883==> EXIM_USER=exim
1884
1885 If your DBM library is Berkeley DB, set up to use its native interface:
1886
1887==> USE_DB=yes
1888
1889 Make sure Exim's build can find the DBM library and its headers. If
1890 you've installed Berkeley DB 4 you'll need to have settings like this
1891 in \(Local/Makefile)\:
1892
1893==> INCLUDE=-I/usr/local/BerkeleyDB.4.1/include
1894 DBMLIB=/usr/local/BerkeleyDB.4.1/lib/libdb.a
1895
1896 (Check that the first directory contains the db.h file and that the
1897 second library exists.)
1898
1899 You don't need to change anything else, but you might want to review
1900 the default settings in the ``must specify'' section.
1901
1902 (4) Build Exim by running the \/make/\ command.
1903
1904 (5) Install Exim by running, as \/root/\:
1905
1906==> make install
1907
8e26e4bf 1908 You must be \/root/\ to do this. You do not have to be root for any of
495ae4b0
PH
1909 the previous building activity.
1910
1911 (6) Run some tests on Exim; see if it will do local and remote
1912 deliveries. Change the configuration if necessary (for example,
1913 uncommenting \group\ on the \%local_delivery%\ transport if you don't
1914 use a ``sticky bit'' directory).
1915
1916 (7) Change Sendmail to Exim (of course you need to have had Sendmail
1917 installed to do this).
1918
1919==> /etc/init.d/sendmail stop
1920 mv /usr/sbin/sendmail /usr/sbin/sendmail.org
1921 ln -s /usr/exim/bin/exim /usr/sbin/sendmail
1922 /etc/init.d/sendmail start
1923
1924 (8) Check the Exim log. Either use the Exim monitor, or:
1925
1926==> tail -f /var/spool/exim/log/mainlog
1927
1928
1929Q0118: I've set \"LOOKUP_INCLUDE=-I/client/include"\ in Local/Makefile, but the
1930 compilation of \^exim_dumpdb^\ is ignoring this option and failing. Why?
1931
1932A0118: LOOKUP_INCLUDE is the special include file for lookup modules in Exim
1933 (e.g. mysql, LDAP). Confusingly, it doesn't apply to basic DBM code
1934 which is used also for other things. Try setting INCLUDE and DBMLIB
1935 instead. For example:
1936
1937==> USE_DB=yes
1938 INCLUDE=-I/client/include
1939 DBMLIB=/client/lib/libdb.a
1940
1941
1942Q0119: I know there are some 3rd-party patches for Exim, for exiscan and
1943 other things. Where are they?
1944
1945A0119: Exiscan is at \?http://duncanthrax.net/exiscan-acl/?\.
1946[[br]]
1947 Scanexi is at \?http://w1.231.telia.com/~u23107873/scanexi.html?\
1948[[br]]
1949 A sample \^^local_scan()^^\ function for interfacing to \^uvscan^\ is
1950 at \?http://www.dcs.qmul.ac.uk/~mb/local_scan/?\.
1951[[br]]
1952 An interface to SpamAssassin at SMTP time is at
1953 \?http://marc.merlins.org/linux/exim/sa.html?\.
1954[[br]]
1955 A mini-HOWTO (PDF file) about scanning and virus scanning, and some RPMs
1956 can be found at \?http://www.timj.co.uk/linux/exim.php?\.
1957
1958
8e26e4bf
PH
1959Q0120: I'm trying to compile with LOOKUP_WHOSON, but I keep getting \*In
1960 function `whoson_find': undefined reference to `wso_query'*\.
1961
1962A0120: Try adding \"-lwhoson"\ to your LOOKUP_LIBS setting in \(Local/Makefile)\.
1963
1964
495ae4b0
PH
1965
19662. ROUTING IN GENERAL
1967
1968Q0201: How can I arrange that messages larger than some limit are handled by
1969 a special router?
1970
1971A0201: You can use a \condition\ option on the router line this:
1972
1973==> condition = ${if >{$message_size}{100K}{yes}{no}}
1974
1975
1976Q0202: Can I specify a list of domains to explicitly reject?
1977
1978A0202: Set up a named domain list containing the domains in the first section
1979 of the configuration, for example:
1980
1981==> domainlist reject_domains = list:of:domains:to:reject
1982
1983 You can use this list in an ACL to reject any SMTP recipients in those
1984 domains. You can also give a customized error message, like this:
1985
1986==> deny message = The domain $domain is no longer supported
1987 domains = +reject_domains
1988
1989 If you also want to reject these domains in messages that are submitted
1990 from the command line (not using SMTP), you need to set up a router to
1991 do it, like this:
1992
1993==> reject_domains:
1994 driver = redirect
1995 domains = +reject_domains
1996 allow_fail
1997 data = :fail: The domain $domain is no longer supported
1998
1999
2000Q0203: How can I arrange to do my own qualification of non-fully-qualified
2001 domains, and then pass them on to the next router?
2002
2003A0203: If you have some list of domains that you want to qualify, you can do
2004 this using a redirect router. For example,
2005
2006==> qualify:
2007 driver = redirect
2008 domains = *.a.b
2009 data = ${quote:$local_part}@$domain.c.com
2010
2011 This adds \".c.com"\ to any domain that matches \"*.a.b"\.
2012 If you want to do this in conjunction with a \%dnslookup%\ router, the
2013 \widen_domains\ option of that router may be another way of achieving
2014 what you want.
2015
2016
2017Q0204: Every system has a \"nobody"\ account under which httpd etc run. I would
2018 like to know how to restrict mail which comes from that account to users
2019 on that host only.
2020
2021A0204: Set up a first router like this:
2022
2023==> fail_nobody:
2024 driver = redirect
2025 senders = nobody@your.domain
2026 domains = ! +local_domains
2027 allow_fail
2028 data = :fail: Nobody may not mail off-site
2029
2030 This assumes you have defined \+local_domains\ as in the default
2031 configuration.
2032
2033
2034Q0205: How can I get Exim to deliver to me locally and everyone else at the same
2035 domain via SMTP to the MX record specified host?
2036
2037A0205: Create an \%accept%\ router to pick off the one address and pass it to
2038 an appropriate transport. Put this router before the one that does MX
2039 routing:
2040
2041==> me:
2042 driver = accept
2043 domains = dom.com
2044 local_parts = me
2045 transport = local_delivery
2046
2047 In the transport you will have to specify the \user\ option. An
2048 alternative way of doing this is to add a condition to the router that
2049 does MX lookups to make it skip your address. Subsequent routers can then
2050 deliver your address locally. You'll need a condition like this:
2051
2052==> condition = \
2053 ${if and {{eq{$domain}{dom.com}}{eq{$local_part}{me}}}{no}{yes}}
2054
2055
2056Q0206: How can I get Exim to deliver certain domains to a different SMTP port
2057 on my local host?
2058
2059A0206: You must set up a special \%smtp%\ transport, where you can specify the
2060 \port\ option, and then set up a router to route the domains to that
2061 transport. There are two possibilities for specifying the host:
2062
2063 (1) If you use a \%manualroute%\ router, you can specify the local host
2064 in the router options. You must also set
2065
2066==> self = send
2067
2068 so that it does not object to sending to the local host.
2069
2070 (2) If you use a router that cannot specify hosts (for example, an
2071 \%accept%\ router with appropriate conditions), you have to specify
2072 the host using the \hosts\ option of the transport. In this case,
2073 you must also set \allow_localhost\ on the transport.
2074
2075
2076Q0207: Why does Exim lower-case the local-part of a non-local domain when
2077 routing?
2078
2079A0207: Because \caseful_local_part\ is not set (in the default configuration)
2080 for the \%dnslookup%\ router. This does not matter because the local
2081 part takes no part in the routing, and the actual local part that is
2082 sent out in the RCPT command is always the original local part.
2083
2084
8e26e4bf
PH
2085Q0208: I can't get a lookup to work in a domain list. I'm trying this:
2086
2087==> domainlist local_domains = @:localhost:${lookup pgsql{SELECT ...
2088
2089A0208: Does the lookup return a colon separated list of domains? If not, you
2090 are using the wrong kind of lookup. The most common way of using a
2091 lookup in a domain list is something like this:
2092
2093==> domainlist local_domains = @:localhost:pgsql;SELECT ...
2094
2095 Using that syntax, if the query succeeds, the domain is considered to be
2096 in the list. The value that is returned is not relevant.
2097
2098
495ae4b0
PH
2099
21003. ROUTING TO REMOTE HOSTS
2101
2102Q0301: What do \*lowest numbered MX record points to local host*\ and \*remote
2103 host address is the local host*\ mean?
2104
2105A0301: They mean exactly what they say. Exim expected to route an address to a
2106 remote host, but the IP address it obtained from a router was for the
2107 local host. If you really do want to send over TCP/IP to the local host
2108 (to a different version of Exim or another MTA, for example), see Q0206.
2109
2110 More commonly, these errors arise when Exim thinks it is routing some
2111 foreign domain. For example, the router configuration causes Exim to
2112 look up the domain in the DNS, but when Exim examines the DNS output,
2113 either the lowest numbered MX record points at the local host, or there
2114 are no MX records, and the address record for the domain contains an
2115 IP address that belongs to the local host.
2116
2117 There has been a rash of instances of domains being deliberately set up
2118 with MX records pointing to \"localhost"\ (or other names with A records
2119 that specify 127.0.0.1), which causes this behaviour. You can use the
2120 \ignore_target_hosts\ option to get Exim to ignore these records. The
2121 default contiguration does this. For more discussion, see Q0319. For
2122 other cases:
2123
2124 (1) If the domain is meant to be handled as a local domain, there
2125 is a problem with the configuration, because it should not then have
2126 been looked up in the DNS. Check the \domains\ settings on your
2127 routers.
2128
2129 (2) If the domain is one for which the local host is providing a
2130 relaying service (called ``mail hubbing''), possibly as part of a
2131 firewall, you need to set up a router to tell Exim where to send
2132 messages addressed to this domain, because the DNS directs them to
2133 the local host. You should put a router like this one before the one
2134 that does DNS lookups:
2135
2136==> hubbed_hosts:
2137 driver = manualroute
2138 transport = remote_smtp
2139 route_list = see discussion below
2140
2141 The contents of the \route_list\ option depend on how many hosts you
2142 are hubbing for, and how their names are related to the domain name.
2143 Suppose the local host is a firewall, and all the domains in
2144 \(*.foo.bar)\ have MX records pointing to it, and each domain
2145 corresponds to a host of the same name. Then the setting could be
2146
2147==> route_list = *.foo.bar $domain
2148
2149 If there isn't a convenient relationship between the domain names
2150 and the host names, you either have to list each domain separately,
2151 or use a lookup expansion to look up the host from the domain, or
2152 put the routing information in a file and use the \route_data\
2153 option with a lookup expansion.
2154
2155 (3) If neither (1) nor (2) is the case, the lowest numbered MX record or
2156 the address record for the domain should not be pointing to your
2157 host. You should arrange to get the DNS mended.
2158
2159
2160Q0302: Why does Exim say \*all relevant MX records point to non-existent hosts*\
2161 when MX records point to IP addresses?
2162
2163A0302: MX records cannot point to IP addresses. They are defined to point to
2164 host names, so Exim always interprets them that way. (An IP address is a
2165 syntactically valid host name.) The DNS for the domain you are having
2166 problems with is misconfigured.
2167
2168 However, it appears that more and more DNS zones are breaking the rules
2169 and putting IP addresses on the RHS of MX records. Exim follows the
2170 rules and rejects this, but other MTAs do support it, so the
2171 \allow_mx_to_ip\ was regretfully added at release 3.14 to permit this
2172 heinous activity.
2173
2174
2175Q0303: How do I configure Exim to send all messages to a central server? I
2176 don't want to do any local deliveries at all on this host.
2177
2178A0303: Use this as your first and only router:
2179
2180==> send_to_gateway:
2181 driver = manualroute
2182 transport = remote_smtp
2183 route_list = * central.server.host
2184
2185
2186Q0304: How do I configure Exim to send all non-local mail to a gateway host?
2187
2188A0304: Replace the \%dnslookup%\ router in the default configuration with the
2189 following:
2190
2191==> send_to_gateway:
2192 driver = manualroute
2193 domains = !+local_domains
2194 transport = remote_smtp
2195 route_list = * gate.way.host
2196
2197 If there are several hosts you can send to, you can specify them as a
2198 colon-separated list.
2199
2200
2201Q0305: How can I arrange for mail on my local network to be delivered directly
2202 to the relevant hosts, but all other mail to be sent to my ISP's mail
2203 server? The local hosts are all DNS-registered and behave like normal
2204 Internet hosts.
2205
2206A0305: Set up a first router to pick off all the domains for your local
2207 network. There are several ways you might do this. For example
2208
2209==> local_network:
2210 driver = dnslookup
2211 transport = remote_smtp
2212 domains = *.mydomain.com
2213
2214 This does a perfectly conventional DNS routing operation, but only for
2215 the domains that match \(*.mydomain.com)\. Follow this with a `smart
2216 host' router:
2217
2218==> internet:
2219 driver = manualroute
2220 domains = !+local_domains
2221 transport = remote_smtp
2222 route_list = * mail.isp.net
2223
2224 This routes any other non-local domains to the smart host.
2225
2226
2227Q0306: How do I configure Exim to send all non-local mail to a central server
2228 if it cannot be immediately delivered by my host? I don't want to have
2229 queued mail waiting on my host.
2230
2231A0306: Add to the \%remote_smtp%\ transport the following:
2232
2233==> fallback_hosts = central.server.name(s)
2234
2235 If there are several names, they must be separated by colons.
2236
2237
2238Q0307: The \route_list\ setting \"^foo$:^bar$ $domain"\ in a \%manualroute%\
2239 router does not work.
2240
2241A0307: The first thing in a \route_list\ item is a single pattern, not a list of
2242 patterns. You need to write that as \"^(foo|bar)$ $domain"\.
2243 Alternatively, you could use several items and write
2244
2245==> route_list = foo $domain; bar $domain
2246
2247 Note the semicolon separator. This is because the second thing in each
8e26e4bf 2248 item can itself be a colon-separated list of hosts.
495ae4b0
PH
2249
2250
2251Q0308: I have a domain for which some local parts must be delivered locally,
2252 but the remainder are to be treated like any other remote addresses.
2253
2254A0308: One possible way of doing this is as follows: Assuming you are using a
2255 configuration that is similar to the default one, first exclude your
2256 domain from the first router by changing it to look like this:
2257
2258==> non_special_remote:
2259 driver = dnslookup
2260 domains = ! +local_domains : ! special.domain
2261 transport = remote_smtp
2262 ignore_target_hosts = 127.0.0.0/8
2263 no_more
2264
8e26e4bf 2265 Then add a second router to handle the local parts that are not to
495ae4b0
PH
2266 be delivered locally:
2267
2268==> special_remote:
2269 driver = dnslookup
2270 domains = special.domain
2271 local_parts = ! lsearch;/list/of/special/localparts
2272 transport = remote_smtp
2273 ignore_target_hosts = 127.0.0.0/8
2274 no_more
2275
2276 The remaining local parts will fall through to the remaining routers,
2277 which can delivery them locally.
2278
2279
2280Q0309: How can I configure Exim on a firewall machine so that if mail arrives
2281 addressed to a domain whose MX points to the firewall, it is forwarded
2282 to the internal mail server, without having to have a list of all the
2283 domains involved?
2284
2285A0309: As your first router, have the standard \%dnslookup%\ router from the
2286 default configuration, with the added option
2287
2288==> self = pass
2289
2290 This will handle all domains whose lowest numbered MX records do not
2291 point to your host. Because of the \no_more\ setting, if it encounters
2292 an unknown domain, routing will fail. However, if it hits a domain whose
2293 lowest numbered MX points to your host, the \self\ option comes into
2294 play, and overrides \no_more\. The \"pass"\ setting causes it to pass
2295 the address on to the next router. (The default causes it to generate an
2296 error.)
2297
2298 The only non-local domains that reach the second router are those with
2299 MX records pointing to the local host. Set it up to send them to the
2300 internal mail server like this:
2301
2302==> internal:
2303 driver = manualroute
2304 domains = ! +local_domains
2305 transport = remote_smtp
2306 route_list = * internal.server
2307
2308
2309Q0310: If a DNS lookup returns no MX records why doesn't Exim just bin the
2310 message?
2311
2312A0310: If a DNS lookup returns no MXs, Exim looks for an address record, in
2313 accordance with the rules that are defined in the RFCs. If you want to
2314 break the rules, you can set \mx_domains\ in the \%dnslookup%\ router, but
2315 you will cut yourself off from those sites (and there still seem to be
2316 plenty) who do not set up MX records.
2317
2318
2319Q0311: When a DNS lookup for MX records fails to complete, why doesn't Exim
2320 send the messsage to the host defined by the A record?
2321
2322A0311: The RFCs are quite clear on this. Only if it is known that there are no
2323 MX records is an MTA allowed to make use of the A record. When an MX
2324 lookup fails to complete, Exim does not know whether there are any MX
2325 records or not. There seem to be some name servers (or some
2326 configurations of some name servers) that give a ``server fail'' error when
2327 asked for a non-existent MX record. Exim uses standard resolver calls,
2328 which unfortunately do not distinguish between this case and a timeout,
2329 so all Exim can do is try again later.
2330
2331
2332Q0312: Is it possible to use a conditional expression for the host item in a
2333 \route_list\ for \%manualroute%\ router? I tried the following, but it
2334 doesn't work:
2335
2336==> route_list = * ${if match{$header_from:}{\N.*\.usa\.net$\N} \
2337 {<smarthost1>}{<smarthost2>}
2338
2339A0312: The problem is that the second item in \route_list\ contains white
2340 space, which means that it gets terminated prematurely. To avoid this,
2341 you must put the second item in quotes:
2342
2343==> route_list = * "${if match{$header_from:}{\N.*\.usa\.net$\N} \
2344 {<smarthost1>}{<smarthost2>}}"
2345
2346
2347Q0313: I send all external mail to a smart host, but this means that bad
2348 addresses also get passed to the smart host. Can I avoid this?
2349
2350A0313: Assuming you have DNS availability, set up a conventional \%dnslookup%\
2351 router to do the routing, but in the \%remote_smtp%\ transport set this:
2352
2353==> hosts = your.smart.host
2354 hosts_override
2355
2356 This will override the hosts that the router finds so that everything
2357 goes to the smart host, but any non-existent domains will be failed by
2358 the router.
2359
2360
2361Q0314: I have a really annoying intermittent problem where attempts to mail to
2362 valid sites are rejected with \*unknown mail domain*\. This only happens a
2363 few times a day and there is no particular pattern to the sites it
2364 rejects. If I try to lookup the same domain a few minutes later then it
2365 is OK.
2366
2367A0314: This is almost certainly a problem with the DNS resolver or the the
2368 domain's name servers.
2369
2370 (1) Have you linked Exim against the newest DNS resolver library that
2371 comes with Bind? If you are using SunOS4 that may be your problem, as
2372 the resolver that comes with that OS is known to be buggy and to give
2373 intermittent false negatives.
2374
2375 (2) Effects like this are sometimes seen if a domain's name servers get
2376 out of step with each other.
2377
2378
2379Q0315: I'd like route all mail with addresses that can't be resolved (the DNS
2380 lookup times out) to a relay machine.
2381
2382A0315: Set \pass_on_timeout\ on your \%dnslookup%\ router, and add below it a
2383 \%manualroute%\ router that routes all relevant domains to the relay.
2384
2385
2386Q0316: I would like to forward all incoming email for a particular domain to
2387 another host via SMTP. Whereabouts would I configure that?
2388
2389A0316: Use this as your first router:
2390
2391==> special:
2392 driver = manualroute
2393 transport = remote_smtp
2394 route_list = the.particular.domain the.other.host
2395
2396 You will also need to adjust the ACL for incoming SMTP so that this
2397 domain is accepted for relaying. If you are using the default
2398 configuration, there is a domain list called \relay_domains\ that is
2399 set up for this.
2400
2401
2402Q0317: What I'd like to do is have alternative smart hosts, where the one to be
2403 used is determined by which ISP I'm connected to.
2404
2405A0317: The simplest way to do this is to arrange for the name of the smart host
2406 du jour to be placed in a file when you connect, say \(/etc/smarthost)\.
2407 Then you can read this file from a \%manualroute%\ router like this:
2408
2409==> smarthost:
2410 driver = manualroute
2411 transport = remote_smtp
2412 route_list = * ${readfile{/etc/smarthost}{}}
2413
2414 The second argument of the \"readfile"\ item is a string that replaces
2415 any newline characters in the file (in this case, with nothing).
2416 By keeping the data out of the main configuration file, you avoid having
2417 to HUP the daemon when it changes.
2418
2419
2420Q0318: Exim won't route to a host with no MX record.
2421
2422A0318: More than one thing may cause this.
2423
2424 (1) Are you sure there really is no MX record? Sometimes a typo results
2425 in a malformed MX record in the zone file, in which case some name
2426 servers give a SERVFAIL error rather than NXDOMAIN. Exim has to treat
2427 this as a temporary error, so it can't go on to look for address records.
2428 You can check for this state using one of the DNS interrogation commands,
2429 such as \(nslookup)\, \(host)\, or \(dig)\.
2430
2431 (2) Is there a wildcard MX record for \(your)\ domain? Is the
2432 \search_parents\ option on in your \%dnslookup%\ router? If the answer to
2433 both these questions is ``yes'', that is the cause of the problem. When
2434 the DNS resolver fails to find the MX record, it tries adding on your
2435 domain if \search_parents\ is true, and thereby finds your wildcard MX
2436 record. For example:
2437
2438 . There is a wildcard MX record for \(*.a.b.c)\.
2439
2440 . There is a host called \(x.y.z)\ that has an A record and no MX record.
2441
2442 . Somebody on the host \(m.a.b.c)\ domain tries to mail to \(user@x.y.z)\.
2443
2444 . Exim calls the DNS to look for an MX record for \(x.y.z)\.
2445
2446 . The DNS doesn't find any MX record. Because \search_parents\ is true,
2447 it then tries searching the current host's parent domain, so it
2448 looks for \(x.y.z.a.b.c)\ and picks up the wildcard MX record.
2449
2450 Setting \search_parents\ false makes this case work while retaining the
2451 wildcard MX record. However, anybody on the host \(m.a.b.c)\ who mails to
2452 \(user@n.a)\ (expecting it to go to \(user@n.a.b.c)\) now has a problem. The
2453 \widen_domains\ option of the \%dnslookup%\ router may be helpful in this
2454 circumstance.
2455
2456
2457Q0319: I have some mails on my queues that are sticking around longer than
2458 the retry time indicates they should. They are all getting frozen
2459 because some remote admin has set their MX record to 127.0.0.1.
2460
2461A0319: The admin in question is an idiot. Exim will always freeze such messages
2462 because they are apparently routed to the local host. To bounce these
2463 messages immediately, set
2464
2465==> ignore_target_hosts = 127.0.0.1
2466
2467 on the \%dnslookup%\ router. This causes Exim to completely ignore any hosts
2468 with that IP address. In fact, there are quite a number of IP addresses
2469 that should never be used. Here is a suggested configuration list for
2470 the IPv4 ones:
2471
2472==> # Don't allow domains whose single MX (or A) record is a
2473 # "special-use IPv4 address", as listed in RFC 3330.
2474 ignore_target_hosts = \
f0884f39
PH
2475 # Hosts on "this network"; RFC 1700 (page 4) states that these
2476 # are only allowed as source addresses
2477 0.0.0.0/8 : \
2478 # Private networks, RFC 1918
2479 10.0.0.0/8 : 172.16.0.0/12 : 192.168.0.0/16 : \
2480 # Internet host loopback address, RFC 1700 (page 5)
2481 127.0.0.0/8 : \
2482 # "Link local" block
2483 169.254.0.0/16 : \
2484 # "TEST-NET" - should not appear on the public Internet
2485 192.0.2.0/24 : \
2486 # 6to4 relay anycast addresses, RFC 3068
2487 192.88.99.0/24 : \
2488 # Network interconnect device benchmark testing, RFC 2544
2489 198.18.0.0/15 : \
2490 # Multicast addresses, RFC 3171
2491 224.0.0.0/4 : \
2492 # Reserved for future use, RFC 1700 (page 4)
2493 240.0.0.0/4
495ae4b0
PH
2494
2495
2496Q0320: How can I arrange for all mail to \*user@some.domain*\ to be forwarded
2497 to \*user@other.domain*\?
2498
2499A0320: Put this as your first router:
2500
2501==> forward:
2502 driver = redirect
2503 domains = some.domain
2504 data = ${quote:$local_part}@other.domain
2505
2506
2507Q0321: How can I tell an Exim router to use only IPv4 or only IPv6 addresses
2508 when it finds both types in the DNS?
2509
2510A0321: You can do this by making it ignore the addresses you don't want. This
2511 example ignores all IPv6 addresses and all IPv4 addresses in the 127
2512 network:
2513
2514==> ignore_target_hosts = <; 0000::0000/0 ; 127.0.0.0/8
2515
2516 To ignore all IPv4 addresses, use
2517
2518==> ignore_target_hosts = 0.0.0.0/0
2519
2520 See Q0319 for a general discussion of \ignore_target_hosts\.
2521
2522
2523Q0322: How can I reroute all messages bound for 192.168.10.0 and 10.0.0.0 to
2524 a specific mail server?
2525
2526A0322: That is an odd requirement. However, there is an obscure feature in
2527 Exim, originally implemented for packet radio people, that perhaps can
2528 help. Check out the \translate_ip_address\ generic router option.
2529
2530
2531
25324. ROUTING FOR LOCAL DELIVERY
2533
2534Q0401: I need to have any mail for \(virt.dom.ain)\ that doesn't match one of the
2535 aliases in \(/usr/lib/aliases.virt)\ delivered to a particular address, for
2536 example, \(postmaster@virt.dom.ain)\.
2537
2538A0401: Adding an asterisk to a search type causes Exim to look up ``*'' when the
2539 normal lookup fails. So if your aliasing router is something like this:
2540
2541==> virtual:
2542 driver = redirect
2543 domains = virt.dom.ain
2544 data = ${lookup{$local_part}lsearch{/usr/lib/aliases.virt}}
2545 no_more
2546
2547 you should change \"lsearch"\ to \"lsearch*"\, and put this in the alias
2548 file:
2549
2550==> *: postmaster@virt.dom.ain
2551
2552 This solution has the feature that if there are several unknown
2553 addresses in the same message, only one copy gets sent to the
2554 postmaster, because of Exim's normal de-duplication rules.
2555
2556 NOTE: This solution works only if there is also an entry for \(postmaster)\
2557 in the alias file, ultimately resolving to an address that is not in
2558 \(virt.dom.ain)\. See also Q0434.
2559
2560
2561Q0402: How do I arrange for all incoming email for \(*@some.domain)\ to go into one
2562 pop3 mail account? The customer doesn't want to add a list of specific
2563 local parts to the system.
2564
2565A0402: Set up a special transport that writes to the mailbox like this:
2566
2567==> special_transport:
2568 driver = appendfile
2569 file = /pop/mailbox
2570 envelope_to_add
2571 return_path_add
2572 delivery_date_add
2573 user = exim
2574
2575 The file will be written as the user \"exim"\. Then arrange to route all
2576 mail for that domain to that transport, with a router like this:
2577
2578==> special_router:
2579 driver = accept
2580 domains = some.domain
2581 transport = special_transport
2582
2583
2584Q0403: How do I configure Exim to send messages for unknown local users to a
2585 central server?
2586
2587A0403: Assuming you are using something like the default configuration, where
2588 local users are processed by the later routers, you should add the
2589 following router at the end:
2590
2591==> unknown:
2592 driver = manualroute
2593 transport = remote_smtp
2594 route_list = * server.host.name
2595 no_verify
2596
2597 However, you should if possible try to verify that the user is known on
2598 the central server before accepting the message in the first place. This
2599 can be done by making use of Exim's ``call forward'' facility.
2600
2601
2602Q0404: How can I arrange for messages submitted by (for example) Majordomo to
2603 be handled specially?
2604
2605A0404: You can use the \condition\ option on a router, with a setting such as
2606
2607==> condition = ${if and {{eq {$sender_host_address}{}} \
2608 {eq {$sender_ident}{majordom}}} {yes}{no}}
2609
2610 This first tests for a locally-submitted message, by ensuring there is
2611 no sending host address, and then it checks the identity of the user
2612 that ran the submitting process.
2613
2614
2615Q0405: On a host that accepts mail for several domains, do I have to use fully
2616 qualified addresses in \(/etc/aliases)\ or do I have to set up an alias
2617 file for each domain?
2618
2619A0405: You can do it either way. The default aliasing router contains this line:
2620
2621==> data = ${lookup{$local_part}lsearch{/etc/aliases}}
2622
2623 which is what does the actual lookup. To make it look up the complete
2624 address instead of just the local part, use
2625
2626==> data = ${lookup{$local_part@$domain}lsearch{/etc/aliases}}
2627
2628 If you want to use a separate file for each domain, use
2629
2630==> data = ${lookup{$local_part}lsearch{/etc/aliases/$domain}}
2631
2632
2633Q0406: Some of my users are using the \(.forward)\ to pipe to a shell command which
2634 appends to the user's INBOX. How can I forbid this?
2635
2636A0406: If you allow your users to run shells in pipes, you cannot control which
2637 commands they run or which files they write to. However, you should point
2638 out to them that writing to an INBOX by arbitrary commands is not
2639 interlocked with the MTA and MUAs, and is liable to mess up the contents
2640 of the file.
2641
2642 If a user simply wants to choose a specific file for the delivery of
2643 messages, this can be done by putting a file name in a \(.forward)\ file
2644 rather than using a pipe, or by using the \"save"\ command in an Exim
2645 filter file.
2646
2647 You can set \forbid_pipe\ on the router, but that will prevent them from
2648 running any pipe commands at all. Alternatively, you can restrict which
2649 commands they may run in their pipes by setting the \allow_commands\
2650 and/or \restrict_to_path\ options in the \%address_pipe%\ transport.
2651
2652
2653Q0407: How can I arrange for a default value when using a query-style lookup
2654 such as LDAP or NIS+ to handle aliases?
2655
2656A0407: Use a second query in the failure part of the original lookup, like
2657 this:
2658
2659==> data = ${lookup ldap\
2660 {ldap://x.y.z/l=yvr?aliasaddress?sub?(&(mail=$local_part@$domain))}\
2661 {$value}\
2662 {\
2663 ${lookup ldap \
2664 {ldap://x.y.z/l=yvr?aliasaddress?sub?(&(mail=default@$domain))}}\
2665 }}
2666
2667 Of course, if the default is a fixed value you can just include it
2668 directly.
2669
2670
2671Q0408: If I don't fully qualify the addresses in a virtual domain's alias file
2672 then mail to aliases which also match the local domain get delivered to
2673 the local domain.
2674
2675A0408: Set the \qualify_preserve_domain\ option on the \%redirect%\ router.
2676
2677
2678Q0409: I want mail for any local part at certain virtual domains to go
2679 to a single address for each domain.
2680
9c2b45c9 2681A0409: One way to do this is
495ae4b0
PH
2682
2683==> virtual:
2684 driver = redirect
2685 data = ${lookup{$domain}lsearch{/etc/virtual}}
2686
2687 The \(/etc/virtual)\ file contains a list of domains and the addresses to
2688 which their mail should be sent. For example:
2689
2690==> domain1: postmaster@some.where.else
2691 domain2: joe@xyz.plc
2692
2693 If the number of domains is large, using a DBM or cdb file would be more
2694 efficient. If the lookup fails to find the domain in the file, the value
2695 of the \data\ option is empty, causing the router to decline.
2696
2697
2698Q0410: How can I make Exim look in the alias NIS map instead of \(/etc/aliases)\?
2699
2700A0410: The default configuration does not use NIS (many hosts don't run it).
2701 You need to change this line in the \%system_aliases%\ router:
2702
2703==> data = ${lookup{$local_part}lsearch{/etc/aliases}}
2704
2705 Change it to
2706
2707==> data = ${lookup{$local_part}nis{mail.aliases}}
2708
2709 If you want to use \(/etc/aliases)\ as well as NIS, put this router (with
2710 a different name) before or after the default one, depending on which
2711 data source you want to take precedence.
2712
2713
2714Q0411: Why will Exim deliver a message locally to any username that is longer
2715 than 8 characters as long as the first 8 characters match one of the
2716 local usernames?
2717
2718A0411: The problem is in your operating system. Exim just calls the \^^getpwnam()^^\
2719 function to test a local part for being a local login name. It does not
2720 presume to guess the maximum length of user name for the underlying
2721 operating system. Many operating systems correctly reject names that are
2722 longer than the maximum length; yours is apparently deficient in this
2723 regard. To cope with such systems, Exim has an option called
2724 \max_user_name_length\ which you can set to the maximum allowed length.
2725
2726
2727Q0412: Why am I seeing the error \*bad mode (100664) for /home/test/.forward*\?
2728 I've looked through the documentation but can't see anything to suggest
2729 that Exim has to do anything other than read the \(.forward)\ file.
2730
2731A0412: For security, Exim checks for mode bits that shouldn't be set, by
2732 default 022. You can change this by setting the \modemask\ option of the
2733 \%redirect%\ router that is handling \(.forward)\ files.
2734
2735
2736Q0413: When a user's \(.forward)\ file is syntactially invalid, Exim defers
2737 delivery of all messages to that user, which sometimes include the
2738 user's own test messages. Can it be told to ignore the \(.forward)\ file
2739 and/or inform the user of the error?
2740
2741A0413: Setting \skip_syntax_errors\ on the redirect router causes syntax
2742 errors to be skipped. When dealing with users' \(.forward)\ files it is best
2743 to combine this with a setting of \syntax_errors_to\ in order to send
2744 a message about the error to the user. However, to avoid an infinite
2745 cascade of messages, you have to be able to send to an address that
2746 bypasses \(.forward)\ file processing. This can be done by including a
2747 router like this one
2748
2749==> real_localuser:
2750 driver = accept
2751 check_local_user
2752 transport = local_delivery
90af77f4 2753 local_part_prefix = real-
495ae4b0
PH
2754
2755 before the \%redirect%\ router that handles \(.forward)\ files. This will
2756 do an ordinary local delivery without \(.forward)\ processing, if the
2757 local part is prefixed by \"real-"\. You can then set something like
2758 the following options on the \%redirect%\ router:
2759
2760==> skip_syntax_errors
2761 syntax_errors_to = real-$local_part@$domain
2762 syntax_errors_text = "\
2763 This is an automatically generated message. An error has been \
2764 found\nin your .forward file. Details of the error are reported \
2765 below. While\nthis error persists, messages addressed to you will \
2766 get delivered into\nyour normal mailbox and you will receive a \
2767 copy of this message for\neach one."
2768
2769 A final tidying setting to go with this is a rewriting rule that changes
2770 \"real-username"\ into just \"username"\ in the headers of the message:
2771
2772==> \N^real-([^@]+)@your\.dom\.ain$\N $1@your.dom.ain h
2773
2774 This means that users won't ever see the \"real-"\ prefix, unless they
2775 look at the ::Envelope-To:: header.
2776
2777
2778Q0414: I have set \caseful_local_part\ on the routers that handle my local
2779 domain because my users have upper case letters in their login names,
2780 but incoming mail now has to use the correct case. Can I relax this
2781 somehow?
2782
2783A0414: If you really have to live with caseful user names but want incoming
2784 local parts to be caseless, then you have to maintain a file, indexed by
2785 the lower case forms, that gives the correct case for each login, like
2786 this:
2787
2788==> admin: Admin
2789 steven: Steven
2790 mcdonald: McDonald
2791 lamanch: LaManche
2792 ...
2793
2794 and at the start of the routers that handle your local domain, put one
2795 like this:
2796
2797==> set_case_router:
2798 driver = redirect
2799 data = ${lookup{${lc:$local_part}}lsearch{/the/file}}
2800 qualify_preserve_domain
2801
2802 For efficiency, you should also set the \redirect_router\ option to cause
2803 processing of the changed address to begin at the next router. If you
2804 are otherwise using the default configuration, the setting would be
2805
2806==> redirect_router = system_aliases
2807
2808 If there are lots of users, then a DBM or cdb file would be more
2809 efficient than a linear search. If you are handling several domains,
2810 you will have to extend this configuration to cope appropriately.
2811
2812
2813Q0415: Can I use my existing alias files and forward files as well as procmail
2814 and effectively drop in Exim in place of Sendmail ?
2815
2816A0415: Yes, as long as your alias and forward files don't assume that pipes are
2817 going to run under a shell. If they do, you either have to change them,
2818 or configure Exim to use a shell (which it doesn't by default).
2819
2820
2821Q0416: What is quickest way to set up Exim so any message sent to a
2822 non-existing user would bounce back with a different message, based
2823 on the name of non-existing user?
2824
2825A0416: Place this router last, so that it catches any local addresses that
2826 are not otherwise handled:
2827
2828==> non_exist:
2829 driver = accept
2830 transport = non_exist_reply
2831 no_verify
2832
2833 Then add the following transport to the transports section:
2834
2835==> non_exist_reply:
2836 driver = autoreply
2837 user = exim
2838 to = $sender_address
2839 subject = User does not exist
2840 text = You sent mail to $local_part. That's not a valid user here. \
2841 The subject was: $subject.
2842
2843 If you want to pick up a message from a file, you can use the \file\
2844 option (use \file_expand\ if you want its contents expanded).
2845
2846
2847Q0417: What do I need to do to make Exim handle \(/usr/ucb/vacation)\ processing
2848 automatically, so that people could just create a \(.vacation.msg)\ file in
2849 their home directory and not have to edit their \(.forward)\ file?
2850
2851A0417: Add a new router like this, immediately before the normal \%localuser%\
2852 router:
2853
2854==> vacation:
2855 driver = accept
2856 check_local_user
2857 require_files = $home/.vacation.msg
2858 transport = vacation_transport
2859 unseen
2860
2861 and a matching new transport like this:
2862
2863==> vacation_transport:
2864 driver = pipe
2865 command = /usr/ucb/vacation $local_part
2866
2867 However, some versions of \(/usr/ucb/vacation)\ do not work properly unless
2868 the DBM file(s) it uses are created in advance - it won't create them
2869 itself. You also need a way of removing them when the vacation is over.
2870
2871 Another possibility is to use a fixed filter file which is run whenever
2872 \(.vacation.msg)\ exists, for example:
2873
2874==> vacation:
2875 driver = redirect
2876 check_local_user
2877 require_files = $home/.vacation.msg
2878 file = /some/central/filter
2879 allow_filter
2880
2881 The filter file should use the \"if personal"\ check before sending mail,
2882 to avoid generating automatic responses to mailing lists. If sending a
2883 message is all that it does, this doesn't count as a ``significant''
2884 delivery, so the original message goes on to be delivered as normal.
2885
2886 Yet another possibility is to make use of Exim's \%autoreply%\ transport,
2887 and not use \(/usr/ucb/vacation)\ at all.
2888
2889
2890Q0418: I want to use a default entry in my alias file to handle unknown local
2891 parts, but it picks up the local parts that the aliases generate. For
2892 example, if the alias file is
2893
2894==> luke.skywalker: luke
2895 ls: luke
2896 *: postmaster
2897
2898 then messages addressed to \/luke.skywalker/\ end up at \/postmaster/\.
2899
2900A0418: The default mechanism works best with virtual domains, where the
2901 generated address is not in the same domain. If you just want to pick up
2902 all unknown local parts and send them to postmaster, an easier way to do
2903 it is to put this as your last router:
2904
2905==> unknown:
2906 driver = redirect
2907 data = postmaster
2908 no_verify
2909
2910 Another possibility is to put the redirect router for these aliases
2911 after all the other routers, so that local parts which are user names
2912 get picked off first. You will need to have two aliasing routers if
2913 there are some local parts (e.g. \/root/\) which are login names, but which
2914 you want to handle as aliases.
2915
2916
2917Q0419: I have some obsolete domains which people have been warned not to use
2918 any more. How can I arrange to delete any mail that is sent to them?
2919
2920A0419: To reject them at SMTP time, with a customized error message, place
2921 statments like this in the ACL:
2922
2923==> deny message = The domain $domain is obsolete
2924 domains = lsearch;/etc/exim/obsolete.domains
2925
2926 For messages that don't arrive over SMTP, you can use a router like
2927 this to bounce them:
2928
2929==> obsolete:
2930 driver = redirect
2931 domains = lsearch;/etc/exim/obsolete.domains
2932 allow_fail
2933 data = :fail: the domain $domain is obsolete
2934
2935 If you just want to throw away mail to those domains, accept them at
2936 SMTP time, and use a router like this:
2937
2938==> obsolete:
2939 domains = lsearch;/etc/exim/obsolete.domains
2940 data = :blackhole:
2941
2942
2943Q0420: How can I arrange that mail addressed to \(anything@something.mydomain.com)\
2944 gets delivered to \(something@mydomain.com)\?
2945
2946A0420: Set up a router like this:
2947
2948==> user_from_domain:
2949 driver = redirect
2950 data = ${if match{$domain}{\N^(.+)\.mydomain\.com$\N}\
2951 {$1@mydomain.com}}
2952
2953
2954Q0421: I can't get a regular expression to work in a \local_parts\ option on
2955 one of my routers.
2956
2957A0421: Have you remembered to protect any backslash and dollar characters in
2958 your regex from unwanted expansion? The easiest way is to use the
2959 \"@\N"\ facility, like this:
2960
2961==> local_parts = \N^0740\d{6}\N
2962
2963
2964Q0422: How can I arrange for all addresses in a group of domains \(*.example.com)\
2965 to share the same alias file? I have a number of such groups.
2966
2967A0422: For a single group you could just hard wire the file name into a router
2968 that had
2969
2970==> domains = *.example.com
2971
2972 set, to restrict it to the relevant domains. For a number of such groups
2973 you can create a file containing the domains, like this:
2974
2975==> *.example1.com example1.com
2976 *.example2.com example2.com
2977 ...
2978
2979 Then create a router like this
2980
2981==> domain_aliases:
2982 driver = redirect
2983 domains = partial-lsearch;/that/file
2984 data = ${lookup{$local_part}lsearch*{/etc/aliases.d/$domain_data}}
2985
2986 The variable \$domain_data$\ contains the data that was looked up when the
2987 \domains\ option was matched, i.e. \"example1.com"\, \"example2.com"\, etc.
2988 in this case.
2989
2990
2991Q0423: Some of our users have no home directories; the field in the password
2992 file contains \(/no/home/dir)\. This causes the error \*failed to stat
2993 /no/home/dir (No such file or directory)*\ when Exim tries to look for a
2994 \(.forward file)\, and the delivery is deferred.
2995
2996A0423: There are two issues involved here:
2997
2998 (1) With the default configuration, you are asking Exim to check for a
2999 \(.forward)\ file in the user's home directory. If no file is found,
3000 Exim tries to \^^stat()^^\ the home directory. This is so that it will
3001 notice a missing NFS home directory, and not treat it as if the
3002 \(.forward)\ file did not exist. This \^^stat()^^\ is failing when the
3003 home directory really doesn't exist. You should arrange for the
3004 \%userforward%\ router not to run for these special users, by adding
3005 this line:
3006
3007==> condition = ${if eq {$home}{/no/home/dir}{no}{yes}}
3008
3009 (2) If you use \check_local_user\ on another router to route to a local
3010 transport (again, this is what is in the default configuration), you
3011 will also have to specify a current directory for the transport, because
3012 by default it makes the home directory current. This is easily done by
3013 adding
3014
3015==> current_directory = /
3016
3017 to the transport or
3018
3019==> transport_current_directory = /
3020
3021 to the router. Or you can add \home_directory\ to the transport, because
3022 the current directory defaults to the home directory.
3023
3024
3025Q0424: How can I disable Exim's de-duplication features? I want it to do two
3026 deliveries if two different aliases expand to the same address.
3027
3028A0424: This is not possible. Duplication has other ramifications other than
3029 just (in)convenience. Consider:
3030
3031 . Message is addressed to A and to B.
3032
3033 . Both A and B are aliased to C.
3034
3035 . Without de-duplication, two deliveries to C are scheduled.
3036
3037 . One delivery happens, Exim records that it has delivered the message
3038 to C.
3039
3040 . The next delivery fails (C's mailbox is over quota, say).
3041
3042 Next time round, Exim wants to know if it has already delivered to C or
3043 not, before scheduling a new delivery. Has it? Obviously, if duplicate
3044 deliveries are supported, it has to remember not only that it has
3045 delivered to C but also the ``history'' of how that delivery happened - in
3046 effect an ancestry list back to the original envelope address. This it
3047 does not do, and changing it to work in that way would be a lot of work
3048 and a big upheaval.
3049
3050 The best way to get duplicate deliveries if you want them is not to use
3051 aliases, but to route the addresses directly to a transport, e.g.
3052
3053==> duplicates:
3054 driver = accept
3055 local_parts = lsearch;/etc/list/of/special/local/parts
3056 transport = local_delivery
3057 user = exim
3058
3059
3060Q0425: My users' mailboxes are distributed between several servers according to
3061 the first letter of the user name. All the servers receive incoming mail
3062 at random. I would like to have the same configuration file for all the
3063 servers, which does local delivery for the mailboxes it holds, and sends
3064 other addresses to the correct other server. Is this possible?
3065
3066A0425: It is easiest if you arrange for all the users to have password entries
3067 on all the servers. This means that non-existent users can be detected
3068 at the first server they reach. Set up a file containing a mapping from
3069 the first letter of the user names to the servers where their mailboxes
3070 are held. For example:
3071
3072==> a: server1
3073 b: server1
3074 c: server2
3075 ...
3076
3077 Before the normal \%localuser%\ router, place the following router:
3078
3079==> mailbox_host:
3080 driver = manualroute
3081 check_local_user
3082 transport = remote_smtp
3083 route_list = * ${lookup{${substr_0_1:$local_part}}lsearch{/etc/mapfile}}
3084 self = pass
3085
3086 This router checks for a local account, then looks up the host from the
3087 first character of the local part. If the host is not the local host,
3088 the address is routed to the \%remote_smtp%\ transport, and sent to the
3089 correct host. If the host is the local host, the \self\ option causes
3090 the router to pass the address to the next router, which does a local
3091 delivery.
3092
3093 The router is skipped for local parts that are not the names of local
3094 users, and so these addresses fail.
3095
3096
3097Q0426: One of the things I want to set up is for \(anything@onedomain)\ to forward
3098 to \(anything@anotherdomain)\. I tried adding \($local_part@anotherdomain)\ to
3099 my aliases but it did not expand - it sent it to that literal address.
3100
3101A0426: If you want to do it that way, you can use the \"expand"\ operator on
3102 the lookup used in the data option of the redirect router. For example:
3103
3104==> data = ${expand:${lookup{$local_part}lsearch*{/etc/aliases}}}
3105
3106 Another approach is to use a router like this:
3107
3108==> forwarddomain:
3109 driver = redirect
3110 domains = onedomain
3111 data = $local_part@anotherdomain
3112
3113 The value of \data\ can, of course, be more complicated, involving
3114 lookups etc. if you have lots of different cases.
3115
3116
3117Q0427: How can I have an address looked up in two different alias files, and
3118 delivered to all the addresses that are found?
3119
3120A0427: Use a router like this:
3121
3122==> multi_aliases:
3123 driver = redirect
3124 data = ${lookup{$local_part}lsearch{/etc/aliases1}\
3125 {$value${lookup{$local_part}lsearch{/etc/aliases2}{,$value}}}\
3126 {${lookup{$local_part}lsearch{/etc/aliases2}{$value}fail}}}\
3127
3128 If the first lookup succeeds, the result is its data, followed by the
3129 data from the second lookup, if any, separated by a comma. If the first
3130 lookup fails, the result is the data from the third lookup (which also
3131 looks in the second file), but if this also fails, the entire expansion
3132 is forced to fail, thereby causing the router to decline.
3133
3134 Another approach is to use two routers, with the first re-generating the
3135 original local part when it succeeds. This won't get processed by the
3136 same router again. For example:
3137
3138==> multi_aliases1:
3139 driver = redirect
3140 data = ${lookup{$local_part}lsearch{/etc/aliases1}{$value,$local_part}}
3141
3142==> multi_aliases2:
3143 data = ${lookup{$local_part}lsearch{/etc/aliases2}}
3144
3145 This scales more easily to three or more alias files.
3146
3147
3148Q0428: I've converted from Sendmail, and I notice that Exim doesn't make use
3149 of the \"owner-"\ entries in my alias file to change the sender address in
3150 outgoing messages to a mailing list.
3151
3152A0428: If you have an alias file with entries like this:
3153
3154==> somelist: a@b, c@d, ...
3155 owner-somelist: postmaster
3156
3157 Sendmail assumes that the second entry specifies a new sender address
3158 for the first. Exim does not make this assumption. However, you can make
3159 it take the same action, by adding
3160
3161==> errors_to = owner-$local_part@whatever.domain
3162
3163 to the configuration for your aliasing router. This is fail-safe,
3164 because Exim verifies a new sender address before using it. Thus, the
3165 change of sender address occurs only when the owner entry exists.
3166
3167
3168Q0429: I would like to deliver mail addressed to a given domain to local
3169 mailboxes, but also to generate messages to the envelope senders.
3170
3171A0429: You can do this with an ``unseen'' router and an \%autoreply%\ transport,
3172 along the following lines:
3173
3174==> # Router
3175 auto_warning_r:
3176 driver = accept
3177 check_local_user
3178 domains = <domains you want to do this for>
3179 condition = ${if eq{$sender_address}{}{no}{yes}}
3180 transport = warning_t
3181 no_verify
3182 unseen
3183
3184 Place this router immediately before the normal \%localuser%\ router. The
3185 \unseen\ option means that the address is still passed on to the next
3186 router. The transport is configured like this:
3187
3188==> # Transport
3189 warning_t:
3190 driver = autoreply
3191 file = /usr/local/mail/warning.txt
3192 file_expand
3193 from = postmaster@your.domain
3194 to = $sender_address
3195 user = exim
3196 subject = Re: Your mail to $local_part@$domain
3197
3198 Note the use of the \condition\ option to avoid attempting to send a
3199 message when there is no sender (that is, when the incoming message is a
3200 bounce message). You can of course extend this to include other
3201 conditions. If you want to log the sending of messages, you can add
3202
3203==> log = /some/file
3204
3205 to the transport and also make use of the \once\ option if you want to
3206 send only one message to each sender.
3207
3208
3209Q0430: Whenever Exim tries to route a local address, it gives a permission
3210 denied error for the \(.forward)\ file, like this:
3211
3212==> 1998-08-10 16:55:32 0z5y2W-0000B8-00 == xxxx@yyy.zzz <xxxx@yyy.zz>
3213 D=userforward defer (-1): failed to open /home/xxxx/.forward
3214 (userforward router): Permission denied (euid=1234 egid=101)
3215
3216A0430: Have you remembered to make Exim setuid \/root/\?
3217
3218
3219Q0431: How do I configure Exim to allow arbitrary extensions in local parts, of
3220 the form \/+extension/\?
3221
3222A0431: Add this pre-condition to the relevant router:
3223
3224==> local_part_suffix = +*
3225
3226 If you want the extensions to be optional, also add the option
3227
3228==> local_part_suffix_optional
3229
3230 When the router runs, \$local_part$\ contains the local part with the
3231 extension removed, and the extension (if any) is in \$local_part_suffix$\.
3232 If you have set \check_local_user\, the test is carried out after the
3233 extension is removed.
3234
3235
3236Q0432: I use NIS for my user data. How can I stop Exim rejecting mail when my
3237 NIS servers are being restarted?
3238
3239A0432: Exim doesn't know that you are using NIS; it just calls the \^^getpwnam()^^\
3240 function, which is routed by nsswitch. Unfortunately, \^^getpwnam()^^\
3241 was never designed to be routed through NIS, and it returns NULL if the
3242 entry is not found or if the connection to the NIS server fails. This
3243 means that Exim cannot tell the difference between ``no such user'' and
3244 ``NIS is down''.
3245
3246 Crutches to help with this problem are \finduser_retries\ in Exim, and
3247 \^nscd^\ on the Unix side, but they are not perfect, and mail can still
3248 be lost. However, Nico Erfurth pointed out that you can create a router
3249 for Exim that tests for the availability of NIS, and force a defer if
3250 NIS is not running:
3251
3252==> check_nis:
3253 driver = redirect
3254 data = ${lookup {$local_part} nis {passwd}{}}
3255
3256 This should be placed before any router that makes any use of NIS,
3257 typically at the start of your local routers. How does it work? If
3258 your NIS server is reachable, the lookup will take place, and whether it
8e26e4bf 3259 succeeds or fails, the result is an empty string. This causes the
495ae4b0
PH
3260 router to decline, and the address is passed to the following routers.
3261 If your NIS server is down, the lookup defers, and this causes the
3262 router to defer. A verification of an incoming address gets a temporary
3263 rejection, and a delivery is deferred till later.
3264
3265
8e26e4bf
PH
3266Q0433: How can I arrange for a single address to be processed by both
3267 \%redirect%\ and \%accept%\?
495ae4b0
PH
3268
3269A0433: Check out the \unseen\ option.
3270
3271
3272Q0434: How can I redirect all local parts that are not in my system aliases to
3273 a single address? I tried using an asterisk in the system alias file
8e26e4bf 3274 with an \"lsearch*"\ lookup, but that sent all messages to the
495ae4b0
PH
3275 default address.
3276
3277A0434: If your alias file generates addresses in the local domain, they are
3278 also processed as a potential aliases. For example, suppose this is your
3279 alias file:
3280
3281==> caesar: jc
3282 anthony: ma
3283 *: brutus
3284
3285 The local part \/caesar/\ is aliased to \/jc/\, but that address is then
3286 reprocessed by the routers. As the address is in the local domain, the
3287 alias file is again consulted, and this time the default matches. In
3288 fact after the second aliasing, \/brutus/\ is also processed again from
3289 the start, and is aliased to itself. However, this happens only once,
3290 because the next time, Exim notices that the aliasing router has already
3291 processed \/brutus/\, so the router is skipped in order to avoid
3292 looping.
3293
3294 There are several ways of solving this problem; which one you use
3295 depends on your aliasing data.
3296
3297 (1) If the result of aliasing is always a local user name, that is,
3298 aliasing never generates another alias, you can use the
3299 \redirect_router\ option on the router to specify that processing
3300 the generated addresses must start at the next router. For example:
3301
3302==> redirect_router = userforward
3303
3304 assuming that the next router is called \%userforward%\. This
3305 ensures that there is at most one pass through the aliasing router.
3306
3307 (2) If you cannot rely on aliases generating non-aliases, it is often
3308 easier not to use a default alias, but instead to place a router
3309 such as the one below after all the other local routers (for the
3310 relevant domains):
3311
3312==> catch_unknown:
3313 driver = redirect
3314 domains = ...
3315 data = brutus@$domain
3316
3317 Note that the default aliasing technique works more successfully for
3318 virtual domains (see Q0401) because the generated address for the
3319 default is not usually in the same virtual domain as the incoming
3320 address.
3321
3322
3323Q0435: My alias file contains fully qualified addresses as keys, and some
3324 wildcard domains in the form @foo.bar. Can Exim handle these?
3325
3326A0435: You can handle fully qualified addresses with this router:
3327
3328==> qualified_aliases:
3329 driver = redirect
3330 data = ${lookup{$local_part@$domain}lsearch{/etc/aliases}}
3331
3332 (Add any other options you need for the \%redirect%\ router.) Place this
3333 router either before or after the default aliases router that looks up
3334 the local part only. (Or, if you have no unqualified aliases, replace
3335 the default router.)
3336
3337 To handle wildcards in the form @foo.bar you will need yet another
3338 router. (Wildcards of the form *@foo.bar can be handled by an lsearch*@
3339 lookup.) Something like this:
3340
3341==> wildcard_aliases:
3342 driver = redirect
3343 data = ${lookup{@$domain}lsearch{/etc/aliases}}
3344
3345 Place this after the routers that handle the more specific aliases.
3346
3347
3348
33495. FILTERING
3350
3351Q0501: My filter isn't working. How can I test it?
3352
3353A0501: Use the \-bf-\ option (\-bF-\ for a system filter) to test the basic operation
3354 of your filter. You can request debugging information for filtering only
3355 by adding \"-d-all+filter"\ to the command.
3356
3357
3358Q0502: What I really need is the ability to obtain the result of a pipe
3359 command so that I can filter externally and redirect internally. Is
3360 this possible?
3361
3362A0502: The result of a pipe command is not available to a filter, because Exim
3363 does not run any actual deliveries while filtering. It just sets up
3364 deliveries at this time. They all actually happen later. If you want to
3365 run pipes and examine their results, you need to set up a single
3366 delivery to a delivery agent such as \^procmail^\ which provides this kind
3367 of facility.
3368
3369 An possible alternative is to use the \"${run"\ expansion item to run an
3370 external command while filtering. In this case, you can make use of some
3371 of the results of the command.
3372
3373
3374Q0503: I received a message with a ::Subject:: line that contained a non-printing
3375 character (a carriage return). This messed up my filter file. Is there a
3376 way to get round it?
3377
3378A0503: Instead of \"$h_subject:"\ use \"${escape:$h_subject:}"\
3379
3380
3381Q0504: I want to search for \"$"\ in the subject line, but I can't seem to get
3382 the syntax.
3383
3384A0504: Try one of these:
3385
3386==> if $h_subject: contains \$ then ...
3387 if $h_subject: contains "\\$" then ...
3388
3389
3390Q0505: My problem is that Exim replaces \$local_part$\ with an empty string in the
3391 system filtering. What's wrong or what did I miss?
3392
3393A0505: A message may have many recipients. The system filter is run just once
3394 at the start of a delivery attempt. Consequently, it does not make sense
3395 to set \$local_part$\. Which recipient should it be set to? However, you
3396 can access all the recipients from a system filter via the variable
3397 called \$recipients$\.
3398
3399
3400Q0506: Using \$recipients$\ in a system filter gives me another problem: how can
3401 I do a string lookup if \$recipients$\ is a list of addresses?
3402
3403A0506: Check out the section of the filter specification called \*Testing a list of
3404 addresses*\. If that doesn't help, you may have to resort to calling an
3405 embedded Perl interpreter - but that is expensive.
3406
3407
3408Q0507: What are the main differences between using an Exim filter and using
3409 \^procmail^\?
3410
3411A0507: Exim filters and \^procmail^\ provide different facilities. Exim filters run
3412 at routing time, before any deliveries are done. A filter is like a
3413 ``\(.forward)\ file with conditions''. One of the benefits is de-duplication.
3414 Another is that if you forward, you are forwarding the original message.
3415
3416 However, this does mean that pipes etc. are not run at filtering time,
3417 nor can you change the headers, because the message may have other
3418 recipients and Exim keeps only a single set of headers.
3419
3420 \^procmail^\ runs at delivery time. This is for one recipient only, and so
3421 it can change headers, run pipes and check the results, etc. However, if
3422 it wants to forward, it has to create a new message containing a copy
3423 of the original message.
3424
3425 It's your choice as to which of these you use. You can of course use
3426 both.
3427
3428
3429Q0508: How can I allow the use of relative paths in users' filter files when
3430 the directories concerned are not available from the password data?
3431
3432A0508: You need to be running Exim 4.11 or later. You can then specify a value
3433 for \$home$\ by setting the router_home_directory option on the
3434 \%redirect%\ router.
3435
3436 For earlier releases, there is no way to specify the value of \$home$\
3437 for a \%redirect%\ router; it either comes from the password data as a
3438 result of \check_local_user\, or is unset.
3439
3440
3441Q0509: How can I set up a filter file to detect and block virus attachments?
3442
3443A0509: Exim's filter facilities aren't powerful enough to do much more than
3444 very crude testing. Most people that want virus checking are nowadays
3445 using one of the separate scanning programs such as \^exiscan^\ (see
3446 \?http://duncanthrax.net/exiscan/?\). There is some further information
3447 about scanning with Exim via \?http://www.timj.co.uk/linux/exim.php?\.
3448
3449
3450Q0510: Is it possible to write code for scanning messages in Python?
3451
3452A0510: \^elspy^\ is a layer of glue code that enables you to write Python code
3453 to scan email messages at SMTP time. \^elspy^\ also includes a small
3454 Python library with common mail-scanning tools, including an interface
3455 to SpamAssassin and a simple but effective virus detector. You can
3456 optain \^elspy^\ from \?http://elspy.sourceforge.net/?\.
3457
3458
3459Q0511: Whenever my system filter uses a \mail\ command to send a message, I get
3460 the error \*User 0 set for address_reply transport is on the never_users
3461 list*\. What does this mean?
3462
3463A0511: The system filter runs as \/root/\ in Exim 4, unless you set
3464 \system_filter_user\ to specify otherwise. When you set up a delivery
3465 direct from a system filter (an autoreply is a special kind of
3466 ``delivery'') the transport runs as the same user, unless it has a
3467 \user\ setting of its own. Normally, deliveries are not allowed to run
3468 as \/root/\ as a security precaution; this is implemented by the
8e26e4bf 3469 \never_users\ option (see Q0039).
495ae4b0
PH
3470
3471 The easiest solution is to add this to your configuration:
3472
3473==> system_filter_user = exim
3474
3475 The system filter then runs as \/exim/\ instead of \/root/\.
3476 Alternatively, you can arrange for autoreplies from the system filter to
3477 use a special transport of their own, and set the \user\ option on that
3478 transport.
3479
3480
3481Q0512: I'm trying to reference the ::Envelope-To:: header in my filter, but
3482 \$h_envelope-to:$\ is always empty.
3483
3484A0512: ::Envelope-To:: is added at delivery time, by the transport. Therefore,
3485 the header doesn't exist at filter time. In a user filter, the values
3486 you probably want are in \$original_local_part$\ and
3487 \$original_domain$\. In a system filter, the complete list of all
3488 envelope recipients is in \$recipients$\.
3489
3490
3491Q0513: I want my system filter to freeze all mails greater than 500K in size,
3492 but to exclude those to a specific domain. However, I don't seem to be
3493 able to use \$domain$\ in a system filter.
3494
3495A0513: You cannot do this in a system filter, because a single message may have
3496 multiple recipients, some in the special domain, and some not. That is
3497 also the reason why \$domain$\ is not set in a system filter.
3498
3499 If you want to take actions on a per-recipient basis, you have to do it
3500 in a router. However, freezing is not appropriate, because freezing
3501 stops all deliveries. You could, however, delay delivery to all but the
3502 special domains by using something like this:
3503
3504==> delay_if_too_big:
3505 driver = redirect
3506 domains = !the.special.domain
3507 condition = ${if >{$message_size}{500K}{yes}{no}}
3508 allow_defer
3509 data = :defer: message too big.
3510
3511 However, there isn't an easy way of ``releasing'' such messages at
3512 present.
3513
3514
3515Q0514: When I try to send to two addresses I get an error in the filter
3516 file \*malformed address: , e@fgh.com may not follow a@bcd.com*\. What
3517 is going on?
3518
3519A0514: Have you got
3520
3521==> deliver "a@bcd.com, e@fgh.com"
3522
3523 in your filter? If so, that is your problem. You should have
3524
3525==> deliver a@bcd.com
3526 deliver e@fgh.com
3527
3528 Each \deliver\ command expects just one address.
3529
3530
3531
35326. DELIVERY
3533
3534Q0601: What does the error \*Neither the xxx router nor the yyy transport set
3535 a uid for local delivery of...*\ mean?
3536
3537A0601: Whenever Exim does a local delivery, it runs a process under a specific
3538 user and group id (uid and gid). For deliveries into mailboxes, and to
3539 pipes and files set up by forwarding, it normally picks up the uid/gid
3540 of the receiving user. However, if an address is directed to a pipe or a
3541 file by some other means, such an entry in the system alias file of the
3542 form
3543
3544==> majordomo: |/local/mail/majordomo ...
3545
3546 then Exim has to be told what uid/gid to use for the delivery. This can
3547 be done either on the routerr that handles the address, or on the
3548 transport that actually does the delivery. If a pipe is going to run a
3549 setuid program, then it doesn't matter what uid Exim starts it out with,
3550 and so the most straightforward thing is to put
3551
3552==> user = exim
3553
3554 on either the router or the transport. A setting on the transport
3555 overrides a setting on the router, so if the same transport is being
3556 used with several routers, you should set the user on it only if you
3557 want the same uid to be used in all cases.
3558
3559 In the default configuration, the transports used for file and pipe
3560 deliveries are the ones called \address_file\ and \address_pipe\. You
3561 can specify different transports by setting, for example,
3562
3563==> pipe_transport = special_pipe_transport
3564
3565 on the \%system_aliases%\ router. Then you can set up \%special_pipe_transport%\
3566
3567==> special_pipe_transport:
3568 driver = pipe
3569 user = ????
3570
3571 which will be used only for pipe deliveries from that one router.
3572 What you put for the ???? is up to you, and depends on the particular
3573 circumstances.
3574
3575
3576Q0602: Exim keeps crashing with segmentation errors (signal 11 or 139) during
3577 delivery. This seems to happen when it is about to contact a remote
3578 host or when a delivery is deferred.
3579
3580A0602: This could be a problem with Exim's databases. Try running a delivery
3581 with debugging turned on. If the last line of the debug output is
3582 something like this:
3583
3584==> locked /var/spool/exim/db/retry.lockfile
3585
3586 the crash is happening inside the DBM library. Check that your DBM
3587 library is correctly installed. In particular, if you have installed a
3588 second DBM library onto a system that already had one, check that its
3589 version of \(ndbm.h)\ is being seen first. For example, if the new
3590 version is in \(/usr/local/include)\, check that there isn't another
3591 version in \(/usr/include)\. If you are using Berkeley db, you can set
3592
3593==> USE_DB=yes
3594
3595 in your \(Local/Makefile)\ to avoid using \(ndbm.h)\ altogether. This is
3596 particularly relevant for version 2 (or later) of Berkeley db, because
3597 no \(ndbm.h)\ file is distributed with it. Another thing you can try is
3598 to run
3599
3600==> exim_dumpdb /var/spool/exim retry
3601
3602 to see if it also crashes, or build the \^test_dbfn^\ tool and fiddle
3603 around with it. If both fail, it is most almost certainly a problem with
3604 your DBM library. You could try to update it, or force Exim to use
3605 another library. See the file \(doc/dbm.discuss.txt)\ for hints about
3606 this.
3607
3608
3609Q0603: How can mails that are being routed through routers that do not set
3610 \check_local_user\ be delivered under the uid of the recipient?
3611
3612A0603: Q0601 contains background information on this. If you are using, say, an
3613 alias file to direct messages to specific mailboxes, you can use
3614 the \user\ option on either the router or the transport to set the uid.
3615 What you put in the setting depends on how the required uid is to be
3616 found. It could be looked up in a file or computed somehow from the
3617 local part, for example.
3618
3619
3620Q0604: I want to use MMDF-style mailboxes. How can I get Exim to append the
3621 ctrl-A characters that separate indvidual emails?
3622
3623A0604: Set the \message_suffix\ option in the \%appendfile%\ transport. In fact,
3624 for MMDF mailboxes you need a prefix as well as a suffix to get it
3625 working right, so your transport should contain these settings:
3626
3627==> message_prefix = "\1\1\1\1\n"
3628 message_suffix = "\1\1\1\1\n"
3629
3630 Also, you need to change the \check_string\ and \escape_string\ settings so
3631 that the escaping happens for lines in the message that happen to begin
3632 with the MMDF prefix or suffix string, rather than ``From'' (the default):
3633
3634==> check_string = "\1\1\1\1\n"
3635 escape_string = "\1\1\1\1 \n"
3636
3637 Adding a space to the line is sufficient to prevent it being taken as a
3638 separator.
3639
3640
3641Q0605: If a user's mailbox is over quota, is there a way for me to set it up so
3642 that the mail bounces to the sender and is not stored in the mail queue?
3643
3644A0605: In the retry section of the configuration, put
3645
3646==> *@your.dom.ain quota
3647
3648 That is, provide no retry timings for over quota errors. They will then
3649 bounce immediately. Alternatively, you can set up retries for a short
3650 time only, or use something like this:
3651
3652==> *@your.dom.ain quota_7d
3653 *@your.dom.ain quota F,2h,15m; F,3d,1h
3654
3655 which bounces immediately if the user's mailbox hasn't been read for 7
3656 days, but otherwise tries for up to 3 days after the first quota
3657 failure.
3658
3659
3660Q0606: I'm using tmail to do local deliveries, but when I turned on the
3661 \use_crlf\ option on the \%pipe%\ transport (tmail prefers \"@\r@\n"\
3662 terminations) message bodies started to vanish.
3663
3664A0606: You need to unset the \mesage_prefix\ option, or change it so that its
3665 default \"@\n"\ terminator becomes \"@\r@\n"\. For example, the
3666 transport could be:
3667
3668==> local_delivery_mbx:
f0884f39
PH
3669 driver = pipe
3670 command = /usr/local/bin/tmail $local_part
3671 user = exim
3672 current_directory = /
495ae4b0
PH
3673 use_crlf
3674 message_prefix =
3675
3676 The reason for this is as follows: tmail uses the line terminator on
3677 the first line it sees to determine whether lines are terminated by
3678 \"@\r@\n"\ or \"@\n"\. If the latter, it moans to stderr and changes subsequent
3679 \"@\n"\ terminators to \"@\r@\n"\. The default setting of the \message_prefix\
3680 option is \"From ...@\n"\, and this is unaffected by the \use_crlf\ option.
3681 If you don't change this, tmail sees the first line terminated by
3682 \"@\n"\ and prepends \"@\r"\ to the \"@\n"\ terminator on all subsequent
3683 lines. However, if \use_crlf\ is set, Exim makes all other lines
3684 \"@\r@\n"\ terminated, leading to doubled \"@\r@\r@\n"\ lines and
3685 corrupt mbx mailboxes.
3686
3687
3688Q0607: When I activate ``return receipt'' for example in Netscape Mailbox
3689 sending options, then I get an error message from Exim... something
3690 like \*not supported*\. Can I activate delivery confirmations?
3691
3692A0607: Exim does not support any kind of delivery notification.
3693
3694 (1) You can configure it to recognize headers such as
3695 \Return-receipt-to:\ if you wish.
3696
3697 (2) Some people want MSN (message status notification). Such services
3698 are implemented in MUAs, and don't impact on the MTA at all.
3699
3700 (3) I investigated the RFCs which describe the DSN (delivery status
3701 notification) system. However, I was unable to specify any sensible way
3702 of actually doing anything with the data. There were comments on the
3703 mailing list at the time; many people, including me, conclude that DSN
3704 is in practice unworkable. The killer problem is with forwarding and
3705 aliasing. Do you propagate the DSN data with the generated addresses?
3706 Do you send back a ``reached end of the DSN world'' or ``expanded'' message?
3707 Do you do this differently for different kinds of aliasing/forwarding?
3708 For a user who has a \(.forward)\ file with a single address in, this
3709 might seem easy - just propagate the data. But what if there are several
3710 forwardings? If you propagate the DSN data, the sender may get back
3711 several DSN messages - and should the sender really know about the
3712 detail of the receiver's forwarding arrangements? There isn't really
3713 any way to distinguish between a \(.forward)\ file that is forwarding
3714 and one that is a mini mailing list. And so on, and so on. There are so
3715 many questions that don't have obvious answers.
3716
3717
3718Q0608: What does the message \*retry time not reached [for any host]*\ on the log
3719 mean? Why won't Exim try to deliver the message?
3720
3721A0608: That is not an error. It means exactly what it says. A previous attempt
3722 to deliver to that address failed with a temporary error, and Exim
3723 computed the earliest time at which to try again. This can apply to
3724 local as well as to remote deliveries. For remote deliveries, each host
3725 (if there are several) has its own retry time.
3726
3727 If you are running on a dial-up host, the rest of this answer probably
3728 does not apply to you. Go and read Q1404 instead. If your host is
3729 permanently online, read on...
3730
3731 Some MTAs have a retrying schedule for each message. Exim does not work
3732 like this. Retry timing is normally host-based for remote deliveries and
3733 address-based for local deliveries. (There are some exceptions for certain
3734 kinds of remote failure - see \*Errors in outgoing SMTP*\ in the manual.)
3735
3736 If a new message arrives for a failing address and the retry time has
3737 not yet arrived, Exim will log \*retry time not reached*\ and leave the
3738 message on the queue, without attempting delivery. Similarly, if a queue
3739 runner notices the message before the time to retry has arrived, it
3740 writes the same log entry. When the retry time has past, Exim attempts
3741 delivery at the next queue run. If you want to know when that will be,
3742 run the exinext utility on the address, for example:
3743
3744==> exinext user@some.domain
3745
3746 You can suppress these messages on the log by including \"-retry_defer"\
3747 in the setting of \log_selector\. You can force a delivery attempt on a
3748 specific message (overriding the retry time) by means of the -M option:
3749
3750==> exim -M 10hCET-0000Bf-00
3751
3752 If you want to do this for the entire queue, use the \-qf-\ option.
3753
3754
3755Q0609: Exim seems to be sending the same message twice, according to the log,
3756 although there is a difference in capitalization of the local part of
3757 the address.
3758
3759A0609: That is correct. The RFCs are explicit in stating that capitalization
3760 matters for local parts. For remote domains, Exim is not entitled to
3761 assume case independence of local parts. I know, it is utterly silly,
3762 and it causes a lot of grief, but that's what the rules say. Here is a
3763 quote from RFC 2821:
3764
3765 ... a command verb, an argument value other than a mailbox local-part,
3766 and free form text MAY be encoded in upper case, lower case, or any
3767 mixture of upper and lower case with no impact on its meaning. This
3768 is NOT true of a mailbox local-part. The local-part of a mailbox
3769 MUST BE treated as case sensitive. Therefore, SMTP implementations
3770 MUST take care to preserve the case of mailbox local-parts. Mailbox
3771 domains are not case sensitive. In particular, for some hosts the
3772 user "smith" is different from the user "Smith". However, exploiting
3773 the case sensitivity of mailbox local-parts impedes interoperability
3774 and is discouraged.
3775
3776
3777Q0610: How can I force the next retry time for a host to be now?
3778
3779A0610: You can change the retry time with the \^exim_fixdb^\ utility, but its
3780 interface is very clumsy. If you have a message for the host on the
3781 queue, the simplest thing to do is to force a delivery with the \-M-\
3782 command line option. If delivery succeeds, the retry data will get
3783 cleared. If the host is past the cutoff time, so that messages are
3784 bouncing immediately without trying a delivery, you can use \-odq-\ to
3785 put a message on the queue without a delivery attempt, and then use
3786 \-M-\ on it.
3787
3788
3789Q0611: I set up \"|/bin/grep Subject|/usr/bin/smbclient -M <netbiosname>"\ as an
3790 alias but it doesn't work.
3791
3792A0611: That is a shell command line. Exim does not run pipe commands under a
3793 shell by default (for added security - and it saves a process). You
3794 need something like
3795
3796==> "|/bin/sh -c '/bin/grep Subject|/usr/bin/smbclient -M <netbiosname>'"
3797
3798
3799Q0612: Why does the \%pipe%\ transport add a line starting with \">From"\ to
3800 messages?
3801
3802A0612: Actually, it adds a line starting with \"From"\ followed by a space.
3803 This is commonly referred to as the \"From_"\ line, to emphasize the
3804 fact that \"From"\ is followed by a space and not a colon. This is a
3805 pseudo-header line that contains the envelope sender address and the
3806 time of delivery. It originated as a separator line in Berkeley format
3807 mailboxes, but is also used in other contexts. (And yes, it is often
3808 confused with the ::From:: header line, and this causes a lot of grief.
3809 The use of \"From_"\ was one of the really bad email design decisions.)
3810
3811 Exim's \%pipe%\ transport adds this pseudo-header line by default
3812 because \(/usr/ucb/vacation)\ needs it, and that is one of the the most
3813 common uses of piping. The \^procmail^\ local delivery agent also makes
3814 use of the \"From_"\ line. If you do not want it, change the setting of
3815 \message_prefix\ on the \%pipe%\ transport. For example, to remove the
3816 line altogether, use
3817
3818==> message_prefix =
3819
3820 If you are not piping to \(/usr/ucb/vacation)\ or \^procmail^\, it is
3821 likely that you do not need a \"From_"\ line, and indeed it may cause
3822 problems if it is present.
3823
3824 One user reported that this line gave trouble when a pipe was used to
3825 send messages to Courier's \^deliverquota^\ program. The line was
3826 retained with the message, and caused problems for MS Exchange 2000 when
3827 retrieving messages with its built-in POP collector. Specifically, it
3828 caused Exchange to not be able to recognise message attachments.
3829
3830
3831Q0613: I have set \fallback_hosts\ on my \%smtp%\ transport, but after the error
3832 \*sem@chat.ru cannot be resolved at this time*\ Exim isn't using them.
3833
3834A0613: \fallback_hosts\ works only if an attempt at delivery to the original
3835 host(s) fails. In this case, Exim couldn't even resolve the domain
3836 \(chat.ru)\ to discover what the original hosts were, so it never got as far
3837 as the transport. However, see Q0315 for a possible solution.
3838
3839
3840Q0614: After the holidays my ISP has always hundreds of e-mails waiting for me.
3841 These are forced down Exim's throat in one go. Exim spawns a lot of
3842 kids, but is there some limit to the number of processes it creates?
3843
3844A0614: Unless you have changed \smtp_accept_queue_per_connection\ it should
3845 spawn only that many processes per connection (default 10). Your ISP
3846 may be making many connections, of course. That is limited by
3847 \smtp_accept_max\.
3848
3849
3850Q0615: When a message in the queue got to 12h old, Exim wrote \*retry timeout
3851 exceeded*\ and removed all messages in the queue to this host - even
3852 recent messages. How I can avoid this behaviour? I only want to remove
3853 messages that have exceeded the maximum retry time.
3854
3855A0615: Exim's retrying is host-based rather than message-based. The philosophy
3856 is that if a host has been down for a very long time, there is no point
3857 in keeping messages hanging around. However, you might like to check
3858 out \delay_after_cutoff\ in the \%smtp%\ transport. It doesn't do what you
3859 want, but it might help.
3860
3861
3862Q0616: Can Exim add a ::Content-Length:: header to messages it delivers?
3863
3864A0616: You could include something like
3865
3866==> headers_remove = "content-length"
3867 headers_add = "Content-Length: $message_body_size"
3868
3869 to the \%appendfile%\ transport. However, the use of ::Content-Length:: can
3870 cause several problems, and is not recommended unless you really know
3871 what you are doing. There is a discussion of the problems in
3872 \?http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/content-length.html?\.
3873
3874
3875Q0617: Exim seems to be trying to deliver a message every 10 minutes, though
3876 the retry rules specify longer times after a while, because it is
3877 writing a log entry every time, like this:
3878
3879==> 1999-08-26 14:51:19 11IVsE-000MuP-00 == example@example.com T=smtp defer
3880 (-34): some host address lookups failed and retry time not reached for
3881 other hosts or connection limit reached
3882
3883A0617: It is looking at the message every 10 minutes, but it isn't actually
3884 trying to deliver. It's looking up \(example.com)\ in the DNS and finding
3885 this information:
3886
3887==> example.com. MX 10 example-com.isp.example.com.
3888 example.com. MX 0 mail.example.com.
3889 mail.example.com. A 202.77.183.45
3890 A lookup for example-com.isp.example.com. yielded NXDOMAIN
3891
3892 The last line means that there is no address (A) record in the DNS for
3893 \(example-com.isp.example.com)\. That accounts for \*some host address
3894 lookups failed*\, but the retry time for \(mail.example.com)\ hasn't been
3895 reached, which accounts for \*retry time not reached for other hosts*\.
3896
3897
3898Q0618: I am trying to set exim up to have a automatic failover if it sees that
3899 the system that it is sending all mail to is down.
3900
3901A0618: Add to the \%remote_smtp%\ transport the following:
3902
3903==> fallback_hosts = failover.server.name(s)
3904
3905 If there are several names, they must be separated by colons.
3906
3907
3908Q0619: I can't get Exim to deliver over NFS. I get the error \*fcntl() failed:
3909 No locks available*\, though the lock daemon is running on the NFS server
3910 and other hosts are able to access it.
3911
3912A0619: Check that you have \(lockd)\ running on the NFS client. This is not
3913 always running by default on some systems (Red Hat is believed to be one
3914 such system).
3915
3916
3917Q0620: Why does Exim bounce messages without even attempting delivery, giving
3918 the error \*retry time not reached for any host after a long failure
3919 period*\?
3920
3921A0620: This message means that all hosts to which the message could be sent
3922 have been failing for so long that the end of the retry period
3923 (typically 4 or 5 days) has been reached. In this situation, Exim still
3924 computes a next time to retry, but any messages that arrive in the
3925 meantime are bounced straight away. You can alter this behaviour by
3926 unsetting the \delay_after_cutoff\ option on the smtp transport. Then Exim
3927 will try most messages for those hosts once before giving up.
3928
3929
3930Q0621: My \(.forward)\ file is \"|/usr/bin/procmail -f-"\ and mail gets delivered,
3931 but there was a bounce to the sender, sending him the output of procmail.
3932 How can I prevent this?
3933
3934A0621: Exim's default configuration is set up like this:
3935
3936==> address_pipe:
3937 driver = pipe
3938 return_output
3939
3940 The \return_output\ option requests that any output that the pipe
3941 produces be returned to the sender. That is the safest default. If you
3942 don't want this, you can either remove the option altogether, or change
3943 it to \return_fail_output\, to return output only if the command fails.
3944 Note that this will affect all pipes that users run, not just your
3945 procmail one. It might be better to arrange for procmail not to produce
3946 any output when it succeeds.
3947
3948
3949Q0622: Can I write an ordinary file when I run a perl script as a transport
3950 filter for the \%remote_smtp%\ and \%address_pipe%\ transports?
3951
3952A0622: Yes, provided the file is writeable by the uid under which the transport
3953 runs (the Exim user in the case of the remote transport). However, if two
3954 messages are being delivered at once, their data will get mixed up in
3955 the file unless you implement your own locking scheme. If all you want
3956 to do is to take a copy of the message, another approach that avoids
3957 the locking problem is to use a system filter to set up an ``unseen''
3958 delivery to a file. If you only want the message's headers, you can
3959 set \message_filter_file_transport\ to point to a special \%appendfile%\
3960 transport that has \headers_only\ set.
3961
3962
3963Q0623: My \(/var/spool/mail)\ has grown drastically. Is there any possibility of
3964 using two directories?
3965
3966A0623: You can use an expansion string to split mailboxes between two
3967 directories. For example,
3968
3969==> file = /var/spool/mail${nhash_2:$local_part}/$local_part
3970
3971 which does a hash on the local part, producing either 0 or 1, thereby
3972 using \(mail0) or \(mail1)\. But remember, the MUAs that read these mailboxes
3973 also have to know where they are.
3974
3975
3976Q0624: Sendmail has a program called \^smrsh^\ that restricts what binaries
3977 can be run from sendmail aliases. Is there something like this in Exim ?
3978
3979A0624: Check out the \allow_commands\ option in the \%pipe%\ transport.
3980
3981
3982Q0625: I wish to have large emails go out one at a time.
3983
3984A0625: One possibility is to set up a router that defers all large messages,
3985 except in queue runs. Since queue runners deliver just one
3986 message at a time, if you limited the number of simultaneous queue
3987 runners to 1, you would get the effect you wanted. A suitable router
3988 might be
3989
3990==> defer_if_large_unless_queue_run:
3991 driver = redirect
3992 condition = ${if or{{queue_running}{<{$message_size}{200K}}}{no}{yes}}
3993 allow_defer
3994 data = :defer: too large for immediate delivery
3995 no_verify
3996
3997 Of course, this would always delay any large message until the next
3998 queue runner, but if you run them fairly regularly, this shouldn't be a
3999 huge problem, and may even be desirable. Note the use of \no_verify\ to
4000 ensure that this router is not used when Exim is verifying addresses.
4001
4002
4003Q0626: Exim can route local parts independent of their case, but the Cyrus LMTP
4004 daemon requires the correct case. How can I fix this?
4005
4006A0626: You need to rewrite the local part to the correct case before running
4007 the router that routes to Cyrus. For example, if you require all lower
4008 case, and your router is called \local_user\, put this router in front
4009 of it:
4010
4011==> lowercase_local:
4012 driver = redirect
4013 redirect_router = local_user
4014 domains = +local_domains
4015 data = ${lc:$local_part}@$domain
4016
4017 The setting of \redirect_router\ causes processing of the rewritten
4018 address to start at the next router, instead of the first router. See
8e26e4bf
PH
4019 also Q0630 and Q0414, and see C045 for a more complete Cyrus
4020 configuration.
495ae4b0
PH
4021
4022
4023Q0627: Is there a command I can send to Exim to retry all queued messages
4024 regardless of their retry schedule?
4025
4026A0627: The \-qff-\ option starts a queue runner that forces a delivery attempt
4027 for all messages, including frozen ones. If you use \-qf-\, frozen
4028 messages are skipped.
4029
4030
4031Q0628: I have the default retry rule, which I thought meant that Exim should
4032 keep trying for four days, but it seems to be bouncing some messages
4033 immediately.
4034
4035A0628: See Q0615 and Q0620.
4036
4037
4038Q0629: I'm having trouble with quotas and Courier, because Exim is not handling
4039 maildirsize files.
4040
8e26e4bf
PH
4041A0629: You must be using an old version of Exim; it has supported maildirsize
4042 files since release 4.30.
495ae4b0
PH
4043
4044
4045Q0630: How can I configure Exim to deliver to a Cyrus message store?
4046
4047A0630: (1) The reference manual contains an example that uses pipe delivery.
4048
4049 (2) Here is a transport that uses LMTP delivery, assuming that
4050 \$local_part$\ contains the username:
4051
4052==> cyrus_inbox:
4053 driver =lmtp
4054 user = cyrus
4055 socket = /var/cyrus/socket/lmtp
4056
4057 (3) This is a transport that delivers direct to a non-inbox mailbox:
4058
4059==> cyrus_mailbox:
4060 driver = pipe
4061 user = $local_part
4062 message_prefix =
4063 message_suffix =
4064 log_fail_output
4065 return_output
4066 command = "/usr/cyrus/bin/deliver -a $local_part \
4067 -m <mailbox-name> $local_part"
4068
4069 This delivers to the Cyrus mailbox \"user.$local_part.<mailbox-name>"\.
4070 Using \"user = $local_part"\ and \"-a $local_part"\ makes it work
4071 without needing an explicit `p' ACL set for `anyone' on the mailbox.
4072
4073
4074Q0631: I would like to choose a retry rule based on on the sender rather than
4075 the recipient address. Is this possible?
4076
8e26e4bf
PH
4077A0631: Yes. In release 4.43 and later releases, you can do this directly by
4078 adding a third item to a retry rule of the form "senders=<address
4079 list>". The retry timings themselves then become the fourth item. For
4080 example:
4081
4082==> * * senders=: F,1h,30m
4083
4084 would match all bounce messages. If the address list contains white
4085 space, it must be enclosed in quotes. For example:
4086
4087==> a.domain timeout senders="x@b.dom : y@c.dom" G,8h,10m,1.5
4088
4089 If you are using an earlier release of Exim, you can still achieve the
4090 effect, but in a more complicated way. The address part of a retry rule
4091 is matched as a single-item address list. Such lists are always
4092 expanded, so you can use something like this:
495ae4b0
PH
4093
4094==> "${if eq{$sender_address}{xxx}{*@*}{no@no}}" quota F,1h,10m; ...
4095
4096 If the sender address is ``xxx'', the pattern expands to ``*@*'', which
4097 matches all recipient addresses; if you want to, you can make this a
4098 more restrictive pattern. If the sender address is not ``xxx'', the
4099 pattern expands to ``no@no'', which is assumed to be a recipient address
4100 that can never match, so the retry rule is skipped.
4101
4102
4103Q0632: What does the error \*User 1 set for local_mbx_delivery transport is on
4104 the never_users list*\ mean?
4105
4106A0632: You have configured the \%local_mbx_delivery%\ to run as the user whose
4107 id (uid) is 1. However, this user is on the list defined by the
4108 \never_users\ runtime option, or the \\FIXED_NEVER_USERS\\ compile-time
4109 option. These are ``safety catch'' lists; Exim refuses to deliver to any
4110 user that is on them. The most common use of \never_users\ is to avoid
4111 doing any deliveries as \/root/\, but it can contain other uids.
4112
4113
4114Q0633: Why is \$domain$\ not set in the \%smtp%\ transport?
4115
4116A0633: The \%smtp%\ transport can handle several recipient addresses at once.
4117 This happens by default if the host lists for the addresses are
4118 identical. A single copy of the message is sent, using multiple \\RCPT\\
4119 commands to transmit multiple envelope recipients. The \$domain$\
4120 variable is set in the \%smtp%\ transport only if all the recipient
4121 addresses have the same domain. You must have a case where several
4122 addresses with different domains resolve to the same set of hosts.
4123
4124 If you want to restrict the transport so that it handles only a single
4125 domain at once (but still possibly with more than one recipient), set
4126
4127==> multi_domain = false
4128
4129 If you want to restrict the transport so that it handles only a single
4130 address at once, set
4131
4132==> max_rcpt = 1
4133
4134
4135Q0634: How can I stop a local transport from trying to access the user's home
4136 directory, even when the delivery is to a file that is elsewhere?
4137
4138A0634: See answer (2) for Q0423.
4139
4140
4141Q0635: The log message \*error ignored*\ appears after some delivery failures.
4142 What does it mean?
4143
4144A0635: This message is written when Exim fails to deliver a bounce message whose
4145 age is greater than \ignore_bounce_errors_after\. It indicates that the
4146 failing bounce message has been discarded.
4147
4148 The same message is written after failed deliveries when a filter file
4149 uses the \noerror\ feature when setting up a delivery, or if a router
4150 has the setting
4151
4152==> errors_to = <>
4153
4154 Both of these specify that delivery failures are to be discarded.
4155
4156
4157
41587. POLICY CONTROLS
4159
4160Q0701: How do I block unwanted messages from outside my host?
4161
4162A0701: Exim uses Access Control Lists (ACLs) for controlling incoming mail from
4163 other hosts. A whole chapter in the reference manual is devoted to
4164 describing how they work. A wide variety of conditions can be imposed on
4165 incoming messages.
4166
4167 The default Exim run time configuration contains an example of an ACL
4168 which blocks all relaying, and messages whose senders cannot be
4169 verified. This example is heavily commented and worth studying.
4170
4171
4172Q0702: I don't want to block spam entirely; how can I inspect each message
4173 before deciding whether or not to deliver it?
4174
4175A0702: Wherever possible, inspection and rejection is best done automatically
4176 in an ACL, that is, before the message is accepted. If you want to
4177 verify manually each message that is classified as spam by an automatic
4178 check, you can arrange for a system filter to freeze such messages after
4179 they have been accepted.
4180
4181 If, after inspection, you decide not to deliver the message, it is
4182 safest to discard it, using the \-Mrm-\ option. Use of the \-Mg-\ option
4183 to force a bounce carries the risk of ``collateral spam'' if the sender
8e26e4bf 4184 address is faked (as it usually is in spam).
495ae4b0
PH
4185
4186
4187Q0703: How can I test that my spam blocks are working?
4188
4189A0703: The \-bh-\ option allows you to run a testing SMTP session as if from a
4190 given IP address. For example,
4191
4192==> exim -bh 192.168.178.39
4193
4194 In addition to the normal SMTP replies, it outputs commentary about
4195 which tests have succeeded or failed. If you are not interested in the
4196 details, but just want to know if a particular sender at a particular IP
4197 address is able to mail to a particular recipient, you can use the
4198 \exim_checkaccess\ utility, which provides a ``packaged'' version of
4199 \-bh-\. You call it like this:
4200
4201==> exim_checkaccess 192.168.53.23 recip@my.domain -f sender@some.domain
4202
4203 If you don't give a sender, \"<>"\ is used (that it, it acts like a
4204 bounce message).
4205
4206
8e26e4bf
PH
4207Q0704: How can I test that Exim is correctly configured to use a DNS black list
4208 such as the Realtime Blackhole List (RBL)?
495ae4b0
PH
4209
4210A0704: The \-bh-\ option allows you to run a testing SMTP session as if from a
4211 given address. The \^exim_checkaccess^\ utility provides a more packaged
4212 version of this facility. You need to know a blocked IP address with
4213 which to test. Such a testing address is kindly provided by Russell
4214 Nelson:
4215
4216==> linux.crynwr.com [192.203.178.39]
4217
4218 You can also send mail to \(nelson@linux.crynwr.com)\ from the server
4219 whose RBL block you are testing. The robot that receives that email
4220 will attempt to send a piece of test email in reply. If your RBL block
4221 didn't work, you get a message to that effect. Regardless of whether the
4222 RBL block succeeds or not, it emails you the results of the SMTP
4223 conversation from a host that is not on the RBL, so you can see how your
4224 server looks from the view of someone on the RBL.
4225
4226
4227Q0705: How can I use tcpwrappers in conjunction with Exim?
4228
4229A0705: Exim's own control facilities can do all that tcpwrappers can do.
4230 However, if you are already using tcpwrappers for other things it might
4231 be convenient to include Exim controls in the same place.
4232
4233 First of all, ensure that Exim is built to call the tcpwrappers library,
4234 by including \\USE_TCPWRAPPERS=yes\\ in \(Local/Makefile)\. You also need to
4235 ensure that the header file \(tcpd.h)\ is available at compile time, and the
4236 \(libwrap.a)\ library is available at link time, typically by including it in
4237 \\EXTRALIBS\\. You may need to copy these two files from the tcpwrappers
4238 build directory to, for example, \(/usr/local/include)\ and \(/usr/local/lib)\,
4239 respectively. Then you could reference them by
4240
4241==> CFLAGS=-I/usr/local/include
4242 EXTRALIBS=-L/usr/local/lib -lwrap
4243
4244 in \(Local/Makefile)\. There are two ways to make use of the functionality,
4245 depending on how you have tcpwrappers set up. If you have it set up to
4246 use only one file, you ought to have something like:
4247
4248==> /etc/hosts.allow:
4249
4250==> exim : <client_list> : <allow_or_deny>
4251
4252 For example:
4253
4254==> exim : LOCAL 192.168.0. .friendly.domain special.host : ALLOW
4255 exim : ALL : DENY
4256
4257 This allows connections from local hosts (chiefly //localhost//), from
4258 the subnet 192.168.0.0/24, from all hosts in \(*.friendly.domain)\, and
4259 from a specific host called \(special.host)\. All other connections are
4260 denied. If you have tcpwrappers set up to use two files, use the
4261 following:
4262
4263==> /etc/hosts.allow:
4264
4265==> exim : <client_list>
4266
4267==> /etc/hosts.deny:
4268
4269==> exim : <client_list>
4270
4271 Read the \^hosts_access^\ man page for more ways of specifying clients,
4272 including ports, etc., and on logging connections.
4273
4274
4275Q0706: How can I get POP-auth-before-relay (aka POP-before-SMTP) support in
4276 Exim?
4277
8e26e4bf
PH
4278A0706: A cleaner way of authentication is to use the SMTP AUTH facility, which
4279 does not require a prior use of POP. However, it is possible to do what
4280 you have asked for:
4281
4282 Exim 4 supports the ``whoson'' (\?http://whoson.sourceforge.net?\)
495ae4b0
PH
4283 facility for doing this. If you set this up, you can do the check in an
4284 Exim ACL by a statement like this:
4285
4286==> require condition = \
4287 ${lookup whoson {$sender_host_address}{yes}{no}}
4288
4289 Otherwise you need to arrange for a list of permitted IP addresses to be
4290 maintained in a file or database, and use this in a \hosts\ condition in
4291 an ACL statement. An Exim user has published this recipe:
4292
4293 \#\#\#\#\?http://www.zeiss.cx/memo/computer/linux/email/exim-s-a-p.html?\
4294
4295 Another Exim user submitted the following idea:
4296
4297 Use a script to grab authenticated IP addresses from the log files of
4298 the POP3 and IMAP4 daemons. These are used to create files in the
4299 directory tree \(/var/db/popb4smtp)\. The existence of a file represents a
4300 valid ``popped recently token'' for the IP address used as the filename.
4301
4302 Another script periodically removes stale files from the tree (after two
4303 hours). There's a small race condition here; it's possible for a file
4304 to be deleted just after it has been updated by the script that watches
4305 the logs. For low-volume servers, the odds of hitting this window are
4306 low.
4307
4308 A POPB4SMTP_CLIENT macro in the Exim configure file provides a reusable
4309 ``has this sender popped recently?'' query:
4310
4311==> POPB4SMTP_SUBDIR = /var/db/popb4smtp/${substr_-1_1:$sender_host_address}
4312 POPB4SMTP_CLIENT = ${if exists {POPB4SMTP_SUBDIR/$sender_host_address} \
4313 {$sender_host_address} {0} }
4314
4315 Now you can use it just about anywhere, including in your ACLs. Simple
4316 examples include:
4317
4318==> hostlist relay_hosts = 127.0.0.1/32 : ... : POPB4SMTP_CLIENT
4319 host_lookup = !127.0.0.1/32 : ... : !POPB4SMTP_CLIENT
4320 rfc1413_hosts = !127.0.0.1/32 : ... : !POPB4SMTP_CLIENT
4321
4322 The two scripts (and a FreeBSD startup script for them) are available
4323 for download at:
4324
4325 \#\#\#\#\?http://people.FreeBSD.org/~sheldonh/popb4smtp-nodb.tar.gz?\
4326
4327
4328Q0707: I have one or two cases where my host correctly rejects messages, but
4329 the remote host is quite persistent, and keeps trying over and over.
4330
4331A0707: It is an unfortunate fact that a number of SMTP clients, in violation of
4332 the SMTP RFC, do not treat a permanent error code that is given after
4333 the DATA portion of the transaction as a permanent error. Consequently
4334 they keep resending the message, and the worst offenders do so at very
4335 short intervals.
4336
4337 The only way to stop such behaviour is to blacklist the IP address, or
4338 the envelope sender, or both, in such a way that future messages get
4339 rejected at RCPT time instead of at DATA time. You could also complain
4340 to the remote host's administrators.
4341
4342
4343Q0708: How can I run customized verification checks on incoming addresses?
4344
4345A0708: There are a number of possibilities:
4346
4347 (1) If you can implement your checks in Perl, you can use Exim's
4348 facility for running an embedded Perl interpreter. For example, if you
4349 want to run special checks on local addresses, you could use ACL
4350 an statement like this:
4351
4352==> require domains = my.local.domain
4353 condition = ${perl{verify}{$local_part}}
4354
4355 The result of the Perl function should be ``yes'' or ``no''.
4356
4357 (2) You could also run an external program in a similar way, by a
4358 statement such as:
4359
4360==> require domains = my.local.domain
4361 condition = ${run{/my/verifier $local_part}}
4362
4363 This requires the use of another process, so could prove more expensive
4364 than Perl.
4365
4366 (3) If you are prepared to write C code, read the chapter in the manual
4367 entitled \*Adding a local scan function to Exim*\.
4368
4369
4370Q0709: Does Exim apply RBL checks to error messages, those with an envelope
4371 sender of \"<>"\ ?
4372
4373A0709: This depends on the ACL configuration. You can test for bounce messages
4374 (by looking for an empty sender address) and thereby exclude them from
4375 RBL checking if you want. This ACL statement does that:
4376
4377==> deny senders = ! :
4378 dnslist = blackholes.mail-abuse.org
4379
4380 However, some spam does come with an empty sender address, so this may
4381 not be a good idea.
4382
4383
4384Q0710: I want to reject certain sender-recipient combinations, with a specific
4385 message for each such combination.
4386
4387A0710: Set up a file (or database) containing the messages, keyed by the
4388 combination, for example:
4389
4390==> sender1@sdomain1=>recipient1@rdomain1: blocked because...
4391 sender2@sdomain2=>recipient2@rdomain2: blocked because...
4392
4393 If you have lots of recipients for the same sender, it might be easier
4394 to generate this file from more convenient data. In your ACL that is run
4395 for each RCPT command, you can then put:
4396
4397==> deny message = ${lookup{$sender_address=>$local_part@$domain}\
4398 lsearch{/that/file}}
4399 condition = ${lookup{$sender_address=>$local_part@$domain}\
c443ea82 4400 lsearch{/that/file}{yes}{no}}
495ae4b0
PH
4401
4402 The condition is tested first. If the lookup succeeds, the condition
4403 succeeds so access is denied. The message is then expanded, but the
4404 lookup won't be repeated, because Exim will have cached the previous
4405 result.
4406
4407 This approach blocks only incoming SMTP messages. If you need to do
4408 similar blocks for messages that do not arrive over SMTP, you have to
4409 set up a suitable \%redirect%\ router with a \:fail:\ setting.
4410
4411
4412Q0711: Will Exim allow me to create a file of regexs and match incoming
4413 external email to the list - and if a match is found file the offending
4414 message into a special location? Also is it possible to make Exim only
4415 filter parts of an incoming email - e.g. ignore large MIME attachments
4416 for example and only process text/plain?
4417
4418A0711: You can do some of this in a system filter. For example:
4419
4420==> if $message_body matches <...some complicated regex...> or
4421 $message_body matches <...some other regex...> or
4422 $header_from: matches <...regex...> or
4423 etc.
4424 then
4425 save /some/special/file
4426 endif
4427
4428 or instead of \"save"\ you could have \"deliver"\ (to some address) or
4429 \"pipe"\ (to some script).
4430
4431 There isn't any mechanism for ignoring attachments, but \$message_body$\
4432 only looks at the first n bytes of the body, where n defaults to 500 but
4433 can be changed.
4434
4435 A more expensive alternative would be to run a Perl subroutine using the
4436 embedded Perl mechanism. If you passed over the message id, the Perl
4437 code could read the message files on the spool and implement any
4438 algorithm it liked for deciding what should be done.
4439
4440
4441Q0712: I've hacked sendmail to make an ioctl call at the time of the SMTP RCPT
4442 command, to check if a user has exceeded their email quota. If they have
4443 I issue a temporary failure and a message - can I do this with Exim?
4444
4445A0712: If you can make this happen in Perl you can use the embedded Perl
4446 facility, and use it from a \condition\ condition in an ACL statement.
4447 You can also use the expansion facility to run an external program, but
4448 this uses more resources because it uses another process.
4449
4450
4451Q0713: I'd like to pass all messages through a virus-scanning system before
4452 delivery. Can Exim do this?
4453
4454A0713: One way of achieving this is to deliver all messages via a pipe to a
4455 checking program that resubmits them for delivery in some private way
4456 that can be checked (e.g. on a specific SMTP port, or IP address). One
4457 possibility is to use the `received protocol` field that can be set
4458 for locally submitted mail via the \-oMr-\ command line option. This
4459 router sends all messages that are not from the local host and whose
4460 received protocol is not \"scanned-ok"\ to the \%virus_scan%\ transport:
4461
4462==> vircheck:
4463 driver = accept
4464 transport = virus_scan
4465 condition = ${if or {{eq {$received_protocol}{scanned-ok}} \
4466 {eq {$sender_host_address}{127.0.0.1}}}\
4467 {0}{1}}
4468
8e26e4bf
PH
4469 One problem is that this approach, by default, scans the message for
4470 each recipient, not just once per message. However, you can set the
4471 \batch_max\ option on the transport to allow it to send a single copy
4472 for multiple recipients.
495ae4b0
PH
4473
4474 The virus_scan transport should be set up to pipe the message to a
4475 suitable checking program or script which runs as a trusted user. This
4476 can then re-submit the message to Exim, using \-oMr-\ to set the received
8e26e4bf
PH
4477 protocol to \"scanned-ok"\. It is probably easiest to use the Batch SMTP
4478 (BSMTP) facilities for passing the sender address and the recipient
4479 addresses to the checker and then back to Exim (using the \-bS-\
4480 command line option). \**Warning:**\ If you forget to make the
4481 resubmitting process run as a trusted user, the sender address will be
4482 incorrect and what is worse, the received protocol does not get set, and
4483 you are likely to generate a loop.
495ae4b0
PH
4484
4485
4486Q0714: Is there a way to configure Exim to reject mail to a certain local host?
4487
4488A0714: No, only to certain domains. To reject at SMTP time, you can put a line
4489 like this in your ACL:
4490
4491==> deny message = this domain is deliberately rejected
4492 domains = a.certain.domain
4493
4494 To fail addresses in messages that do not arrive over SMTP, you can set
4495 up a router like this:
4496
4497==> reject_a_certain_domain:
4498 driver = redirect
4499 domains = a.certain.domain
4500 allow_fail
4501 data = :fail: this domain is deliberately rejected
4502
4503
4504Q0715: How can I get Exim to remove attachments from messages?
4505
4506A0715: Exim does not contain facilities for modifying messages. You must use
4507 an external program if you want to do this. You can route messages that
4508 have a ::Content-type:: header line via a pipe to a command that does
4509 the job and then re-submits the message to Exim. Alternatively, you
4510 could use a transport filter to do this job.
4511
4512
4513Q0716: How can I arrange for each user to have a file listing the only sender
4514 addresses from which she will accept mail? I want to do this so my
4515 family members don't get any spam (or other inappropriate mail).
4516
4517A0716: Let's assume each user has a file called \(.acceptlist)\ in the home
4518 directory. You can put in your ACL a line like this:
4519
4520==> require senders = /home/$local_part/.acceptlist
4521
4522 This will reject RCPT commands when the sender is not in the accept
4523 list for the recipient. (Replace \(/home/$local_part)\ with whatever
4524 the correct path to your user's home directories is.)
4525
4526 One problem with this is that it will block bounce messages, which have
4527 empty senders. You can get round this, by changing the line to this:
4528
4529==> require senders = : /home/$local_part/.acceptlist
4530
4531 However, this will, of course, let in spam that has a null sender.
4532
4533
4534Q0717: When using Nessus on a system that runs Exim, a number of security
4535 issues are raised. Nessus complains that Exim answers to EXPN and/or
4536 VRFY; sometimes it even complains that Exim allows relaying.
4537
4538A0717: Exim supports EXPN and VRFY only if you permit it to do so in the ACLs
4539 defined by \acl_smtp_expn\ and \acl_smtp_vrfy\, respectively. Otherwise,
4540 its responses are
4541
4542==> 550 Administrative prohibition
4543 252 Administrative prohibition
4544
4545 Maybe the use of 252 is the ``problem''. It is recommended that this be
4546 done (by those that discuss these things) because there are stupid
4547 clients that attempt VRFY before sending a message.
4548
4549
4550Q0718: Could anyone points me to right rules to prevent sending/receiving
4551 messages to/for domains which have one MX to localhost or only have
4552 address 127.0.0.1 ?
4553
4554A0718: See Q0319.
4555
4556
4557Q0719: I would like to have a per-user limit for the maximum size of messages
4558 that can be sent.
4559
4560A0719: The simplest way to do this is to put something in a system filter along
4561 these lines:
4562
4563==> if $message_size is above
4564 "${lookup{$sender_address}lsearch{/some/file}{$value}{10M}}"
4565 then
4566 fail "Message is larger than $sender_address is allowed to send"
4567 endif
4568
4569 In practice, an additional check that the message has arrived from your
4570 local host or local network is probably wise because sender addresses
4571 are easily forged.
4572
4573
4574Q0720: I set \"accept hosts=192.168.122.96/32"\ in order to accept mail for
4575 relaying from my local LAN, but it doesn't work. What's wrong?
4576
4577A0720: 192.168.122.96/32 is not a network, it is a single host. Exim uses CIDR
4578 notation for specifying networks, where the number after the slash is
4579 the number of bits in the IP address that must match. Your setting says
4580 ``32 bits must match''. If you really mean to specify ``the next 32
4581 IP addresses'', you need 192.168.122.96/27.
4582
4583
4584Q0721: I have POP-before-SMTP set up on my Exim server, but some clients use
4585 Outlook Express, which sends queued messages before checking the
4586 mailbox, so it doesn't work.
4587
4588A0721: Implement SMTP authentication.
4589
4590
4591Q0722: I installed Amavis and it is working, but bounces are simply vanishing.
4592
4593A0722: Check that you haven't inadvertently set up the transport like this:
4594
4595==> amavis:
4596 driver = pipe
4597 command = "/usr/sbin/amavis -f ${sender_address} -d ${pipe_addresses}"
4598
4599 The last line should be:
4600
4601==> command = /usr/sbin/amavis -f <$sender_address> -d $pipe_addresses
4602
4603 The important thing is the <> around the sender address; removal of
4604 the unnecessary "" and {} is just tidying. See the amavis FAQ at
4605 \?http://www.amavis.org/amavis-faq.php3?\.
4606
4607
4608Q0723: I can't get Pine to work with PLAIN authentication; Exim keeps
4609 responding "535 Incorrect authentication data".
4610
4611A0723: You need to have this setting in your PLAIN authenticator:
4612
4613==> server_prompts = :
4614
8e26e4bf
PH
4615 This is missing in the examples in early Exim documentation, because it
4616 was not realized that PLAIN authentication could be requested by a
4617 client without sending the data with the request. If the data is not
4618 sent, an empty prompt is expected.
495ae4b0
PH
4619
4620
4621Q0724: I have used \":fail:"\ in some aliases; when one of these addresses is
4622 refused, I see the message on the log, but the response to the remote
4623 user is ``unknown user'' instead of the message from the alias file.
4624 How can I change this?
4625
4626A0724: Have you got a \message\ qualifier in the relevant ACL? Exim uses the
4627 message line in the ACL in preference to the message returned by the
4628 router. This is so you can restrict the amount of information that
4629 ``escapes'' from your site via SMTP if you want to. Remove the \message\
4630 line in the ACL entry that has \"verify = recipient"\ and your message
4631 will get through.
4632
4633 Alternatively, if you are running Exim 4.10 or later, you can use the
4634 \$acl_verify_message$\ variable in your message to include the message
4635 from the router. See also Q0725.
4636
4637
4638Q0725: I've set up some specific rejection messages for certain recipients, but
4639 when I test them, the SMTP message is always \*550 5.1.1
4640 <user@mydomain.com>... User unknown*\.
4641
4642A0725: That is not an Exim message (the ``5.1.1'' is a clue; Exim doesn't use
4643 those extended codes). You are probably being defeated by software that
4644 sees the 550 error code, and insists on putting in its own text. There
4645 is stupid software that does this. You can test Exim by using \-bh-\ or
4646 making a telnet call to the SMTP port. That way, there's no other
4647 software intervening.
4648
4649
4650Q0726: My SMTP authentication can be bypassed by sending an unknown user name
4651 and an empty password. What is wrong with this condition in a PLAIN
4652 authenticator?
4653
4654==> server_condition = ${if eq{$2} {${lookup mysql{SELECT password FROM \
4655 accounts WHERE username='${local_part:$1}'}}}{1}{0}}
4656
4657A0726: Your lookup item returns an empty string when the user does not exist.
4658 You should instead arrange for the lookup to fail:
4659
4660==> server_condition = ${if eq{$2} {${lookup mysql{SELECT password FROM \
4661 accounts WHERE username='${local_part:$1}'}{$value}fail}}{1}{0}}
4662
4663
4664Q0727: When a message has many recipients, how can I stop SpamAssassin from
4665 being called for each of them? I'm running it from a pipe transport.
4666
4667A0727: In the transport configuration, set \batch_max\ to a value greater than
4668 one.
4669
4670
4671Q0728: How do I use Exiscan, SA-Exim, SpamAssassin, Clam Antivirus, Sophos
4672 SAVI, or sophie with Exim?
4673
4674A0728: There's a mini-HOWTO about these available via
4675 \?http://www.timj.co.uk/linux/exim.php?\.
4676 See also sample configuration C047.
4677
4678
4679Q0729: How can I screen out addresses that are neither valid usernames or
4680 distribution lists on mail being forwarded to an internal Win2K server?
4681
4682A0729: A user suggested using a router like this to do the recipient
4683 verification:
4684
4685==> verify_user_router:
4686 driver = accept
4687 domains = win2kdomain.com
4688 local_parts=\
4689 ldap;user="cn=ldap-guest,cn=Users,dc=win2kdomain,dc=com"\
4690 pass=guest \
4691 ldap:://win2kpdc/dc=win2kdomain,dc=com?mailNickname?\
4692 sub?(&(mailNickname=$local_part)\
4693 (showInAddressBook=*)(sAMAccountName=*))
4694 verify_only
4695
4696 Set up ldap-guest as a normal domain user on the Win2K PDC.
4697
4698 Also, you need to set \no_verify\ on all the other routers that handle
4699 that domain.
4700
4701
4702Q0730: How can I use the same passwords for SMTP authentication as I use for
4703 Courier IMAP access to my server?
4704
4705A0730: You can access the Courier authdaemon from an Exim authenticator. You
4706 must arrange for the Exim user (often \/exim/\ but sometimes \/mail/\)
4707 to be able to access \(/var/run/courier/authdaemon/socket)\. The
4708 configuration is something of a hack, but it is reported to work. Here
4709 is a LOGIN authenticator:
4710
4711==> login:
4712 driver = plaintext
4713 public_name = LOGIN
4714 server_prompts = Username:: : Password::
4715 server_condition = \
4716 ${if eq {${readsocket{/var/run/courier/authdaemon/socket}\
4717 {AUTH 76\n${length_76:exim\nlogin\n$1\n$2\
4718 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\
4719 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\
4720 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n}}}}{FAIL\n} {no}{yes}}
4721 server_set_id = $1
4722
4723 Here is a PLAIN authenticator:
4724
4725==> plain:
4726 driver = plaintext
4727 public_name = PLAIN
4728 server_prompts = :
4729 server_condition = \
4730 ${if eq {${readsocket{/var/run/courier/authdaemon/socket}\
4731 {AUTH 76\n${length_76:exim\nlogin\n$2\n$3\
4732 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\
4733 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\
4734 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n}}}}{FAIL\n} {no}{yes}}
4735 server_set_id = $2
4736
4737
4738Q0731: Is there any defence I can use against spam sent through an open proxy?
4739
4740A0731: The \*ident*\ feature can be used in some cases. See the discussion in
4741 Q5023.
4742
4743
4744Q0732: I would like to either warn or deny when a host uses an underscore in
4745 the EHLO command.
4746
4747A0732: First, set
4748
4749==> helo_allow_chars = _
4750
4751 This tells Exim not to reject the EHLO or HELO command immediately. Once
4752 you have done that, you can test for the underscore in an ACL. For
4753 example, to log a warning for hosts in your LAN, and reject for other
4754 hosts, you could do something like this:
4755
4756==> deny message = Underscores are not valid in host names
4757 hosts = ! +lan_hosts
4758 condition = ${if match{$sender_helo_name}{_}{yes}{no}}
4759
4760==> warn log_message = Accepted underscore from [$sender_host_address]
4761 condition = ${if match{$sender_helo_name}{_}{yes}{no}}
4762
4763
4764Q0733: Is there any way to tell Exim not to lookup the IP address against any
4765 DNS black list if the connection is over IPv6?
4766
4767A0733: Use this condition in your ACL:
4768
4769==> condition = ${if match{${mask:$sender_host_address/0}}\
4770 {${mask:::0/0}}{no}{yes}}
4771
4772 From Exim 4.23 onwards, this can be simplified to
4773
4774==> condition = ${if isip6{$sender_host_address}{no}{yes}}
4775
4776
4777Q0734: How do MailScanner and Exiscan compare? What are the pros and cons?
4778
4779A0734: The big advantage of Exiscan is that it can reject messages at SMTP time
4780 before you have accepted responsibility for them, which means you don't
4781 have to deal with bouncing messages and thereby becoming a collateral
4782 spammer.
4783
4784 The big advantage of MailScanner is that it gives you much greater
4785 control over the load on your machines. You configure it according to
4786 the maximum processing capacity of your computer and it will not exceed
4787 that; in fact because it deals with messages in batches the cost of
4788 processing a message actually goes down slightly as the load increases,
4789 because the per-batch costs are shared by more messages.
4790
4791 With Exiscan, you have to rely on Exim's load protection mechanisms,
4792 which basically means that you have to stop accepting messages when your
4793 machine gets too loaded. This is bad if the machine happens to be an
4794 SMTP smarthost. You therefore need more overcapacity with Exiscan than
4795 with MailScanner.
4796
4797
4798Q0735: How can I block non-FQDNs in HELO/EHLOs?
4799
4800A0735: Many workstation clients send single-component names; take care that you
4801 do not block legitimate mail. With that proviso, you can do it using
4802 something like this in an ACL:
4803
f0884f39
PH
4804==> drop message = HELO doesn't look like a hostname
4805 log_message = Not a hostname
4806 condition = ${if match{$sender_helo_name} \
4807 {\N^[^.].*\.[^.]+$\N}{no}{yes}}
495ae4b0
PH
4808
4809 This means: Drop the HELO unless it contains a dot somewhere in the HELO
4810 string, but the string may not begin or end with a dot. Thus, the
4811 imposed minimum length is 3 characters.
4812
4813 The data for HELO/EHLO doesn't have to be a host name; it may
4814 legitimately be an IP address literal instead. The above test succeeds
4815 with an IPv4 address literal, but if you want also to accept IPv6
4816 address literals, you will have to modify the regular expression.
4817
4818
4819Q0736: Is it possible to tell exim to drop the connection after a server
4820 attempts to send a message to a number of unknown users?
4821
4822A0736: Yes. Use \$rcpt_fail_count$\ and the \^drop^\ ACL command, as in this
4823 example:
4824
4825==> drop message = Too many unknown users
4826 condition = ${if >{$rcpt_fail_count}{15}{yes}{no}}
4827
4828
4829Q0737: Is there some way to tell Exim not to consider 127.0.0.1 as a valid MX?
4830
4831A0737: See Q0319.
4832
4833
4834Q0738: How can I configure Exim to delay the SMTP connection if more than 10
4835 invalid recipients are received in one message?
4836
4837A0738: Put something like this in your RCPT ACL:
4838
4839==> deny message = Max $rcpt_fail_count failed recipients allowed
4840 condition = ${if >{$rcpt_fail_count}{10} {1}}
4841 ! verify = recipient
4842 delay = ${eval: $rcpt_fail_count * 10}s
4843 log_message = $rcpt_fail_count failed recipient attempts
4844
4845 This example increases the delay for each failed recipient.
4846
4847
4848Q0739: Does Exim support SPF?
4849
4850A0739: An Exim ACL can be used. See \?http://spf.pobox.com/downloads.html?\.
4851
4852
8e26e4bf
PH
4853Q0740: How can I change the MAIL FROM address that is used for callouts?
4854
4855A0740: It depends on which type of callout you are using.
4856
4857 (1) For envelope sender verification callouts, you cannot make any
4858 change. My view is that an envelope sender verification is testing
4859 whether Exim could send a bounce to that address. Therefore, it must
4860 use \"MAIL FROM:<>"\ because that is what it would do if it were
4861 sending a bounce message. If \"MAIL FROM:<>"\ is rejected, it means
4862 Exim could not send a bounce. Therefore the callout fails.
4863
4864 (2) For verifying addresses in the ::From::, ::Sender::, or ::Reply-to::
4865 header lines (the \"verify = header_sender"\ condition), it is
4866 possible to make a change, on the grounds that these addresses are
4867 not necessarily ones that must accept bounce messages. You can do
4868 this by adding a \"mailfrom"\ option, like this:
4869
4870==> require verify = header_sender/callout=mailfrom=abcd@x.y.z
4871
4872 (3) It is also possible to make a change for the postmaster verification
4873 option, also on the grounds that a postmaster address need not
4874 accept bounces if it is never used as an envelope sender. Instead of
4875 just \"postmaster"\, \"postmaster_mailfrom"\ is used, like this:
4876
4877==> require verify = sender/callout=postmaster_mailfrom=abcd@x.y.z
4878
4879 (4) For recipient verification, there are three possibilities. The
4880 default is to use \"MAIL FROM:<>"\. If the \use_postmaster\ option
4881 is given, for example:
4882
4883==> require verify = recipient/callout=use_postmaster
4884
4885 then the address for MAIL FROM is made up from the local part
4886 \"postmaster"\ and the contents of \$qualify_domain$\.
4887
4888 Alternatively, if the \use_sender\ option is given, the sender
4889 address of the incoming message is used. You should use this option
4890 only when you know that the receiving host makes use of the sender
4891 address when verifying. The reason is that the callout cache is much
4892 less effective in this case, causing many more callouts to be
4893 performed.
4894
4895 In all cases when you configure Exim to use a non-empty address in MAIL
4896 FROM during callout processing, you should think carefully about what
4897 might happen if this causes the called host to make its own callout back
4898 to your host. Make sure that callout loops cannot happen.
4899
4900
4901Q0741: How can I get Outlook Express to use TLS when authenticating?
4902
4903A0741: If you check \"auth required"\ in OE, it will authenticate as soon as
4904 it sees AUTH LOGIN, in preference to STARTTLS. The trick is to
4905 advertise things to OE in a certain order. The first EHLO should
4906 advertise STARTTLS but not AUTH, and only the second EHLO (after TLS
4907 starts) should advert AUTH. One way of achieving this is to put, in
4908 the main section of your Exim configuration:
4909
4910==> auth_advertise_hosts = ${if eq{$tls_cipher}{}{127.0.0.1}{*}}
4911
4912 This means that the only host to which AUTH is advertised is 127.0.0.1
4913 when the session is not encrypted (that is, before TLS has started). The
4914 idea here is that there's no need for encryption for anything coming via
4915 the loopback interface. For an encrypted session, however, AUTH is
4916 advertised to all hosts.
4917
4918 You can also block the AUTH command itself for unencrypted connections,
4919 by creating an ACL for \acl_smtp_auth\ that is something like this:
4920
4921==> accept encrypted = *
4922 accept hosts = 127.0.0.1
4923 deny message = TLS encryption required before AUTH
4924
4925
495ae4b0
PH
4926
49278. REWRITING ADDRESSES
4928
4929Q0801: How can I get Exim to strip the hostname from the sender's address?
4930
4931A0801: If you set up a rewriting rule in the following form:
4932
4933==> *@*.your.domain $1@your.domain
4934
4935 then Exim will rewrite all addresses in the envelope and the headers,
4936 removing anything between \"@"\ and \"your.domain"\. This applies to all
4937 messages that Exim processes. If you want to rewrite sender addresses
4938 only, the the rule should be
4939
4940==> *@*.your.domain $1@your.domain Ffrs
4941
4942 This applies the rule only to the envelope sender address and to the
4943 ::From::, ::Reply-to::, and ::Sender:: headers.
4944
4945
4946Q0802: I have Exim configured to remove the hostname portion of the domain on
4947 outgoing mail, and yet the hostname is present when the mail gets
4948 delivered.
4949
4950A0802: Check the DNS record for your domain. If the MX record points to a CNAME
4951 record instead of to an A record, some MTAs (not Exim) are liable to
4952 rewrite addresses, changing your domain name to its ``canonical'' form,
4953 as obtained from the CNAME record.
4954
4955
4956Q0803: I want to rewrite local addresses in mail that goes to the outside
4957 world, but not for messages that remain within the local intranet.
4958
4959A0803: You can use the \headers_rewrite\ option on a transport to do this.
4960 The rewriting will then apply to just those copies of a message that
4961 pass through the transport. The \return_path\ option can similarly be
4962 used to rewrite the sender address. There is no way of rewriting
4963 recipient addresses at transport time. However, as these are by
4964 definition remote addresses, you probably don't want to rewrite them.
4965
4966 You have to set up the configuration so that it uses different SMTP
4967 transports for internal and external mail. If you are using a single
4968 router in both cases, you could configure it like this:
4969
4970==> dnslookup:
4971 driver = dnslookup
4972 transport = ${if match{$domain}{\N\.my\.domain$\N}{int_smtp}{ext_smtp}}
4973
4974 This example uses the \%int_smtp%\ transport for domains ending in
4975 \(.my.domain)\, and \%ext_smtp%\ for everything else. The \%ext_smtp%\ transport
4976 could be something like this:
4977
4978==> ext_smtp:
4979 driver = smtp
4980 headers_rewrite = *@*.my.domain \
4981 ${lookup{$1}cdb{/etc/$2/mail.handles.cdb}{$value}fail}
4982 return_path = \
4983 ${if match{$return_path}{\N^([^@]+)@(.*)\.my\.domain$\N}\
4984 {\
4985 ${lookup{$1}cdb{/etc/$2/mail.handles.cdb}{$value}fail}\
4986 }\
4987 fail}
4988
4989 This example uses a separate file of local-to-external address
4990 translations for each domain. This is not the only possibility, of
4991 course. The \headers_rewrite\ and \return_path\ options apply the same
4992 rewriting to the header lines and the envelope sender address,
4993 respectively.
4994
4995
4996Q0804: I'm using this rewriting rule to change login names into ``friendly''
4997 names, but if mail comes in for an upper case login name, it doesn't
4998 get rewritten.
4999
f0884f39
PH
5000==> *@my.domain ${lookup{$1}dbm{/usr/lib/exim/longforms}\
5001 {$value}fail}@my.domain bcfrtFT
495ae4b0
PH
5002
5003 The longforms database has entries of the form:
5004
5005==> ano23: A.N.Other
5006
5007A0804: Replace \"$1"\ in your rule by \"${lc:$1}"\ to force the local part to lower
5008 case before it is used as a lookup key.
5009
5010
5011Q0805: Is it possible to completely fail a message if the rewrite rules fail?
5012
5013A0805: It depends on what you mean by ``fail a message'' and what addresses you
5014 are rewriting. If you are rewriting recipient addresses for your local
5015 domain, you can do:
5016
f0884f39 5017==> *@dom.ain ${lookup{$1}dbm{/wher/ever}{$value}{failaddr}} Ehq
495ae4b0
PH
5018
5019 and in your alias file put something like
5020
f0884f39 5021==> failaddr: :fail: Rewriting failed
495ae4b0
PH
5022
5023 This fails a single recipient - others are processed independently.
5024
5025
5026Q0806: I'm using \$domain$\ as the key for a lookup in a rewriting rule, but its
5027 contents are not being lowercased. Aren't domains supposed to be handled
5028 caselessly?
5029
5030A0806: The value of \$domain$\ is the actual domain that appears in the address.
5031 It could of course be lower cased, but I know that would cause some
5032 unhappiness, because some people have mixed-case domain names which look
5033 silly if the case is changed. Thus, one wants to preserve the case in
5034 rewrites such as
5035
5036==> *@*.TheRap.com something@$domain
5037
5038 because ``therap'' doesn't look like two words. I know it seems trivial,
5039 but it is important to some people - especially if by some unfortunate
5040 accident the lowercased word is something indecent.
5041
5042 You can trivally force lower casing by means of the \"${lc:"\ operator.
5043 Instead of \"$domain"\ write \"${lc:$domain}"\.
5044
5045
5046Q0807: I want to rewrite local sender addresses depending on the domain of the
5047 recipient.
5048
5049A0807: In general, this is not possible, because a message may have more than
5050 one recipient and Exim keeps just a single copy of each message. It may
5051 also deliver one copy of a message with several recipient addresses.
5052 You can do an incomplete job by using a regular expression match in a
5053 rewrite rule to test, for example, the contents of the ::To:: header. This
5054 would work except in cases of multiple recipients.
5055
5056
5057
50589. HEADERS
5059
5060Q0901: I would like add some custom headers to selected outgoing mail based on
5061 a specific domain and the subject line.
5062
5063A0901: To the remote_smtp transport, add something like
5064
5065==> headers_add = ${if and{\
5066 {eq{$domain}{spec.dom}}\
5067 {matches{$h_subject:}{whatever}}}\
5068 {Content-Type: text/html; charset="us-ascii"} fail }
5069
5070 This example shows a ::Content-Type:: header, but you can have anything you
5071 like, and multiple headers can be inserted by using \"@\n"\ to separate them.
5072
5073
5074Q0902: Is it possible to have Exim add a header to only certain local parts of
5075 outgoing mail?
5076
5077A0902: Only if you arrange for each such local part to receive its own private
5078 copy of the mail. See \max_rcpt\ in the SMTP transport. If you set this
5079 to 1, you could use conditions in an expansion string to add or not add
5080 a header.
5081
5082
5083Q0903: How can I remove some part of the ::Received:: header?
5084
5085A0903: Set \received_header_text\.
5086
5087
5088Q0904: How I can insert the PGP header line using Exim filters?
5089
5090A0904: You can't insert headers in a user filter. A system filter can do so,
5091 but the inserted lines then are included for all recipients.
5092
5093
5094Q0905: I know I can use a system filter to replace certain headers in messages,
5095 but how can I add text to existing headers? I want to add [SPAM] to
5096 the subject line of messages that appear to be spam.
5097
5098A0905: You can only do this in a round about way, using filter commands like
5099 this:
5100
5101==> headers add "New-Subject: SPAM: $h_subject:"
5102 headers remove subject
5103 neaders add "Subject: $h_new-subject:"
5104 headers remove new-subject
5105
5106 This trick works only in system filters, where the commands are obeyed
5107 in order, and affect the master list of headers that apply to the whole
5108 message. You cannot do this with the \headers_add\ and \headers_remove\
5109 options on drivers.
5110
5111
5112
511310. PERFORMANCE
5114
5115Q1001: I'm running a large mail server. Should I set \split_spool_directory\ to
5116 improve performance?
5117
5118A1001: Splitting the spool directory has most benefit if there are times when
5119 there are a large number of messages on the queue. If all mail is
5120 delivered very quickly, and the queue is always less than, say, a few
5121 hundred messages, there isn't any need to do this. With larger queues,
5122 there is a definite performance benefit to splitting the spool. It shows
8e26e4bf 5123 up earlier on some types of file system, compared with others.
495ae4b0
PH
5124
5125 Exim was not designed for handling large queues. If you are in an
5126 enviroment where lots of messages remain on the queue for long periods
5127 of time, consider implementing a back up host to which you pass these
5128 messages, so that the main host's queue remains short. You can use
5129 \fallback_hosts\ to do this, or a router that is conditional on
5130 \$message_age$\.
5131
5132
5133Q1002: How well does Exim scale?
5134
5135A1002: Although the author did not specifically set out to write a high-
5136 performance MTA, Exim does seem to be fairly efficient. The biggest
5137 server at the University of Cambridge (a large Sun box) goes over
5138 100,000 deliveries per day on busy days (it has over 20,000 users).
5139 There was a report of a mailing list exploder that sometimes handles
5140 over 100,000 deliveries a day on a big Linux box, the record being
5141 177,000 deliveries (791MB in total). Up to 13,000 deliveries an hour
5142 have been reported.
5143
5144 These are quotes from some Exim users:
5145
5146 "... Canada's largest internet provider, uses Exim on all of our mail
5147 machines, and we're absolutely delighted with it. It brought life back
5148 into one of our machines plagued with backlogs and high load averages.
5149 Here's just an example of how much email our largest mail server
5150 (quad SS1000) is seeing ... " [230,911 deliveries in a day: 4,475MB]
5151
5152 "... Exim has to ... do gethostbyname()s and RBL lookups on all of the
5153 incoming mail servers, and he runs from inetd (TCP Wrappers connected).
5154 All the same, it seems to me that he runs as fast as lightning on our
5155 SCO 5.0.4 box (1 Pentium 166) - far faster than MMDF which I (and many
5156 customers) had before."
5157
5158 "On a PII 400 with 128M of RAM running Linux 2.2.5, I have achieved
5159 36656 messages per hour (outgoing unique messages and recipients). For
5160 about a 5 minute period, I was able to achieve an average of 30 messages
5161 per second (that would be 108000 m/hour)! We are using: (options that
5162 make a difference):
5163
5164==> queue_only
5165 split_spool_directory
5166 queue_run_max = 1
5167 remote_max_parallel = 1
5168
5169 We have a cron job hat runs every five minutes that spawns 5 \"exim -q"\ if
5170 there are less that 120 exim processes currently running. We found
5171 that by manually controlling the concurrency of \"exim -q"\ processes
5172 contending for the spool for \%remote_smtp%\ delivery that we gained
5173 considerable performance - 10000 m/hour."
5174
5175
5176Q1003: We have a large password file. Can Exim use alternative lookups during
5177 delivery to speed things up?
5178
5179A1003: If you are using FreeBSD, this problem should not arise, because it
5180 automatically uses an indexed password file. In some other operating
5181 systems you can arrange for this to happen too. On Linux, for example,
5182 all you need to do is
5183
5184==> # cd /var/db
5185 # make
5186
5187 and put \"db"\ before \"files"\ in any \(/etc/nsswitch.conf)\ lines you want to
5188 use db for.
5189
5190 On systems that do not include support for indexed password files, you
5191 can build one yourself, and reference it from the Exim configuration.
5192 For example, for routing to local mailboxes you could use this:
5193
5194==> localuser:
5195 driver = accept
5196 condition = ${lookup{$local_part}cdb{/etc/passwd.cdb}{yes}{no}}
5197 transport = local_delivery
5198 user = ${extract{1}{:}{${lookup{$local_part}cdb{/etc/passwd.cdb}}}
5199
5200 This assumes a cdb version of the password file.
5201
5202
5203Q1004: I just wondered if it might be helpful to put the hints database on a
5204 RAM disk during regular operation. Did anybody try that yet?
5205
5206A1004: A user reported thus: ``I have found that this works great under Solaris.
5207 Make a RAM disk partition and keep everything in the \(db)\ directory on
5208 it. However, when I try the same thing on Linux, I don't see the same
5209 boost. I think that Linux's file buffer cache works about the same.
5210 Plus, this leave more room for processes to run.''
5211
5212 There have been other reports that Linux's delayed buffer write provides
5213 better overall performance in general.
5214
5215 Apparently there is support in the Solaris kernel for a delayed writing,
5216 as in Linux, but Sun's server policy is to have it disabled so that you
5217 don't lose so much if the server crashes. There is a program called
5218 \^fastfs^\ to enable and disable this support. You have to download and
5219 compile it yourself; find it by looking for \"fastfs.c"\ in a search
5220 engine. Solaris performance is reported to be much improved, but you
5221 should take care to understand the potential hazards. In particular,
5222 \^fsck^\ may be unable to ``fix'' disks automatically after a crash.
5223
5224
5225Q1005: A lot of incoming mail is pushing up my system load too much, and there
5226 are many Exim processes. How can I control this?
5227
5228A1005: Have you set any of the Exim configuration options that limit what it
5229 does under high load? For example, queue_only_load, deliver_queue_load_max?
5230 See the list in the section entitled \*Resource control*\ in the manual.
5231
5232 It sounds like a lot of simultaneous incoming mail pushes your system
5233 into uncontrolled overload. The multiple Exim processes are probably
5234 just multiple incoming messages. You can use the \^exiwhat^\ utility to
5235 confirm this.
5236
5237
5238
523911. MAJORDOMO
5240
5241Q1101: How do I set up Majordomo to work with Exim?
5242
5243A1101: Users have found several ways of setting up Exim for use with Majordomo.
5244 One way has been documented at
5245 \?http://www.averillpark.net/exim/majordomo.html?\.
5246
5247 Somewhere in the Majordomo docs or FAQ it mentions using batchmail or
5248 other additional programs to improve the performance of large lists.
5249 They are not needed with Exim, and their use can actually make things
5250 worse. However, it's a good idea to set \remote_max_parallel\ to a value
5251 greater than 1 in the Exim configuration.
5252
5253
5254Q1102: I have set \$mailer$\ in \(majordomo.cf)\, but it still isn't setting the
5255 sender correctly in the messages it sends.
5256
5257A1102: Make sure you have got the quoting correct in the \$mailer$\ setting. For
5258 example,
5259
5260==> $mailer = "$sendmail_command -oi -oee -f$sender\@lists.mydomain.de";
5261
5262 is not correct. It needs three backslashes, not one, and the $ at the
5263 start of \$sender$\ has to be escaped with a backslash.
5264
5265
5266Q1103: I'm trying to set up majordomo, but I'm getting a wrong mode error
5267 when I try to send it mail.
5268
5269A1103: Check the mode of \(/var/lib/majordomo/lists/lists.aliases)\ and compare it
5270 with the setting of the \modemask\ option in the Majordomo aliases
5271 router. This option specifies bits which must not be set for the alias
5272 file, and it defaults to 022.
5273
5274
5275Q1104: I'm getting return code 9 from \(/home/majordomo/majordomo-1.94.4/wrapper)\
5276 when it is passed a message from Exim.
5277
5278A1104: A problem like this turned out to be the Perl version that came with
5279 RedHat 5.2. Rebuilding Perl 5.005x solved it.
5280
5281
5282Q1105: Exim is complaining about an invalid command line when Majordomo tries
5283 to send it a message for delivery.
5284
5285A1105: Take a look at your \(majordomo.cf)\ file, It should have something that
5286 looks like
5287
5288==> $sendmail_command = "/usr/lib/sendmail";
5289
5290 and another line like
5291
5292==> $mailer = "$sendmail_command -oi -oee -f\$sender";
5293
5294 If you have modified \^resend^\ (one of the majordomo programs) to use
5295 \$sendmail_command$\ instead of \$mailer$\ you will be calling Exim with no
5296 command line arguments.
5297
5298
5299
530012. FETCHMAIL
5301
5302Q1201: When I run fetchmail, I get the error \*SMTP listener doesn't like
5303 recipient address xxx@localhost*\.
5304
5305A1201: Make sure that //localhost// is recognized as a domain that is to be
5306 delivered locally. If you are using the default Exim run time
5307 configuration, you'll see a line near the top like this:
5308
5309==> domainlist local_domains = @
5310
5311 Change it to
5312
5313==> domainlist local_domains = @ : localhost
5314
5315
5316Q1202: I'm currently using Exim with fetchmail and I'd like to use the RBL on
5317 Exim, but will it work? Do I need to configure fetchmail any particular
5318 way? As far as Exim knows, all mail is coming from 127.0.0.1. Will it
5319 check the source address against RBL? Or will it check the ::From:: header?
5320
5321A1202: It will check 127.0.0.1 (not very useful). The point of the RBL is to
5322 keep messages from black-listed hosts out of your machine. If you are
5323 using fetchmail, you have got the messages into your machine before you
5324 approach Exim. That kind of defeats the purpose of the RBL. The right
5325 way to do this would be for the host from which you fetch your mail to
5326 do the RBL checking and insert some kind of warning header for you to
5327 test, as Exim does if you run RBL checks in warning mode.
5328
5329
5330
533113. PERL
5332
5333Q1301: Exim built with Perl support exits with the error message \*./exim: can't
5334 load library 'libperl.so'*\.
5335
5336A1301: If you are using BSDI, see Q9401.
5337
5338
5339Q1302: Exim built with Perl support exits with several error messages of the
5340 form \*undefined reference to `PL_stack_sp'*\.
5341
5342A1302: This has been seen on FreeBSD systems that had two different versions of
5343 Perl installed, the older with an \^a.out^\ library and the newer with an
5344 ELF library. Ensure that the older package is removed.
5345
5346
5347
534814. DIAL-UP AND ISDN
5349
5350Q1401: When I'm not connected to the Internet, how can I arrange for mail to
5351 other hosts on my local network to be delivered, while at the
5352 same time mail to Internet hosts is queued without any delivery
5353 attempts?
5354
5355A1401: Use the \queue_domains\ option to control which domains are held
5356 on the queue for later delivery. For example,
5357
5358==> queue_domains = ! *.localnet
5359
5360 allows delivery to domains ending in \(.localnet)\, while queueing all the
5361 others.
5362
5363
5364Q1402: I have a dial-up machine, and I use the \queue_smtp_domains\ option so
5365 that remote mail only goes out when I do a queue run. However, any email
5366 I send with an address \(anything@aol.com)\ is returned within about 15
5367 minutes saying \*retry time exceeded*\, and all addresses are affected.
5368
5369A1402: You should be using \queue_domains\ rather than \queue_smtp_domains\.
5370 With the latter, Exim is trying to route the addresses, which involves a
5371 DNS lookup. This is presumably timing out, causing a retry time to be
5372 set for the domain, and somehow a valid lookup never happened before the
5373 maximum retry time (default of 4 days) passed. Hence the bounce. The
5374 fact that it is \(aol.com)\ is probably not relevant. You should probably
5375 also be using \-qq-\ to do your queue run rather than \-q-\.
5376
5377
5378Q1403: How should Exim be configured when it is acting as a temporary storage
5379 system for a domain on a dial-up host?
5380
5381A1403: Exim isn't really designed for this, but... The lowest-numbered MX
5382 record for the domain should be pointing to the dial-up host. A higher
5383 numbered MX record (lower priority) should point to the Exim server that
5384 is acting as a temporary storage system.
5385
5386 You should set a large retry time for the domain, so that Exim doesn't
5387 keep trying to deliver when the host is offline. When the host comes
5388 online, the waiting messages have to be kicked somehow. This can be done
5389 by calling Exim with the \-R-\ option, or via the SMTP ETRN command.
5390
5391 This works provided the number of messages is low. If you are handling
5392 lots of mail, keeping messages waiting for their host to connect and
5393 those that are having delivery problems to remote hosts all in the same
5394 queue doesn't work so well. It is better in this case to get Exim to
5395 deliver the mail for the dial-in hosts into some local files which then
5396 get transmitted by other software when the host connects. One tool for
5397 doing this can be found at \?http://cr.yp.to/serialmail.html?\.
5398
5399 For further discussion, see section entitled \*Intermittently connected
5400 hosts*\ in the manual, and also the section in the Exim book with the
5401 same name.
5402
5403
5404Q1404: I have \queue_domains\ or \queue_smtp_domains\ set, and use \-qf-\ to
5405 force delivery of waiting mail when I dial in. How can I arrange for any
5406 new messages that arrive while I'm connected to be delivered immediately?
5407
5408A1404: Instead of \queue_domains\ or \queue_smtp_domains\, use the \queue_only_file\
5409 option. This causes messages to be queued if a particular file exists.
5410 If you put the word ``smtp'' before the file name, the queueing applies
5411 only to domains that are delivered by SMTP, thus not affecting local
5412 deliveries:
5413
5414==> queue_only_file = smtp/etc/present/when/not/connected
5415
5416 Then, in the scripts which are run when you connect and disconnect,
5417 arrange to remove the file after connection, and create it just before
5418 disconnection.
5419
5420
5421Q1405: I have an ISDN connection and would like a way of running the queue
5422 automatically when it is up.
5423
5424A1405: The following shell commands test for the interface being up and then
5425 run the queue:
5426
5427==> ifconfig ppp0 | fgrep UP >/dev/null
5428 if [ $? -eq 0 ] ; then exim -q ; fi
5429
5430 You could put these commands into a script which runs them at regular
5431 intervals. You might want to use \-qq-\ instead of \-q-\.
5432
5433 With Linux, the script \(/etc/ppp/ip-up)\ is run after a ISDN connection
5434 or a more general PPP connection has been established. If you are using
5435 Linux, you could put the call to Exim in that script.
5436
5437
5438Q1406: When I dial up to collect mail from my ISP, only the first 10 messages
5439 get delivered immediately; the remainder just sit on the queue until a
5440 queue runner process finds them.
5441
5442A1406: See Q0049.
5443
5444
5445Q1407: RFC 1985 specifies that the SMTP command \"ETRN host.domain"\ causes all
5446 mail queued for that host, no matter what domain it's for, to be
5447 delivered. Why doesn't Exim support this?
5448
5449A1407: Exim does not keep queues of mail for specific destinations. It just
5450 keeps one pool of undelivered messages. What is more, once you start a
5451 delivery of a message, it tries to deliver to all the addresses in the
5452 message, not just the one you may be interested in. (Of course, this
5453 doesn't usually do any harm.)
5454
5455 The only way it could be done within Exim would be, for every message
5456 on the queue, to go through the motions of routing each undelivered
5457 address and see if that resulted in a delivery to the host of interest.
5458 This could be extremely expensive (e.g. 1,000 messages on the queue,
5459 only 1 for the given host).
5460
5461 The bottom line is that Exim just wasn't designed for this kind of
5462 operation, that is, holding messages for intermittently connected hosts.
5463 The queueing arrangements are designed for handling delivery problems
5464 that are not expected to be common.
5465
5466 A better way to do this is to implement the required queues separately.
5467 After all, keeping such mail on an active queue (where Exim will keep
5468 trying to deliver) is silly. If there is a lot of mail for these hosts,
5469 it also masks genuine delivery problems when you inspect the queue.
5470
5471 Large ISPs who provide this kind of functionality do not usually leave
5472 waiting mail on the MTA's queue. Instead, they get it delivered into
5473 per-host directories, one message per file, in one of the special
5474 formats (BSMTP, maildir, or mailstore) and when an ETRN arrives, it
5475 kicks off some completely different program that establishes an SMTP
5476 connection to the host and shovels the waiting mail down it. That seems
5477 to me to be a much neater way of doing this. It means you can easily add
5478 additional functionality such as archiving or throwing away uncollected
5479 mail.
5480
5481 One program that has this functionality is \^ssmtp^\, which can be
5482 found in \?ftp://metalab.unc.edu/pub/Linux/system/mail/mta/?\.
5483 Alternatively, sample configuration C037 demonstrates an elegant way of
5484 using Exim itself to deliver the saved messages when the client issues
5485 an ETRN.
5486
5487
5488Q1408: If email has been deferred to a member on a local mailing list
5489 (implemented through forward files), and one of our ETRN clients is on
5490 this mailing list, the \-R-\ won't flush the mailing list message for
5491 that client.
5492
5493A1408: That is because \-R-\ matches only original recipient addresses, not those
5494 produced as a result of expansion, because these are not (by default)
5495 preserved from delivery to delivery. You can get round this by setting
5496 \one_time\ on the forwarding router, but you are not allowed to have
5497 expansions to pipes or files on routers that have \one_time\ set.
5498 Therefore, you will have to have a separate router for mailing lists
5499 (with \one_time\ set) to the one used for normal forward files that might
5500 specify pipe or file deliveries. However, the problem will still be
5501 present for any user who sets up a \(.forward)\ file to redirect to any of
5502 the ETRN domains. See the last 3 paragraphs of Q1407 for a discussion of
5503 an alternative approach.
5504
5505
5506Q1409: I would like to have a separate queue per domain for hosts which dial
5507 in to collect their mail.
5508
5509A1409: Exim isn't really designed for this kind of operation. The only way to
5510 do this would be to cause it to send those messages to a differently
5511 configured version of Exim with its own spool area. This could be done
5512 via a pipe or SMTP to a private port. The main Exim, listening on port
5513 25, would then be configured to run an appropriate command to prod one
5514 of the others when it received ETRN, by means of the \smtp_etrn_command\
5515 option.
5516
5517 You could probably manage this with a single Exim binary and a number of
5518 different configuration files, passed to the special versions using the
5519 \-C-\ option. For this application they could all run as \^exim^\, since no
5520 root privilege would be needed.
5521
5522 An alternative approach id to get Exim to deliver mail for such hosts
5523 in batch SMTP format into some directory, and have the ETRN run
5524 something to pass such messages to the dialled-in host. See also Q1403.
5525
5526
5527
552815. UUCP
5529
5530Q1501: The MX records for some UUCP domains point to my local host. How do I
5531 get it to pass the messages on to UUCP?
5532
5533A1501: The simplest way is to create a file containing a list of domains, and
5534 the hosts to which their messages should be sent, like this:
5535
5536==> uucp1.domain.example: uucp1.host.example
5537 uucp2.domain.example: uucp2.host.example
5538 ....
5539
5540 Then you can use a router like this:
5541
5542==> uucp_router:
5543 driver = accept
5544 domains = lsearch;/etc/uucp/domains
5545 transport = uucp_transport
5546
5547 and a transport like this:
5548
5549==> uucp_transport:
5550 driver = pipe
5551 user = nobody
5552 command = /usr/local/bin/uux - -r $domain_data!rmail $local_part
5553 return_fail_output
5554
5555 The \$domain_data$\ variable retains the value that is looked up when
5556 the \domains\ option in the router is matched.
5557
5558
5559Q1502: How can I get Exim to handle ``bang path'' addresses?
5560
5561A1502: In general, you can't (Exim is an Internet mailer and recognizes only
5562 RFC 2822 domain-style addresses) but some restricted kinds of bang path
5563 can be dealt with by appropriate rewriting - but please note the warning
5564 below.
5565
5566 Exim treats a bang path address as an unqualified local part, and so
5567 will qualify it with your domain. A rule such as
5568
5569==> \N^([^!]+)!(.+)@your\.domain$\N $2@$1
5570
5571 turns \(a!b@your.domain)\ into \(b@a)\. You can also use a repeating rule to
5572 turn multi-component paths into the ``percent hack'' notation with a rule
5573 such as
5574
5575==> \N^([^!]+)!([^@%]+)(.+)$\N $2%$1$3 R
5576
5577 which turns \(a!b@c)\ into \(b%a@c)\ and \(a!b!c@d)\ first into \(b!c%a@d)\ and then,
5578 because of the R flag, into \(c%b%a@d)\. The R flag causes repetition up to
5579 10 times.
5580
5581 \**Warning:**\ If you install a general rewriting rule like the above, you are
5582 opening yourself up to the possibility of unwanted relaying. A host that
5583 is not permitted to relay through your system could send a message with
5584 an SMTP command line such as
5585
5586==> RCPT TO:<victim-host!victim-user@your.domain>
5587
5588 and this would be accepted because it is addressed to your domain.
5589 However, the rewriting then converts the address, and the message does
5590 in fact get relayed. One way round this, if all your bang path messages
5591 are passed to Exim via SMTP, is to use the \"S"\ rewriting flag. This
5592 applies a rewriting rule to incoming SMTP addresses as soon as they are
5593 received, before checking for qualification, relaying, etc. So a rule
5594 such as
5595
5596==> \N^([^!]+)!(.+)$\N $2@$1 S
5597
5598 rewrites simple two-component bang paths before the result is checked
5599 for relaying. However, this does not rewrite addresses in the headers of
5600 the message.
5601
5602
5603Q1503: We see something strange on our system in regards to mail coming in via
5604 rmail from a UUCP link. The sender is being set to mailmaster instead of
5605 the real sender, and a ::Sender:: header is being added to the message.
5606
5607A1503: If \(mailmaster)\ is the user that is running rmail, you need to include
5608 that user in the \trusted_users\ configuration option. Only trusted users
5609 are permitted to specify senders when mail is passed to Exim via the
5610 command line.
5611
5612
5613
561416. MODIFYING MESSAGE BODIES
5615
5616Q1601: How can I add a disclaimer or an advertisement to a message?
5617
5618A1601: There are a number of technical and potential legal problems that arise
5619 in connection with message modification. Some of them are listed below.
5620 Some comment on the legal position of email disclaimers in English law
5621 can be found at \?http://www.weblaw.co.uk/artemail.htm?\.
5622
5623 See also \?http://www.goldmark.org/jeff/stupid-disclaimers/?\. There is
5624 some discussion about the problems of actually adding disclaimers in
5625 \?http://www.goldmark.org/jeff/stupid-disclaimers/apply.html?\.
5626
5627 In many cases, email disclaimers will make your company look ridiculous,
5628 at the very least. At worst, they may interfere with the normal
5629 processing of mail.
5630
5631 If, despite these considerations, you still want to modify messages, you
5632 can do so using Exim, but not directly in Exim itself. It is not the job
5633 of an MTA to modify messages, something that requires understanding of
5634 their content and format.
5635
5636 Exim provides a hook called a ``transport filter'' that lets you pass
5637 any outgoing message through a program or script of your choice. It
5638 is the job of this script to make any changes to the message that you
5639 require. By this means, you have full control over what changes are
5640 made, and Exim does not need to know anything about message bodies.
5641 However, using a transport filter requires additional resources, and may
5642 slow down mail delivery.
5643
5644 You can use Exim's routers to arrange for those messages that you want
5645 to modify to be delivered via a transport filter. For example, suppose
5646 you want to do this for messages from addresses in your domain that are
5647 being delivered to a remote host. First you need to set up a special
5648 \%smtp%\ transport that uses a filter, like this:
5649
5650==> remote_smtp_filter:
5651 driver = smtp
5652 transport_filter = /your/filter/command
5653
5654 Then you need to modify the \%dnslookup%\ router to use this transport
5655 when the conditions are right:
5656
5657==> dnslookup:
5658 driver = dnslookup
5659 domains = ! +local_domains
5660 transport = ${if eq {$sender_address_domain}{your.domain}\
5661 {remote_smtp_filter}{remote_smtp}}
5662 ignore_target_hosts = 127.0.0.0/8
5663 no_more
5664
5665 This is the standard \%dnslookup%\ router, but with a modified setting of
5666 the \transport\ option. When the sender address is in your domain, it
5667 routes to the special transport instead of the standard one.
5668
5669 The entire message is passed to your filter command on its standard
5670 input. It must write the modified version to the standard output, taking
5671 care not to break the RFC 2822 syntax. The command is run as the Exim
5672 user.
5673
5674 There are a number of potential problems in doing this kind of
5675 modification in an MTA. Many people believe that to attempt is it wrong,
5676 because:
5677
5678 1. It breaks digital signatures, which are becoming legally binding
5679 in some countries. It may well also break encryption.
5680
5681 2. It is likely to break MIME encoding, that is, it is likely to wreck
5682 attachments, unless great care is taken. And what about the case of a
5683 message containing only binary MIME parts?
5684
5685 3. It is illegal under German and Dutch law to change the body of
5686 a mail message in transit. It might potentially be illegal in
5687 the UK under European law. This consideration applies to ISPs and
5688 other ``common carriers''. It would presumably not apply in a corporate
5689 environment where modification was done only to messages originating
5690 from the employees, before they left the company's network. It might
5691 also not apply if the senders have explicitly given their consent
5692 (e.g. agreed to have advertisements added to their incoming mail).
5693
5694 4. Since the delivered message body was produced by the MTA (not the
5695 originator, because it was modified), the MTA operator could
5696 potentially be sued for any content. This again applies to `common
5697 carrier' MTAs. It's interesting that adding a disclaimer of liability
5698 could be making you liable for the message, but this case seems
5699 more likely to involve adding advertisements than disclaimers. After
5700 all, no postal service in the world opens all the mail it carries to
5701 add disclaimers.
5702
5703 5. Some mail clients (old versions of MS outlook) crash if the message
5704 body of an incoming MIME message has been tampered with.
5705
5706 There are also potential problems that could arise if a scheme to add
5707 disclaimers goes wrong for some messages:
5708
5709 1. False negatives: `Ah, this guy usually says he does not represent
5710 their views, but in this message he doesn't have the disclaimer'.
5711
5712 2. False positives: `This official announcement does not represent our
5713 views, oh no'.
5714
5715 An alternative approach to the disclaimer problem would be to insist
5716 that all relevant messages have the disclaimer appended by the MUA. The
5717 MTA should refuse to accept any that do not. Again, however, the MTA
5718 must understand the format of messages in order to do this. Simply
5719 checking for appropriate wording at the end of the body is not good
5720 enough. It would probably be necessary to run a Perl script from within
5721 an Exim system filter, or write a \^^local_scan()^^\ function in order
5722 to adopt this approach.
5723
5724 Finally, it's a trivial matter to add customized headers of the sort:
5725
5726==> X-Disclaimer: This is a standard disclaimer that says that the views
5727 X-Disclaimer: contained within this message are somebody else's.
5728
5729 which is a much easier alternative to modifying message bodies.
5730
5731
5732Q1602: How can I remove attachments from messages?
5733
5734A1602: The answer to this is essentially the same as for Q1601.
5735
5736
5737
573817. ENCRYPTION (TLS/SSL)
5739
5740Q1701: I am trying to set up an Exim server that uses a self-signed certificate
5741 to enable my clients to use TLS. However, clients other than Exim
5742 refuse to accept this certificate. What's wrong?
5743
5744A1701: It seems that some clients require that the certificate presented by
5745 the server be a user (also called ``leaf'' or ``site'') certificate, and not
5746 a self-signed certificate. In this situation, the self-signed
5747 certificate must be installed on the client as a trusted root
5748 \*certification authority*\ (CA), and the certificate used by the server
5749 must be a user certificate signed with that self-signed certificate.
5750
5751 For information on creating self-signed CA certificates and using them
5752 to sign user certificates, see the \*General implementation overview*\
5753 chapter of the Open-source PKI book, available online at
5754 \?http://ospkibook.sourceforge.net/?\. Here is a quick overview. First,
5755 read this message:
5756
5757 \?http://www.FreeBSD.org/cgi/mid.cgi?id=3C3F3A93.C1ECF9B0%40mindspring.com?\
5758
5759 Then, follow the instructions found on these two (consecutive) pages:
5760
5761 \?http://ospkibook.sourceforge.net/docs/OSPKI-2.4.6/OSPKI/initialisation.htm?\
5762 \?http://ospkibook.sourceforge.net/docs/OSPKI-2.4.6/OSPKI/keygensign.htm?\
5763
5764 Two points on the PKI Book literature:
5765
5766 (1) It's assumed that it's okay to use a passphrase-protected key to
5767 encrypt the user/site/leaf certificate. If this isn't acceptable,
5768 you seem to be able to strip out the passphrase as follows:
5769
f0884f39
PH
5770==> openssl rsa -in user.key -our user.key.new
5771 mv user.key.new
495ae4b0
PH
5772
5773 This should be done immediately after \(user.key)\ is created.
5774
5775 (2) The \*sign.sh*\ script is available in the \*mod_ssl*\ distribution,
5776 available at \?http://www.modssl.org/source/?\.
5777
5778 Having followed the instructions, you end up with the following files:
5779
5780 (a) \(ca.crt)\
5781
5782 This file should be installed into the client software as a trusted
5783 root certification authority. In Windows XP, this can be done as follows:
5784
5785 \#\#Call the file \(ca_cert.cer)\
5786 [[br]]
5787 \#\#Double-click on the file
5788 [[br]]
5789 \#\#"Install Certificate";
5790 [[br]]
5791 \#\#"Next"
5792 [[br]]
5793 \#\#"Place all certificates in the following store"
5794 [[br]]
5795 \#\#"Browse..."
5796 [[br]]
5797 \#\#"Trusted Root Certification Authorities"
5798 [[br]]
5799 \#\#"OK"
5800 [[br]]
5801 \#\#"Next"
5802 [[br]]
5803 \#\#"Finish"
5804 [[br]]
5805 \#\#"Yes"
5806 [[br]]
5807 \#\#"OK"
5808
5809 (b) \(user.crt)\ and \(user.key)\
5810
5811 These files should be installed into the server software. In Exim, this
5812 can be done by adding these lines to the configuration file:
5813
5814==> tls_certificate = /usr/local/etc/exim/tls_cert
5815 tls_privatekey = /usr/local/etc/exim/tls_key
5816
5817 Then install \(user.crt)\ and \(user.key)\ under the names \(tls_cert)\
5818 and \(tls_key)\ in the appropriate directory.
5819
5820
5821Q1702: How can I arrange for Exim to advertise support for SMTP authentication
5822 only when the session is encrypted?
5823
5824A1702: Use this setting:
5825
5826==> auth_advertise_hosts = ${if eq{$tls_cipher}{}{}{*}}
5827
5828
5829Q1703: I have some legacy clients that don't use STARTTLS, but which expect to
5830 negotiate a TLS session automatically on connection to the ssmtp port
5831 (465). Can Exim handle this?
5832
8e26e4bf
PH
5833A1703: If you are using release 4.43 or later, you can set
5834
5835==> tls_on_connect_ports = 465
5836
5837 and then arrange for your daemon to listen on both port 25 and port 465
5838 by setting \daemon_smtp_ports\ or \local_interfaces\ or the \-X-\
5839 command line option. Or use \(inetd)\ to listen on port 465.
5840
5841 If you are using an earlier release of Exim, you need to run two
5842 Exim listeners, on different ports, one of which is started with the
5843 \-tls-on-connect-\ option (which makes all ports act this way). You can
5844 either use two daemons, or a single daemon, with the other listener
5845 using \^inetd^\. For example, here are commands to start two daemons:
495ae4b0
PH
5846
5847==> exim -bd -q15m
5848 exim -bd -oX '[0.0.0.0]::465' -tls-on-connect
5849
5850 The first is a ``normal'' daemon; the second listens on port 465 and
5851 expects to negotiate a TLS session at the start of each connection.
5852
5853
5854Q1704: When my Outlook Express 6.0 client sends a STARTTLS command to begin a
5855 TLS session, Exim doesn't seem to receive it.
5856
5857A1704: See Q0059.
5858
5859
5860Q1705: I have listed some hosts in \tls_try_verify_hosts\, but when they
5861 connect, no data appears in \$tls_peerdn$\.
5862
5863A1705: This means that the clients have not sent certificates when asked by
5864 the server to do so. If the clients are running Exim, check that
5865 \tls_certificate\ is correctly set in their \%smtp%\ transports. Note
5866 that this value is not automatically inherited from the global
5867 \tls_certificate\ option.
5868
5869
5870Q1706: I have listed some hosts in \tls_verify_hosts\ and provided them with
5871 certificates, but their connections are always rejected.
5872
5873A1706: Make sure that the server file containing the expected certificates
5874 (defined by \tls_verify_certificates\) is readable by the Exim user.
5875 See also the answer to Q1705.
5876
5877
5878Q1707: I am trying to use TLS with Evolution as a client, and keep seeing this
5879 error: \*SMTP protocol violation: synchronization error (next input
5880 sent too soon): rejected "\200F^A^C".*\ What does it mean?
5881
5882A1707: See Q0086 for a general explanation of the error. In this case, it
5883 probably means that Evolution is trying to negotiate a TLS session
5884 immediately it connects, without first using the STARTTLS command. This
8e26e4bf
PH
5885 was an older way of starting up TLS, before STARTTLS was defined. See
5886 Q1703 for how to deal with this.
495ae4b0
PH
5887
5888
5889Q1708: I trying to use TLS with Outlook as a client on a box that is running
5890 Norton Antivirus, but all my email is being rejected with \*Unsupported
5891 command*\ errors. Why?
5892
5893A1708: Norton Antivirus does not support TLS or AUTH. It puts a broken SMTP
5894 proxy between you and the Exim server. You need to turn off outbound
5895 scanning of email.
5896
5897
5898
589920. MILLENNIUM
5900
5901Q2000: Are there any Y2K issues with Exim?
5902
5903A2000: The author of Exim believes that it is Y2K-compliant, as long as the
5904 underlying operating system and C library are. Exim does not parse dates
5905 or times at all. Internally, it makes some use of binary timestamps in
5906 Unix format (number of seconds since 1-Jan-1970) and uses C library
5907 services to convert these to printing forms (e.g. for logging). The
5908 printing forms all use 4-digit years. Some people have tried various
5909 tests. No problems have been reported, but details of what tests have
5910 been done are not available.
5911
5912 Well, it's now November 2001, and no Y2K problems have been reported, so
5913 it looks like I was right. This entry is retained as historical
5914 nostalgia.
5915
5916
5917
591850. MISCELLANEOUS
5919
5920Q5001: How can I arrange to allow a limited set of users to perform a limited
5921 set of Exim administration functions? I don't want to put them all in
5922 the //exim// group.
5923
5924A5001: See \?http://www.chiark.greenend.org.uk/~ian/userv/?\. Using \^userv^\ you can
5925 arrange (for example) for certain users to be able to invoke \^mailq^\ or
5926 \^runq^\ or other preset commands as \^exim^\ (or any other user, as configured)
5927 with only \^userv^\ configuration. If you want to check the particular Exim
5928 options available you can easily do it with shell or Perl scripts and
5929 \^userv^\ configuration, and provided you know how to do argument
5930 ``unparsing'' properly in shell or Perl it will be secure.
5931
5932
5933Q5002: I want to ``tail'' the Exim log, but I have a number of other logs I also
5934 want to ``tail'', and the number of tailing windows is getting to be a
5935 nuisance.
5936
5937A5002: Look for a program called \^xtail^\ (despite its name, it's not an
5938 X-windows application). It allows you to do multiple tails, even of
5939 entire directories.
5940
5941 Alternately, get the GNU version of \^tail^\, from the GNU textutils
5942 package (\?ftp://ftp.gnu.org/gnu/textutils/?\). GNU tail lets you run
5943 \"tail -f\" on multiple files at the same time, although it doesn't work
5944 on entire directories like \^xtail^\ can. If you are running Linux, you
5945 probably already have a version of GNU \^tail^\ that can follow multiple
5946 files.
5947
5948
5949Q5003: How can I persuade Exim to accept ETRN commands without the leading
5950 # character?
5951
5952A5003: Set the option
5953
5954==> smtp_etrn_command = /usr/lib/sendmail -R $domain
5955
5956 This causes Exim to run that command, with \$domain$\ replaced by the
5957 argument of ETRN. The default action of Exim is to require the # sign
5958 in order to be RFC-compliant, and to run the equivalent of
5959
5960==> smtp_etrn_command = /usr/lib/sendmail -R ${substr_1:$domain}
5961
5962 which uses the argument without the leading # as the value for the \-R-\
5963 option. You aren't restricted to running Exim with the \-R-\ option, of
5964 course. You can specify any command you like, with any number of
5965 arguments. In particular, you can pass over the IP address of the caller
5966 via \$sender_host_address$\. However, if you make use of expansion strings
5967 in the arguments, each one must be entirely contained in a single
5968 argument. For example, if you want to remove the first character of the
5969 ETRN argument when it is @ or #, you could use
5970
5971==> smtp_etrn_command = "/usr/lib/sendmail -R \
5972 \"${if match {$domain}{^[@#]}{${substr_1:$domain}}{$domain}}\""
5973
5974 The internal quotes are necessary because of the white space inside the
5975 expansion string.
5976
5977
5978Q5004: I've recently noticed that emails I send with a ::Bcc:: line are being
5979 delivered to their final destination with the ::Bcc:: line still present.
5980
5981A5004: Exim removes ::Bcc:: lines only if you call it with the \-t-\ option (i.e.
5982 when it is acting partly as an MUA). It does not remove ::Bcc:: lines that
5983 are present in incoming SMTP mail or command-line mail that does not
5984 use \-t-\. Indeed, it should not remove them, because only the
5985 initiating software (i.e. the MUA) can tell what to do with ::Bcc::
5986 lines; any MTA software has to leave them alone. This is what RFC 2822
5987 has to say about ::Bcc::
5988
5989 \*The ::Bcc:: field (where the ``Bcc'' means ``Blind Carbon Copy'') contains
5990 addresses of recipients of the message whose addresses are not to be
5991 revealed to other recipients of the message. There are three ways in
5992 which the ::Bcc:: field is used. In the first case, when a message
5993 containing a ::Bcc:: field is prepared to be sent, the ::Bcc:: line is
5994 removed even though all of the recipients (including those specified
5995 in the ::Bcc:: field) are sent a copy of the message. In the second
5996 case, recipients specified in the ::To:: and ::Cc:: lines each are sent
5997 a copy of the message with the ::Bcc:: line removed as above, but the
5998 recipients on the ::Bcc:: line get a separate copy of the message
5999 containing a ::Bcc:: line. (When there are multiple recipient
6000 addresses in the ::Bcc:: field, some implementations actually send a
6001 separate copy of the message to each recipient with a ::Bcc::
6002 containing only the address of that particular recipient.) Finally,
6003 since a ::Bcc:: field may contain no addresses, a ::Bcc:: field can be
6004 sent without any addresses indicating to the recipients that blind
6005 copies were sent to someone. Which method to use with ::Bcc:: fields
6006 is implementation dependent, but refer to the ``Security
6007 Considerations'' section of this document for a discussion of each.*\
6008
6009
6010Q5005: I used \^gv^\ 3.5.8 (\^ghostview^\) to try printing \(spec.ps)\. After every
6011 printed page, the printer ejects a blank sheet. Is this something to do
6012 with using ``letter'' rather than A4 paper?
6013
6014A5005: This seems to be an effect of using \^ghostview^\. Although the PostScript
6015 is generated for A4 pages, the size of the page images is such that they
6016 should fit on a letter page (they are shorter than would normally be
6017 used on A4 paper). If the PostScript file is sent directly to a
6018 PostScript printer, there is no problem. An alternative is to get hold
6019 of the \^psutils^\ toolset, which is available from
6020 \?ftp://ftp.dcs.ed.ac.uk/pub/psutils/psutils.tar.gz?\.
6021 It contains utilities for extracting pages (which can be useful for
6022 double-sided printing) and for resizing pages. If you resize from A4 to
6023 letter the text shrinks a bit, but should then be printable via
6024 \^ghostview^\.
6025
6026
6027Q5006: Why aren't there any man pages for Exim? I don't always carry my printed
6028 documentation.
6029
8e26e4bf 6030A5006: A single man page that lists the command line options is provided in
495ae4b0
PH
6031 file \(doc/exim.8)\ in the Exim distribution. Several other forms of
6032 online documentation are available. As well as plain ASCII text, the
6033 there are two forms - Texinfo and HTML - which have a certain amount of
6034 built-in indexing for ease of finding your way around. There are no man
6035 pages apart from the command line one because the author of Exim hasn't
6036 the time (or desire :-) to maintain yet another documentation format.
6037 Besides, it is hard to know how to split the Exim manual up.
6038
6039
6040Q5007: When I send a message using the \-t-\ command line option, Exim sends only
6041 to the addresses within the message, not to those on the command line.
6042
6043A5007: There seems to be some confusion in the Sendmail community about the
6044 interpretation of recipient addresses on the command line if the \-t-\
6045 option is used. Some versions do one thing, and some another. Here is an
6046 except from one version of the Sendmail documentation for \-t-\:
6047
6048 \*Read message for recipients. ::To::, ::Cc::, and ::Bcc:: lines will
6049 be scanned for recipient addresses. The ::Bcc:: line will be
6050 deleted before transmission. Any addresses in the argument
6051 list will be suppressed, that is, they will not receive
6052 copies even if listed in the message header.*\
6053
6054 By default Exim follows this specification, and interprets addresses on
6055 the command line as addresses not to send to. You can set
6056
6057==> extract_addresses_remove_arguments = false
6058
6059 to change this behaviour so that command line addresses are added to the
6060 addresses that are taken from the header lines.
6061
6062
6063Q5008: If I set up a domain list to contain //*customer.com//, it matches
6064 //customer.com// and //abc.customer.com// as required, but it also matches
6065 //noncustomer.com//, which is wrong. How can I get round this?
6066
6067A5008: You have to specify two entries in the list:
6068
6069==> customer.com : *.customer.com
6070
6071 because * in a domain list matches any characters, including \"."\ and
6072 including a null sequence.
6073
6074
6075Q5009: I want to match all domains of the form //*.oyoy.org// but want a few
6076 exceptions. For instance I don't want //foo.oyoy.org// or //bar.oyoy.org// to be
6077 included. What is the best way to do this?
6078
6079A5009: Use negative items in the domain list, like this:
6080
6081==> domainlist local_domains = !foo.oyoy.org : !bar.oyoy.org : *.oyoy.org
6082
6083 If there are many exceptions, you can use a lookup instead of listing
6084 them all inline. If there are a number of exceptions that match a
6085 particular pattern, you could use a regular expression.
6086
6087
6088Q5010: I can't seem to find a pre-built version of Exim anywhere. The machine
6089 is a Sparc 5 running Solaris 2.6.
6090
6091A5010: The primary distribution is source-only. However, some people have built
6092 and distributed RPMs and debs for Linux systems, and ports for FreeBSD.
6093 I haven't heard of anyone doing this for Solaris. The main problem with
6094 binary distributions is that there are a number of build-time options,
6095 requiring the answers to questions like:
6096
6097 . Which DBM library do you have? (On Solaris probably ndbm, but no easy
6098 default on some other systems.)
6099
6100 . Which uid/gid do you want to use for Exim?
6101
6102 . Where do you want the configuration file to be? (Many different
6103 answers, even on the same OS, depending on local policy.)
6104
6105 . Ditto for the binaries.
6106
6107 . Which optional bits of Exim do you want to include?
6108
6109
6110Q5011: Is there a version of Exim available that runs under Windows?
6111
6112A5011: A long time ago somebody took a copy of the Exim source with the aim of
6113 trying to port it to Windows NT. However, I never heard anything more.
6114 However, current versions of Exim can be made to run under Cygwin.
6115
6116
6117Q5012: Does Exim support Delivery Status Notification (DSN), Message Status
6118 Notification (MSN), or any other form of delivery acknowledgement?
6119
6120A5012: See Q0607.
6121
6122
6123Q5013: What does ``Exim'' stand for?
6124
6125A5013: Originally, it was ``EXperimental Internet Mailer'', which was the best I
6126 could come up with when I was starting out. At that point it was
6127 experimental - I wanted to see if the ideas I had for extending Smail's
6128 approach actually worked. Then somebody discovered about it and wanted
6129 to start using it, and told other people about it...
6130
6131
6132Q5014: Although I haven't set \check_spool_space\, Exim is still checking the
6133 amount of space on the spool for incoming SMTP messages that use the
6134 SIZE option. Can I suppress this?
6135
6136A5014: The RFC for the SIZE option says:
6137
6138 \*If the server currently lacks sufficient resources to accept a
6139 message of the indicated size, but may be able to accept the
6140 message at a later time, it responds with code ``452
6141 insufficient system storage''.*\
6142
6143 and that is what Exim is trying to implement. This is entirely
6144 independent from \check_spool_space\, which says \*don't accept any mail
6145 if there is less than so much space in the spool partition*\, though the
6146 code is optimised to do both checks at the same time if required.
6147 However, you can suppress the SIZE check if you want to, by unsetting
6148 \smtp_check_spool_space\.
6149
6150
6151Q5015: I just noticed log entries that start off \"<= <>"\. Am I correct in
6152 assuming that the \"<>"\ indicates that the envelope did not contain any
6153 ``From'' data?
6154
6155A5015: Yes. This indicates a delivery failure report (aka a ``bounce message''),
6156 as specified in RFC 2821. The reason for using empty sender addresses is
6157 to identify bounce messages so that they themselves do not cause further
6158 bounces. Empty senders are also used for other kinds of report which
6159 should not themselves cause the generation of bounce messages. For
6160 example, Exim uses them when sending out warnings about delivery delays.
6161
6162
6163Q5016: I've received a message which does not have my address in the ::To::
6164 line. It is a spam message with the same address in both the ::From:: and
6165 the ::To:: headers. How can this happen, and why doesn't Exim reject it?
6166
6167A5016: There is an important distinction between the ``envelope'' from and to and
6168 the ``header'' from and to. The former are sometimes called the ``sender''
6169 and ``recipient''. An email message needs an ``envelope'' for the same
6170 reason that paper mail does - the envelope tells the delivery mechanism
6171 what to do with this copy of the message, whereas the ::To:: header lists
6172 all the recipients, including those who have been sent different copies
6173 of the message because their mailbox is on some other host.
6174
6175 An MTA such as Exim works entirely with the ``envelope'' addresses, not
6176 with those in the header lines. Don't try to block mail where envelope
6177 from and the header from differ. There are common legitimate cases where
6178 this happens, for example, messages forwarded from mailing lists and
6179 delivery failure reports.
6180
6181
6182Q5017: Can (or will) Exim ever handle a message delivery purely in memory,
6183 that is, it is handled without it ever hitting the disk?
6184
6185A5017: It doesn't, and never will. Accepting and delivering a message are two
6186 entirely separate, independent processes, which communicate only by
6187 writing/reading the message on the disk.
6188
6189
6190Q5018: If I am using dbm files for data that Exim reads, can I rebuild them
6191 on the fly, or do I need to restart Exim every time I make a change?
6192
6193A5018: Exim re-reads the file every time it consults it, so if you are using a
6194 cdb or a DBM library that uses just a single file (i.e. not ndbm),
6195 you can just build the new file with a temporary file name, and use
6196 \^mv^\ to rename it into the correct place on the fly. If there are two
6197 files to rename, there is a window of time during which the DBM database
6198 is inconsistent. On lightly loaded systems this may not matter.
6199
6200
6201Q5019: I need an option that is the opposite of \-bpa-\, that is, a listing of
6202 those addresses generated from a top-level address that have not yet
6203 been delivered.
6204
6205A5019: Exim does not keep this information. It saves only the top-level
6206 addresses and the list of addresses that are finished with. At each
6207 delivery attempt, generated addresses are recomputed from scratch. This
6208 makes it possible to correct errors in redirection data that is
6209 causing delivery delays. However, there is an option you can set on a
6210 \redirect\ router that changes things. It is called \one_time\, and if
6211 it is set, the list of generated addresses gets added to the top-level
6212 list at the first delivery attempt, and is never regenerated. Because
6213 top-level address lists must be real email addresses, this option cannot
6214 be used if any of the generated addresses are pipes, files, or
6215 autoreplies.
6216
6217
6218Q5020: How can I make Exim receive incoming mail, queue it, but not attempt to
6219 deliver it? I want to be in this state while moving some mailboxes.
6220
6221A5020: Set \queue_only\ in the Exim configuration. Then kill your daemon,
6222 and restart it without the \-q-\ option (i.e. with just the \-bd-\ option),
6223 so that it does not spawn any queue runners. This stops all deliveries,
6224 remote as well as local.
6225
6226
6227Q5021: What does Exim use for POP and IMAP as a default? Do I have to install
6228 anything else?
6229
6230A5021: Yes. Exim provides MTA functionality. That is, it delivers mail. POP and
6231 IMAP are two of several ways of reading previously-delivered mail. Exim
6232 does not provide that functionality. You need to install POP and/or IMAP
8e26e4bf 6233 daemons; there are several to choose from.
495ae4b0
PH
6234
6235
6236Q5022: Is there an easy way of removing all queued messages at once in a safe
6237 way?
6238
6239A5022: Try this command:
6240
6241==> exim -bp | awk '/^ *[0-9]+[mhd]/{print "exim -Mrm " $3}' | sh
6242
6243
6244Q5023: Why does Exim do \*ident*\ callbacks by default? Isn't this just a waste
6245 of resources? I've been told this is an ancient way of authentication.
6246 Is it obsolete?
6247
6248A5023: This is a common misunderstanding, at least partially resulting from the
6249 incorrect naming of the protocol when it was first published.
6250 The service on port 113 is an identification service, which allows a
6251 target host to record information identifying the user responsible for
6252 making a connection to it. The information may not be intelligible to
6253 the recording host - it could, for example, be encrypted so that only
6254 someone on the calling host can make sense of it. It is useful for
6255 providing additional information in an audit trail.
6256
6257 At least one site has found \^ident^\ effective against two rather
6258 prevalent kinds of open proxy (whether already blacklisted at the RBLs
6259 or not). An ACL statement is used to reject mail from servers that
6260 return \^ident^\ strings of \"squid"\ and \"CacheFlow Server"\.
6261 Snippets such as this in the RCPT ACL do the trick:
6262
6263==> deny condition = ${if eq{$sender_ident}{CacheFlow Server}{1}{0}}
6264 message = Rejected - appears to be an unsecured proxy: $sender_ident
6265
6266 The likelihood that a genuine mail process would return those specific
6267 ident strings is vanishingly small.
6268
6269 The \^ident^\ data should not be used for authentication in any form
6270 except on a closed secure network between cooperating hosts (probably
6271 not even then). The information from the source host is only as reliable
6272 as the host itself. If it's not under your control then you have to
6273 treat the information as opaque data that can be used only by the
6274 sysadmin of the source system to trace back connection data. Some
6275 \^ident^\ implementations send out opaque cookies or DES encrypted
6276 information. \^Ident^\ is hugely useful at times - especially for
6277 checking back on connections from multiuser machines (as opposed to
6278 one-person desktop boxes).
6279
6280 You can stop Exim making ident calls by adding
6281
6282==> rfc1413_query_timeout = 0s
6283
6284 to its configuration, but it is better to leave it active (reducing the
6285 timeout to 10s or less if it is causing problems) - it costs very
6286 little, and in cases of mail forgery from a multiuser system can track
6287 the sinner concerned very quickly.
6288
6289
6290Q5024: I often have the problem that a message gets stuck in the mail queue and
6291 I want it to be bounced to a certain address.
6292
6293A5024: You can do this using a combination of four command line options, like
6294 this:
6295
6296==> exim -Mf 14Fdlq-0003kM-00
6297 exim -Mmad 14Fdlq-0003kM-00
6298 exim -Mar 14Fdlq-0003kM-00 new@ddress
6299 exim -M 14Fdlq-0003kM-00
6300
6301 The first command freezes the message so that a queue runner won't start
6302 to deliver it while you are changing things. The second command marks
6303 all existing recipients as delivered. The third command adds a new
6304 recipient, and the fourth command forces a delivery of the message,
6305 which will cause it to be delivered to the new address, and then
6306 deleted.
6307
6308
6309Q5025: What precautions should I take when editing Exim's run time
6310 configuration file?
6311
6312A5025: Edit the file and save the result in a new file. Test the syntax of
6313 the new file by running a command like this:
6314
6315==> exim -bV -C exim.conf.new
6316
6317 That will check for syntax errors without disturbing your running
6318 configuration. If you are paranoid enough, run, as \/root/\,
6319
6320==> exim -C exim.conf.new <some address>
6321 <some message>
6322 .
6323
6324 and see if it delivers it. Carry on testing until happy. When happy,
6325
6326==> mv exim.conf.new exim.conf
6327 kill -HUP `cat /var/spool/exim/exim-daemon.pid`
6328
6329 Then check the Exim log to be sure the daemon restarted OK. Watch the
6330 log for a bit to see that mail is flowing.
6331
6332
6333Q5026: Is exim able to use RFC 2645, \*On-demand Mail Relay*\ (ODMR)?
6334
6335A5026: No.
6336
6337
6338Q5027: Is there any way I can send bounces to the postmaster, and nobody else?
6339 Basically, I want to receive them, and I don't want the reply/from
6340 person to get them. If I think they need it I will forward it myself.
6341
6342A5027: Put \"errors_to=postmaster"\ on every router.
6343
6344
6345Q5028: When I HUP the Exim daemon, the name shown in the process table changes
6346 from \(/usr/lib/sendmail)\ (which is a symlink) to the real binary name.
6347 Can I change this?
6348
6349A5028: Add this to your Exim configuration:
6350
6351==> exim_path = /usr/lib/sendmail
6352
6353
6354Q5029: A message with a recipient address that contains a non-printing character
6355 is stuck on my mail queue. How can I remove this address?
6356
6357A5029: You can use the \-Mmd-\ command line option to mark a recipient address
6358 ``delivered'', which effectively removes it. If you are using the Bash
6359 shell, you can enter non-printing characters using an escape sequence.
6360 For example:
6361
6362==> exim -Mmd 15HKvU-00013Q-00 $'\240'abc@x.y.z
6363
6364 In this example, the first character of the local part has a code value
6365 of 240. If you are using a shell that does not support this, create the
6366 command in a file and run it as a shell script.
6367
6368
6369Q5030: I am using exim in a two queues scenario, with two different
6370 configuration files. How can I run a second copy of \^eximon^\ to
6371 inspect and modify the alternate queue?
6372
6373A5030: Use these commands (or put them in a script):
6374
6375==> EXIMON_EXIM_CONFIG=/your/path/exim/configure.alternate
6376 export EXIMON_EXIM_CONFIG
6377 /your/path/exim/bin/eximon
6378
6379
6380Q5031: Why is there no sender address on bounce messages? It shows up as "<>".
6381
6382A5031: See the answer to Q0042.
6383
6384
6385Q5032: Are there any Exim web-based administration scripts?
6386
6387A5032: No (as far as is known). It seems likely that producing one that is
6388 generic enough would be a difficult task.
6389
6390
6391Q5033: How can I send a copy of all outgoing messages to another mailbox?
6392
6393A5033: The most straightforward way is to set up a system filter, and include
6394 a command such as:
6395
6396==> unseen deliver mailbox@whatever.domain
6397
6398 This sends a copy of every message to //mailbox@whatever.domain//
6399 (unless the message already has that recipient - Exim never does
6400 duplicate deliveries).
6401
6402 To save only ``outgoing'' messages, you need to come up with a
6403 definition of what ``outgoing'' means. Typically, this might be a check
6404 on the sender address and/or on the originating host. Here is an
6405 example:
6406
6407==> if $sender_address_domain is mydomain.com and
6408 ${mask:$sender_host_address/24} is 192.168.324.0/24
6409 then
6410 unseen deliver mailbox@whatever.domain
6411 endif
6412
6413
6414Q5034: Is there any way to make the \queue_only\ option conditional? I would
6415 like the ability to queue messages from external sources while deliver
6416 locally generated email as normal.
6417
6418A5034: There is no direct way of doing this. However, you can achieve the
6419 effect. In one of your ACLs that checks incoming mail from external
6420 sources, put
6421
6422==> warn control = queue_only
6423
6424 You can add other conditions as well, of course.
6425
6426
8e26e4bf
PH
6427Q5035: Does Exim run with different permissions between \-bt-\ and \-bh-\, or
6428 between verifying and actual sending?
6429
6430A5035: Yes. For \-bt-\ it runs as root, as it would when delivering a message.
6431 For \-bh-\, \-bv-\, and when actually receiving a message, it runs as
6432 the Exim user.
6433
6434
495ae4b0
PH
6435
643691. MAC OS X
6437
6438Q9101: How can I install Exim on Mac OS X?
6439
6440A9101: (1) There is useful advice on this web page:
6441 \?http://www.afp548.com/Articles/Jaguar/exim410.html?\.
6442
6443 (2) There is a package installer available at this URL:
6444 \?ftp://members.aol.com/AFP548dotcom/EximInstaller.sit?\.
6445
6446 (3) There is another package installer for the combination of MySQL,
6447 Exim, Exiscan, CourierIMAP, and SpamAssassin at this URL:
6448 \?http://maxo.captainnet.net/installs/mail-install.html?\.
6449
6450
6451
645292. FREEBSD
6453
6454Q9201: On FreeBSD, \(/usr/sbin/sendmail)\ is a symbolic link to
6455 \(/usr/sbin/mailwrapper)\; it doesn't contain the Sendmail binary. How
6456 should I replace Sendmail with Exim on FreeBSD?
6457
6458A9201: There is a file called \(/etc/mail/mailer.conf)\ which selects what to
6459 run for various MTA calls. Instead of changing \(/usr/sbin/sendmail)\,
6460 you should edit this file instead, to read something like this:
6461
6462==> sendmail /usr/exim/bin/exim
6463 send-mail /usr/exim/bin/exim
6464 mailq /usr/exim/bin/exim -bp
6465 newaliases /usr/bin/true
6466
6467 You probably also need to edit \(/etc/periodic.conf)\; see Q9202.
6468
6469
6470Q9202: A script that FreeBSD runs nightly uses \^mailq^\ with the \-Ac-\
6471 parameter. Why doesn't Exim recognize this?
6472
6473A9202: \-Ac-\ is a Sendmail option that requests that mailq ``Show the mail
6474 submission queue specified in \(/etc/mail/submit.cf)\ instead of the
6475 MTA queue specified in \(/etc/mail/sendmail.cf)\''. Exim doesn't have
6476 the concept of a ``submission queue''. You can disable this feature
6477 of the nightly script by adding the line
6478
6479==> daily_status_include_submit_mailq="NO" # No separate 'submit' queue
6480
6481 to the file \(/etc/periodic.conf)\.
6482
6483
6484Q9203: How can I use Exim for authenticated SMTP using Cyrus on FreeBSD?
6485
6486A9203: This web page may help: \?http://www.munk.nu/exim/exim-freebsd-asmtp.php?\.
6487
6488
6489
649093. HP-UX
6491
6492Q9301: I'm trying to compile on an HP machine and I don't have \^gcc^\ there. So I
6493 put \"CC=cc"\ in the \(Local/Makefile)\, but I got this error:
6494
6495==> (Bundled) cc: "buildconfig.c", line 54: error 1705: Function prototypes
6496 are an ANSI feature.
6497
6498A9301: The bundled compiler is not an ANSI C compiler. You either have to get a
6499 copy of \^gcc^\ from the HPUX Software Porting Archives or buy the ANSI cc
6500 from HP. The advice given by one user of HP systems on the Exim
6501 mailing list was as follows:
6502
6503 \*Personally, I wouldn't use anything but the ANSI C compiler. gcc
6504 works for compilation, but it doesn't know squat about PA-RISC chips
6505 past the 1.0 rev. Since then, HP has come out with PA-RISC 1.1, 2.0,
6506 and 2.1, each with better features. gcc will compile for them, but it
6507 doesn't produce anywhere near the optimization that HP's compiler
6508 does.*\
6509
6510 \*I took the gcc road when we moved from FreeBSD to HP-UX because I was
6511 familiar with it. After 6 months, I had to go and re-port everything
6512 over when we realized that gcc wasn't going to do it for us long-term.
6513 If I could give advice to any new HP-UX admin: don't use gcc if you
6514 can afford the ANSI C compiler. Based on the cost of even the lowest
6515 HP workstation, that usually isn't a problem.*\
6516
6517
6518
651994. BSDI
6520
6521Q9401: On BSDI 4.0, Exim built with Perl support exits with the error message
6522
6523==> ./exim: can't load library 'libperl.so'
6524
6525A9401: You probably compiled perl5 yourself, without looking into
6526
6527==> /usr/src/contrib/perl5/perl5.004_02/hints/bsdos.sh
6528
6529 first. The problem is that the command
6530
6531==> perl5 -MExtUtils::Embed -e ldopts
6532
6533 doesn't give you sufficient flags to link something with libperl.
6534 Since 5.004_02 the \(hints/bsdos.sh)\ file has changed to adapt to the
6535 changes between BSDI 3.1 and 4.0, but it is still not entirely right.
6536
6537 The solution is, when you compile perl, change the \ccdlflags\
6538 variable in config.sh to:
6539
6540==> -rdynamic -Wl,-rpath,/usr/local/lib/perl5/5.00502/i386-bsdos/CORE
6541
6542 (or something similar). Alternatively, you can run \(./Configure)\ and
6543 answering the question \*Any special flags to pass to cc to use dynamic
6544 loading?*\ with the above line. It is not known what \-rdynamic-\ means
6545 (it's not apparently documented in any man page), but that's what BSDI
6546 guys did to compile perl5 which comes with BSDI 4.0 distribution.
6547
6548
6549
655095. IRIX
6551
6552Q9501: The IP addresses for incoming calls are all being given as
6553 255.255.255.255 or 0.0.0.0.
6554
6555A9501: This problem should no longer occur because a workaround has been
6556 installed in Exim.
6557
6558
6559
656096. LINUX
6561
6562Q9601: Exim is mysteriously crashing, usually when forking to send a delivery
6563 error message.
6564
6565A9601: This has been seen in cases where Exim has been incorrectly built with
6566 a muddled combination of an \(ndbm.h)\ include file and a non-matching
6567 DBM library.
6568
6569 Faults like this have also been seen on systems with faulty motherboards.
6570 You could try to compile the Linux kernel 10 times - if the compile
6571 process stops with signal 11, your hardware is to blame.
6572
6573
6574Q9602: I want to use \^logrotate^\ which is standard with RH5.2 Linux to rotate
6575 my mail logs. Anyone worked out the \^logrotate^\ config file that will
6576 do this?
6577
6578A9602: Here's one suggestion:
6579
6580==> /var/log/exim/main.log {
6581 create 644 exim exim
6582 rotate 4
6583 compress
6584 delaycompress
6585 }
6586
6587 The sleep is added to allow things to close the log file prior to
6588 compression. You also need similar entries for the panic log and the
6589 reject log, of course.
6590
6591
6592Q9603: I'm seeing the message \*inetd[334]: imap/tcp server failing (looping),
6593 service terminated*\ on a RedHat 5.2 system, causing \^imap^\ connections to
6594 be refused. The \^imapd^\ in use is Washington Univers 12.250. Could this
6595 be anything to do with Exim?
6596
6597A9603: No, it's nothing to do with Exim, but here's the answer anyway: there
6598 is a maximum connection rate for \^inetd^\. If connections come in faster
6599 than that, it thinks a caller is looping. The default setting on RedHat
6600 5.2 is 40 calls in any one minute before \^inetd^\ thinks there's a problem
6601 and suspends further calls for 10 mins. This default setting is very
6602 conservative. You should probably increase it by a factor of 10 or 20.
6603 For example:
6604
6605==> imap stream tcp nowait.400 root /usr/sbin/tcpd /usr/local/etc/imapd
6606
6607 The rate setting is the number following ``nowait''. This syntax seems to
6608 be specific to the Linux version of \^inetd^\. Other operating systems
6609 provide similar functionality, but in different ways.
6610
6611
6612Q9604: I get the \*too many open files*\ error especially when a lot of messages
6613 land for Majordomo at the same time.
6614
6615A9604: The problem appears to be the number of open files the system can
6616 handle. This is changable by using the proc filesystem. To your
6617 \(/etc/rc.d/rc.local)\ file append something like the following:
6618
6619==> # Now System is up, Modify kernel parameters for max open etc.
6620
6621==> if [ -f /proc/sys/kernel/file-max ]; then
f0884f39 6622 echo 16384 >> /proc/sys/kernel/file-max
495ae4b0
PH
6623 fi
6624 if [ -f /proc/sys/kernel/inode-max ]; then
f0884f39 6625 echo 24576 >> /proc/sys/kernel/inode-max
495ae4b0
PH
6626 fi
6627 if [ -f /proc/sys/kernel/file-nr ]; then
f0884f39 6628 echo 2160 >> /proc/sys/kernel/file-nr
495ae4b0
PH
6629 fi
6630
6631 By echoing the value you want for file-max to the file \(file-max)\ etc.,
6632 you actually change the kernel parameters.
6633
6634
6635Q9605: I installed debian 2.2 linux on a small 325mb 486 laptop. When I try
6636 to test the Mail program, I get the following error: \*Failed to open
6637 configuration file /etc/exim.conf*\.
6638
6639A9605: The Debian installation should have given you \(/usr/sbin/eximconfig)\,
6640 which asks you some questions and then sets up the configuration file
6641 in \(/etc/exim.conf)\. Try running that (you'll probably need \/root/\) and see
6642 how it goes. In any case you get a thoroughly commented conf file at
6643 the end, which will give you a sample from which to work if you need
6644 further modification.
6645
6646 The Exim docs in the Debian package are in \(/usr/doc/exim)\ where the full
6647 reference manual is \(spec.txt.gz)\.
6648
6649
6650Q9606: I'm having trouble configuring Exim 4 on a Debian system. How does
6651 \(/etc/exim4/conf.d)\ work?
6652
6653A9606: The Debian Exim 4 package uses a quite uncommon, but elegant,
6654 method of configuration where the ``real'' Exim configuration file is
6655 assembled from a tree of snippets by a script invoked just before the
6656 daemon is started (see Q9608).
6657
6658 This fits very well into the Debian system of configuration file
6659 management and is a great ease for the automatic configuration with
8e26e4bf 6660 Debconf. However, it is very different from the normal way Exim 4 is
495ae4b0
PH
6661 configured. Non-Debian users on the Exim mailing list will probably have
6662 difficulty in trying to answer specific questions about it. You may have
6663 to find a Debian expert.
6664
6665
6666Q9607: I'm having difficulties trying to make Exim 4 with Redhat 9 and Berkeley
6667 DB 4.
6668
6669A9607: Have you remembered to install the db4-devel package?
6670
6671
6672Q9608: I'm running Exim 3 under Debian, and want to upgrade to Exim 4. How
6673 difficult is it?
6674
6675A9608: A user who did this, using the Debian Exim 4 package, reported as
6676 follows:
6677
6678 (1) The exim4 package installs easily, and the exim (3.38) package
6679 uninstalls at the same time.
6680
8e26e4bf 6681 (2) Exim runs from \^inetd^\. Exim4 runs from \^/etc/init.d^\. Much nicer!
495ae4b0
PH
6682
6683 (3) The exim conffile lives in \(/etc/exim/exim.conf)\. The exim4 conffile
6684 lives in \(/var/lib/exim4/config.autogenerated)\. It is, as the name
6685 suggests, autogenerated.
6686
6687 (4) A new directory is created called \(/etc/exim4)\. This contains the
6688 conffiles to generate the above config. You make changes here.
6689
6690 (5) Once you have made changes to the files in \(/etc/exim4)\ you run the
6691 script \^update-exim4.conf^\ which generates a replacement
6692 \(config.autogenerated)\.
6693
6694 [Added comment by the Debian maintainer, slightly edited:
6695 You also need to tell the Exim daemon to reread the changed
6696 configuration. You can do this using SIGHUP by hand. Alternatively,
6697 instead of running \^update-exim4.conf^\ you can use
6698
6699==> invoke-rc.d exim4 reload
6700
6701 which does the rebuild and also tells Exim to reread the changed
6702 configuration.]
6703
8e26e4bf 6704 (6) In my experience, you need to carefully check the generated
495ae4b0
PH
6705 configs. eg, it did not generate a system filter file reference in the
6706 \(config.autogenerated)\. I didn't bother too much, since this is a home
6707 setup.
6708
6709 (7) All of this may be in the docs. I've read some of them, obviously,
6710 but didn't come across an actual upgrade guide.
6711
6712 [The Debian maintainer says:
6713 \(/usr/share/doc/exim4-base/README.Debian.gz)\ and \^update-exim4.conf(8)^\
6714 should answer most of the questions.]
6715
6716 (8) I've still got some minor things to tweak to get back to where I
6717 was before with Exim 3. But overall, it's no drama.
6718
6719
6720Q9609: Why do some servers refuse SMTP connections from my Linux box, but accept
6721 connections from hosts running other operating systems?
6722
6723A9609: If you are sure this isn't a policy issue (that is, your box isn't
6724 administratively blocked for some reason), this may be because your
6725 Linux box has ECN (Explicit Congestion Notification) enabled in its
6726 TCP/IP stack. There are many broken firewalls that refuse connections
6727 from ECN-enabled hosts. You can check the state of your box by running
6728
6729==> cat /proc/sys/net/ipv4/tcp_ecn
6730
6731 If the value is "1", you have ECN enabled. You can turn it off by
6732 running this command:
6733
6734==> echo "0" > /proc/sys/net/ipv4/tcp_ecn
6735
6736
6737
673897. SUN SYSTEMS
6739
6740Q9701: Exim builds fine with \^gcc^\ on SunOS 4 but crashes inside \^^sscanf()^^\.
6741
8e26e4bf 6742A9701: Make sure you are linking with the GNU \^ld^\ linker and not the system
495ae4b0
PH
6743 version of \^ld^\.
6744
6745
8e26e4bf
PH
6746Q9702: How can I get rid of spurious \"^M"\ (carriage return) characters in
6747 messages sent from CDE \^dtmail^\?
495ae4b0
PH
6748
6749A9702: CDE \^dtmail^\ passes messages to Exim via the command line interface with
8e26e4bf
PH
6750 lines terminated by CRLF, instead of the Unix convention of just LF.
6751 This should not be a problem if you are using Exim release 4.21 or
6752 later, as changes were made to detect CRLF line endings.
6753
6754 In earlier versions of Exim, CR would be treated as just another data
6755 character. There was, however, a command line option called
6756 \-dropcr-\ which caused Exim to ignore all CR characters in an incoming
6757 non-SMTP message. (This option is a no-op in current releases.)
6758
6759 If you are using a pre-4.21 version of Exim, you should configure
6760 \^dtmail^\ to add this option to the command it uses to call Exim (using
6761 the path \(/usr/lib/sendmail)\). However, it has been reported that it
6762 isn't possible to change this call from \^dtmail^\ by any official
6763 means. An alternative approach is to replace \(/usr/lib/sendmail)\ by a
6764 filtering script that removes the spurious CRs from the input before
6765 passing it to Exim.
495ae4b0
PH
6766
6767
6768Q9703: On SunOS 4 Exim crashes when looking up domains in the DNS that have
6769 more than 10 A records.
6770
6771A9703: There are Sun library patches to fix this. It is not Exim's problem.
6772 For 4.13_U1 the patch is 101558-xx; for 4.1.3 the patch is 100891-xx.
6773 From the README: \*1054748 ftp, ping dump core when connecting to a host
6774 with multiple DNS A records.*\ An alternative is to build another
6775 resolver library - such as the ones that are part of the \^bind^\
6776 distribution - and explicitly link against those.
6777
6778
6779Q9704: I am experiencing mailbox locking problems with Sun's \^mailtool^\ used
6780 over a network.
6781
6782A9704: Under the \"Expert"\ settings of \^mailtool^\ is a option to turn on \*Use
6783 network aware mail file locking*\. By default \^dtmail^\ has this set, but
6784 \^mailtool^\ doesn't. You should set it. The help info on \^dtmail^\ has this
6785 to say about it:
6786
6787 \*Mailer tries to prevent two different instances of itself from opening
6788 the same mail file at the same time through a technique that detects
6789 this access when both instances of Mailer and the file are all on the
6790 same machine. A network-aware mail file locking protocol is available
6791 that uses ToolTalk to coordinate instances of Mailer running from more
6792 than one machine, or mail files accessed over the network. Mailer can
6793 only change this option when first opening a mail file.*\
6794
6795 If you are using the SunOS4 version of \^mailtool^\, this apparently
6796 doesn't work. The only thing which does seem to work it getting the user
6797 to hit the \"done"\ button to make it release the lock.
6798
6799
6800Q9705: Exim has been crashing on my Solaris x86 system, apparently while
6801 running DBM functions.
6802
6803A9705: The use of \^ndbm^\ with \^gcc^\ has caused problems on x86 Solaris systems.
6804 Try changing one or the other; using either DB with gcc, or Sun's
6805 WS compiler with \^ndbm^\, has fixed this in the past.
6806
6807
6808Q9706: The \^exiwhat^\ utility isn't working for me on a Solaris 2 system.
6809
6810A9706: Have you got \(/usr/ucb)\ on your path? If so, it is probably picking up the
6811 wrong version of the \^ps^\ command. The \^exiwhat^\ script is built on
6812 Solaris to expect the normal Solaris version of \^ps^\.
6813
6814
6815Q9707: How do I stop Sun's \^dtcm^\ from hanging?
6816
6817A9707: From qmail's FAQ: \*There is a novice programming error in dtcm, known as
6818 ``failure to close the output side of the pipe in the child.'' Sun has,
6819 at the time of this writing, not yet provided a patch.*\
6820
6821
6822Q9708: I want Exim to use only the resolver (i.e. ignore \(/etc/hosts)\), but don't
6823 want to alter the \(nsswitch.conf)\ file in Solaris 2.
6824
6825A9708: You need to rebuild Exim after fiddling with \(OS/os.h-SunOS5)\:
6826
6827==> #define gethostbyaddr res_gethostbyaddr
6828 #define gethostbyname res_gethostbyname
6829 #define endhostent res_endhostent
6830 #define endnetent res_endnetent
6831 #define gethostent res_gethostent
6832 #define getnetbyaddr res_getnetbyaddr
6833 #define getnetbyname res_getnetbyname
6834 #define getnetent res_getnetent
6835 #define sethostent res_sethostent
6836 #define setnetent res_setnetent
6837
6838 Note that \-lnsl-\ is still needed in the Makefile as it
6839 contains code used by the NIS lookup and also the \^^inet_addr()^^\ function
6840 that Exim uses.
6841
6842
6843Q9709: When I try to compile Exim 4.x on Solaris 2.5.1 I get an error along the
6844 lines of \*no such field in struct as 'value.ui32'*\.
6845
6846A9709: Look in the Exim file \(OS/os.h-SunOS5.h)\ for the line
6847
6848==> #define LOAD_AVG_FIELD value.ui32
6849
6850 and change \"ui32"\ to \"ul"\ (that's u followed by the letter ell, not
8e26e4bf 6851 the digit one). Solaris 2.5.1 is getting very old now...
495ae4b0
PH
6852
6853
6854
685598. CONFIGURATION COOKBOOK
6856
6857Q9801: How do I configure Exim as part of TPC (\?http://www.tpc.int?\)?
6858
6859A9801: Suppose you want to accept faxes destined for 1(801)539-*. These are
6860 addressed to the domain //9.3.5.1.0.8.1.tpc.int//. Set up a transport to
6861 handle the delivery:
6862
6863==> tpc:
6864 driver = pipe
6865 command = /usr/local/tpc/tpcmailer.pl $local_part@$domain \
6866 $sender_address
6867 pipe_as_creator
6868
6869 \(/usr/local/tpc/tpcmailer.pl)\ is the mail processing script that can
6870 be obtained from the TPC distribution. Create a router to route mail
6871 for the TPC domain to that transport. This must be placed before your
6872 other routers:
6873
6874==> tpc_router:
6875 driver = accept
6876 transport = tpc
6877 domains = *.9.3.5.1.0.8.1.tpc.int
6878
6879 Of course, there are other things to do as well before your system is
6880 a functioning TPC server.
6881
6882
6883Q9802: How do I configure Exim so that it sends mail to the outside world only
6884 from a restricted list of our local users?
6885
6886A9802: You will need to have a convenient way of checking the list. If it is
6887 only a handful of users, you could just list them inline. Otherwise, you
6888 need to put them in a file or database. Let's suppose you've just got a
6889 list in a file. Put this as your first router:
6890
6891==> check_outgoing:
6892 driver = redirect
6893 domains = ! +local_domains
6894 senders = ! : ! lsearch;/etc/permitted/senders
6895 allow_fail
6896 data = :fail: you are not allowed to send outside
6897
6898 The senders should be listed as complete addresses, with both a local
6899 part and a domain. For a large list, use a DBM or cdb file instead, or
6900 a database. The first item in the \senders\ list is empty, to match the
6901 empty sender. This is necessary because bounce messages have null
6902 senders.
6903
6904
6905Q9803: A site for which I provide secondary MX is down for some time. Is there
6906 a way to run the queue for that destination separately from the main
6907 queue?
6908
6909A9803: No, because Exim does not have the concept of ``the queue for that
6910 destination''. It simply has a single pool of messages awaiting delivery
6911 (and some of them may have several destinations). The best approach to
6912 this is to arrange for all messages for the site to be saved somewhere
6913 other than the main spool, either on a separate dedicated MTA, or in
6914 BSMTP files.
6915
6916
6917Q9804: We want to be able to temporarily lock out a user by disabling the
6918 password and moving the home directory to another place. How can we
6919 arrange to reject mail for users in this state?
6920
6921A9804: Change the home directory pointer in the passwd file to something
6922 distinctive. For example, we use \(/home/CANCELLED)\ for cancelled users.
6923 Then you can pick up such users with this router, which is placed
6924 immediately after \%system_aliases%\:
6925
6926==> cancelled_users:
6927 driver = redirect
6928 check_local_user
6929 condition = ${if eq {$home}{/home/CANCELLED}{yes}{no}}
6930 allow_fail
6931 data = :fail: this account is cancelled
6932
6933
6934Q9805: How can I configure Exim so that all mails addressed to
6935 //something@username.domain.net// get delivered to
6936 \(/var/spool/mail/username)\?
6937
6938A9805: Assuming that you have set up //username// as a normal user, with
6939 conventional routing for //username@domain.net// to that mailbox, all
6940 you need to do is set up a redirection, using a router like this:
6941
6942==> user_in_domain:
6943 driver = redirect
6944 data = ${if match{$domain}{\N^(.*)\.domain\.net$\N}\
6945 {$1}fail}@domain.net
6946
6947 If you set \envelope_to\ in the \%appendfile%\ transport, the original
6948 envelope address is preserved in the message in an ::Envelope-to::
6949 header line.
6950
6951
6952Q9806: How do I get exim not to add a ::Sender:: header to locally originated
6953 mail?
6954
6955A9806: It adds it only if the ::From:: header doesn't correspond to the user
6956 sending the message. You can suppress this by setting
6957 \no_local_from_check\. If your real question is \*How do I submit mail
6958 from UUCP without it adding ::Sender::?*\, see Q1503.
6959
6960
6961Q9807: Is there any way to have messages sent to a specific local address
6962 delayed by - say - 24 hours?
6963
6964A9807: Set up a router like this:
6965
6966==> delay:
6967 driver = redirect
6968 domains = the.domain
6969 local_parts = thelocalpart
6970 condition = ${if < {$message_age}{86400}{yes}{no}}
6971 allow_defer
6972 data = :defer: message not old enough
6973 no_verify
6974
6975 Of course, this will also have the effect of setting a retry time for
6976 the address. You may want to set a special retry rule for it. Note the
6977 use of \no_verify\ to ensure that this router is not used when Exim is
6978 verifying addresses.
6979
6980
6981Q9808: I have a mailing list exploder on one host, and three other hosts where
6982 I want to do the actual deliveries from. How can I get Exim to split
6983 a message into groups of recipients between the three hosts?
6984
6985A9808: Set up a router that routes all remote addresses to a specific
6986 transport, with a list of your three hosts. For example:
6987
6988==> send_to_three:
6989 driver = manualroute
6990 transport = to_three_smtp
6991 route_list = !+local_domains hostA:hostB:hostC
6992
6993 The transport looks like this:
6994
6995==> to_three_smtp:
6996 driver = smtp
6997 hosts_randomize
6998
6999 By setting \hosts_randomize\, you request that the host list be sorted
7000 randomly each time the transport is called, in order to spread the load.
7001 The number of times the transport is called for each message depends on
7002 the setting of the global option \remote_max_parallel\. If it is set to
7003 1, the transport is called only once for each message, so only one host
7004 is used, but different messages use different hosts because of the
7005 randomizing.
7006
7007 The \max_rcpt\ option (default 100) controls the number of addresses
7008 sent in each copy of the message - several copies are sent over the
7009 same connection if necessary.
7010
7011 If you want individual messages to be split between the three hosts, you
7012 must set the global option \remote_max_parallel\ to 3. This allows Exim
7013 to run 3 separate instances of the transport at once. It will pass
7014 one-third of all the addresses to each instance. Because the host list
7015 is randomized, not round-robinned, there is no guarantee that a single
7016 message will use all three hosts, but on average it should.
7017
7018
7019Q9809: Can I configure Exim so that my gateway host sends a copy of each
7020 incoming message to each of two internal hosts?
7021
7022A9809: The easiest way to do this is to make use of the \unseen\ router option,
7023 and set up two separate routers. You need to be able to identify
7024 incoming messages somehow. Typically this can be done by testing the
7025 domain of the recipient address, in which case the configuration should
7026 contain something like this:
7027
7028==> r1:
7029 driver = manualroute
7030 domains = ! *.your.domain.example
7031 route_data = * host1.your.domain.example
7032 transport = remote_smtp
7033 unseen
7034
7035==> r2:
7036 driver = manualroute
7037 domains = ! *.your.domain.example
7038 route_data = * host2.your.domain.example
7039 transport = remote_smtp
7040
7041 The \unseen\ setting on \%r1%\ means that after it has accepted an
7042 address, the address is also passed on to \%r2%\, and so two deliveries
7043 occur.
7044
7045
7046Q9810: How can I implement ``SMTP-after-POP'' with Exim?
7047
7048A9810: See Q0706.
7049
7050
7051Q9811: I would like to ``tap off'' a proportion of real mail traffic from my
7052 live mail server to use in tests of a new server. I want to preserve the
7053 envelope contents, but to suppress any error notifications to the
7054 original sender.
7055
7056A9811: See C046.
7057
7058
7059Q9812: How can I lookup data from a single file using both single IP addresses
7060 and IP address blocks as keys? I want to set \smtp_accept_max_per_host\
7061 by this means, and also include a default.
7062
7063A9812: You cannot do this in a single lookup, because you need separate lookups
7064 for individual addresses and address blocks. However, these lookups can
7065 be nested in a single expansion string. For example, suppose you are
7066 using an lsearch file with entries like this:
7067
7068==> 192.168.34.35: 4
7069 192.168.34.0/24: 2
7070 *: 1
7071
7072 You can use this setting:
7073
7074==> smtp_accept_max_per_host = \
7075 ${lookup{$sender_host_address}lsearch{/path/to/file}\
7076 {$value}\
7077 {\
7078 ${lookup{${mask:$sender_host_address/24}}lsearch*{/path/to/file}}\
7079 }}
7080
8e26e4bf 7081 Note that the first lookup does not have an asterisk on the search
495ae4b0
PH
7082 type. If you have blocks of different sizes (/24, /26, etc) you have to
7083 configure it to do a separate lookup for each size, with just the final
7084 one using a default.
7085
7086
7087
708899. LIST OF SAMPLE CONFIGURATIONS
7089
7090As well as being hyperlinked from the HTML version of this document, each
7091sample configuration is also available as a file in the \(config.samples)\
7092directory, which can be independently downloaded.
7093
7094Samples whose names are of the form Cnnn are Exim configurations; those with
7095names of the form Fnnn are filter file fragments; those with names of the form
7096Lnnn are sample \^^local_scan()^^\ functions, and those with names of thf form
7097Snnn are scripts of various kinds. There are other examples of
7098\^^local_scan()^^\ functions at a number of web sites (for example,
7099\?http://marc.merlins.org/linux/exim/sa.html?\).
7100
7101There are gaps in the C and F numbers because I have omitted the Exim 3 samples
7102that have not been converted for Exim 4.
7103
7104C002: ``Although exim not intended for use in UUCP environment (it doesn't
7105 know anything about bang!path addresses), I'm successfully using it for
7106 delivering mail to UUCP clients.''
7107
7108C006: ``This is how I have configured a PP-inspired vacationnote, there is
7109 (was?) such a feature in PP. The user makes a file \(tripnote)\ in his/her
7110 home directory, the message is passed to the sender once with a short
7111 leading text.''
7112
7113C022: ``This is the Exim configuration file of a machine which delivers mail to
7114 several local domains where the mail is delivered locally, several hairy
7115 domains, handled as described below, and a half-virtual domain, which is
7116 first processed by its special alias file, then processed as other local
7117 domains (including the processing by the global alias file).''
7118
7119C037: An elegant way of using ETRN, which does immediate delivery if the host
7120 is online, but saves mail in a BSMTP file after some time on the queue.
7121 ETRN then re-injects the mail.
7122
7123C042: ``Since the Exim 4 configuration needed to get Mailman to work differs a
7124 little bit from Exim 3 and since I still haven't seen a recipe for
7125 Mailman with Exim 4, I'm providing my configuration (based heavily on
7126 \?http://www.exim.org/howto/mailman.html?\).''
7127
7128C043: ``Attached is an Exim 4 config file which is designed for an Exim server
7129 that is put in front of an Exchange 5.5 system but which verifies the
7130 valid addresses that are stored in Exchange via LDAP lookups against the
7131 Exchange server.''
7132
7133C044: ``I thought I'd submit this as an example of an authenticated mail hub
7134 configuration. Several people have asked for it so I thought it
7135 might be of interest.''
7136
7137C045: ``Here it is, for Exim 4.10 and Cyrus IMAPD 2.1.5 using db3/db4-format
7138 mailbox database. This configuration delivers the messages to Cyrus
7139 IMAPD using LMTP over a TCP/IP socket.''
7140
7141C046: ``Deliver a duplicate of some proportion of all messages to a special
7142 machine specified in the file \(/MAIL_TAP_HOST)\, if it exists.''
7143
7144C047: A sample configuration for calling Spamassassin directly from Exim.
7145
7146C049: ``I've been seeing a whole bunch of IPs that send me spam or virus mail
7147 and HELOing as one of my own IPs, or as HELO one.of.my.own.domains (or
7148 maybe HELO \primary_hostname\).''
7149
7150C050: A configuration that uses the DNS to implement virtual domains.
7151
7152C051: ``I've been working quite hard to come up with a config that reasonably
7153 matches the qmail-ldap setup, without the warts.''
7154
7155F001: ``I thought that the rest of the list may be interested in reviewing our
7156 filter as a starting point for their own system message filter.''
7157
7158F002: ``... program which refused mail from unknown addresses until they mailed
7159 me promising not to spam me ... since I'd already thought through how
7160 to do it in Exim, and knew it'd be slightly easier than falling out of
7161 bed, I went ahead and did it.''
7162
7163F003: ``Here's four checks installed in our system wide filter that knock out
7164 a lot of otherwise hard to detect rubbish.''
7165
7166F004: ``This is an Exim filter snippet to change locally-generated ::Message-Id::
7167 and ::Resent-Message-Id:: headers to world-unique values.''
7168
7169L001: A \^^local_scan()^^\ function for Exim that calls \^uvscan^\.
7170
7171S001: A Perl script for patching the name of the configuration file in an
7172 Exim binary.
7173
7174S002: ``When I moved from smail to exim I built a program that took individual
7175 config pieces, stripped all the comments, and built a config file.''
7176
7177*** End of Exim FAQ ***