exim: Add the SNT MX servers to the trusted list.
[matthijs/servers/drsnuggles.git] / etc / exim4 / conf.d / main / main_config
1 ######################################################################
2 #                    MAIN CONFIGURATION SETTINGS                     #
3 ######################################################################
4
5 # LDAP server to use for main lookups
6 LDAPSERVER=ldap://ldap.drsnuggles.stderr.nl:389
7 LDAPBASE=dc=drsnuggles,dc=stderr,dc=nl
8
9 # List of virtual domains for which we deliver to any address that happens to
10 # be configured in the LDAP directory.
11 domainlist virtual_domains = stdin.nl : stderr.nl : stdout.nl : blues-brothers.eu : foresightsecurity.nl : hekjelarp.nl : mkit.nl : chimara-if.org
12 # List of real hosts for which we deliver mail to real users.
13 domainlist real_domains = *.drsnuggles.stderr.nl : drsnuggles.stderr.nl
14 # The list of domains for which we handle mail ourselves
15 domainlist local_domains = +virtual_domains : +real_domains
16
17 # List of recipient domains to relay _to_. Use this list if you're -
18 # for example - fallback MX or mail gateway for domains.
19 domainlist relay_to_domains = fizzgig.eu : fizzgig.nl
20
21 # Relay messages for all other vservers and the host. We would specify
22 # +real_domains here, but mixing domainlists and hostlist doesn't seem to work
23 # at first glance.
24 hostlist relay_from_hosts = *.drsnuggles.stderr.nl : drsnuggles.stderr.nl 
25
26 # Don't reject spam from these hosts, since they are known dumb, but trusted
27 # relays. They will only send rejects to the wrong people.
28 hostlist dont_reject_spam_hosts = *.utsp.utwente.nl : mx*.snt.utwente.nl
29
30 # Use this domain on any unqualified addresses that get submitted. Since this
31 # can come from any vserver, just use our main hostname.
32 qualify_domain = drsnuggles.stderr.nl
33
34 # Let exim know how the rest of the world will try to reach us. The
35 # stmp transport also uses this macro for its helo command.
36 EXTERNAL_HOSTNAME = drsnuggles.stderr.nl
37 hosts_treat_as_local = EXTERNAL_HOSTNAME
38
39 # The gecos field in /etc/passwd holds not only the name. see passwd(5).
40 gecos_pattern = ^([^,:]*)
41 gecos_name = $1
42
43 # Defines the access control list that is run when an
44 # SMTP MAIL command is received.
45 acl_smtp_mail = acl_check_mail
46 # Defines the access control list that is run when an
47 # SMTP RCPT command is received.
48 acl_smtp_rcpt = acl_check_rcpt
49 # Defines the access control list that is run when an
50 # SMTP DATA command is received.
51 acl_smtp_data = acl_check_data
52
53
54 # Do a reverse DNS lookup on all incoming IP calls, in order to get the
55 # true host name.
56 host_lookup = *
57
58 # Queue handling
59 #
60 # Drop undeliverable bounces after this time
61 ignore_bounce_errors_after = 2d
62 # Bounce frozen messages after this time
63 timeout_frozen_after = 7d
64 # Tell postmaster about freezing
65 freeze_tell = postmaster
66 # Define spool directory
67 spool_directory = /var/spool/exim4
68 # Don't send out delivery delay warnings (by default once every 24h).
69 delay_warning =
70
71 # Log subjects, for easy tracing of messages and peer dn on TLS connections.
72 # Don't log complete headers on rejects, that clutters the log.
73 log_selector = +subject +tls_peerdn +tls_certificate_verified -rejected_header
74
75 # vim: set sts=2 expandtab sw=2 ai: