summaryrefslogtreecommitdiff
path: root/exim.conf
blob: 3558007a9afa7e3237e659e7757afcf4c10b22d9 (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
62
63
64
65
66
67
68
69
70
######################################################################
#                  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
DKIMDIR = /etc/mail/dkim

TLS_CERTIFICATE_FILE = /etc/keyring/exim.crt
TLS_PRIVATE_KEY_FILE = /etc/keyring/exim.pem

USERLIST = /etc/mail/list.d/users.list
#ENABLE_PAM_AUTH = yes
#DOVECOT_AUTH_SOCKET = /var/run/dovecot/auth-client

SPF_QUERY_COMMAND = /usr/bin/spfquery.mail-spf-perl
DIG_QUERY_COMMAND = /usr/bin/dig

ALIASMAP = /etc/mail/list.d/aliases.map

#SPAMD_ADDRESS = 127.0.0.1 11333 variant=rspamd

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