blob: 8efc9d1b8c7b5e95fb9011056733c0e229971e19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
######################################################################
# Runtime configuration file for Exim #
######################################################################
# This is a default configuration file which will operate correctly in
# uncomplicated installations. Please see the manual for a complete list
# of all the runtime configuration options that can be included in a
# configuration file. There are many more than are mentioned here. The
# manual is in the file doc/spec.txt in the Exim distribution as a plain
# ASCII file. Other formats (PostScript, Texinfo, HTML, PDF) are available
# from the Exim ftp sites. The manual is also online at the Exim web sites.
# This file is divided into several parts, all but the first of which are
# headed by a line starting with the word "begin". Only those parts that
# are required need to be present. Blank lines, and lines starting with #
# are ignored.
########### IMPORTANT ########## IMPORTANT ########### IMPORTANT ###########
# #
# Whenever you change Exim's configuration file, you *must* remember to #
# HUP the Exim daemon, because it will not pick up the new configuration #
# until you do. However, any other Exim processes that are started, for #
# example, a process started by an MUA in order to send a message, will #
# see the new configuration as soon as it is in place. #
# #
# You do not need to HUP the daemon for changes in auxiliary files that #
# are referenced from this file. They are read every time they are used. #
# #
# It is usually a good idea to test a new configuration for syntactic #
# correctness before installing it (for example, by running the command #
# "exim -C /config/file.new -bV"). #
# #
########### IMPORTANT ########## IMPORTANT ########### IMPORTANT ###########
CONFDIR = /etc/exim
CERTDIR = /etc/mail/ssl
DKIMDIR = /etc/mail/dkim
USERLIST = /etc/mail/list.d/users.list
ALIASMAP = /etc/mail/list.d/aliases.map
SMTPMAP = /etc/mail/list.d/smtp.map
LMTPMAP = /etc/mail/list.d/lmtp.map
.include CONFDIR/conf.d/000_local.conf
.include CONFDIR/conf.d/010_main.conf
.include CONFDIR/conf.d/020_acl.conf
.include CONFDIR/conf.d/030_routers.conf
.include CONFDIR/conf.d/040_transports.conf
.include CONFDIR/conf.d/050_retry.conf
.include CONFDIR/conf.d/060_rewrite.conf
.include CONFDIR/conf.d/070_authenticators.conf
.include CONFDIR/conf.d/080_localscan.conf
# End of Exim configuration file
|