###################################################################### # Runtime configuration file for Exim 4 (Debian Packaging) # ###################################################################### ###################################################################### # /etc/exim4/exim4.conf.template is only used with the non-split # configuration scheme. # /etc/exim4/conf.d/main/01_exim4-config_listmacrosdefs is only used # with the split configuration scheme. # If you find this comment anywhere else, somebody copied it there. # Documentation about the Debian exim4 configuration scheme can be # found in /usr/share/doc/exim4-base/README.Debian.gz. # # Strings like DEBCONFsomethingDEBCONF are replaced by installation # dependent values by update-exim4.conf, the script which builds the # actual configuration from the templates. ###################################################################### ###################################################################### # MAIN CONFIGURATION SETTINGS # ###################################################################### # Just for reference and scripts. # On Debian systems, the main binary is installed as exim4 to avoid # conflicts with the exim 3 packages. exim_path = /usr/sbin/exim4 # Macro defining the main configuration directory. # We do not use absolute paths. .ifndef CONFDIR CONFDIR = /etc/exim4 .endif # This sets a macro DC_minimaldns if dc_minimaldns=true. If # dc_minimaldns=false, this expands to an empty line. .ifndef DC_minimaldns DEBCONFminimaldnsDEBCONF .endif # Create other macros from Debconf. Macros created here are used in # other places in exim config. .ifndef DC_visiblename DC_visiblename=DEBCONFvisiblenameDEBCONF .endif # Create domain and host lists for relay control # '@' refers to 'the name of the local host' # List of domains considered local for exim. Domains not listed here # need to be deliverable remotely. # hcoop-change: comment out #.ifndef MAIN_LOCAL_DOMAINS #MAIN_LOCAL_DOMAINS = DEBCONFlocal_domainsDEBCONF #.endif #domainlist local_domains = MAIN_LOCAL_DOMAINS # List of recipient domains to relay _to_. Use this list if you're - # for example - fallback MX or mail gateway for domains. # hcoop-change: comment out #.ifndef MAIN_RELAY_TO_DOMAINS #MAIN_RELAY_TO_DOMAINS = DEBCONFrelay_domainsDEBCONF #.endif #domainlist relay_to_domains = MAIN_RELAY_TO_DOMAINS # hcoop-change: List of domains that accept mail from local users. # Mail sent to other domains we manage will be transformed into a # local address by /etc/aliases. domainlist unix_domains = deleuze.hcoop.net:localhost # List of sender networks (IP addresses) to _unconditionally_ relay # _for_. If you intend to be SMTP AUTH server, you do not need to enter # anything here. .ifndef MAIN_RELAY_NETS MAIN_RELAY_NETS = DEBCONFrelay_netsDEBCONF .endif hostlist relay_from_hosts = MAIN_RELAY_NETS # Specify the domain you want to be added to all unqualified addresses # here. Unqualified addresses are accepted only from local callers by # default. The recipient_unqualified_hosts option can be used to permit # unqualified addresses from remote sources. # If qualify_domain is not set, the primary_hostname value is used for # qualification. # The ifdef bracket makes sure that an empty debconf value is correctly # translated to "unset". .ifdef DC_visiblename qualify_domain = DC_visiblename .endif # only used for satellite-system .ifndef DCreadhost DCreadhost = DEBCONFreadhostDEBCONF .endif #for satellite and smarthost-systems .ifndef DCsmarthost DCsmarthost = DEBCONFsmarthostDEBCONF .endif # listen on all all interfaces? .ifdef MAIN_LOCAL_INTERFACES local_interfaces = MAIN_LOCAL_INTERFACES .else DEBCONFlistenonpublicDEBCONF .endif .ifndef LOCAL_DELIVERY # The default transport, set in /etc/exim4/update-exim4.conf.conf, # defaulting to mail_spool. See CONFDIR/conf.d/transport/ for possibilities LOCAL_DELIVERY=DEBCONFlocaldeliveryDEBCONF .endif # The gecos field in /etc/passwd holds not only the name. see passwd(5). gecos_pattern = ^([^,:]*) gecos_name = $1 # define a macro DCconfig_smarthost, DCconfig_satellite, etc. we need this # for .ifdef ... .endif .ifndef DCconfig_satellite .ifndef DCconfig_internet .ifndef DCconfig_local .ifndef DCconfig_smarthost DCconfig_DEBCONFconfigtypeDEBCONF = 1 .endif .endif .endif .endif # define macros to be used in acl/30_exim4-config_check_rcpt to check # recipient local parts for strange characters. # This macro definition really should be in # acl/30_exim4-config_check_rcpt but cannot be there due to # http://www.exim.org/bugzilla/show_bug.cgi?id=101 as of exim 4.62. # These macros are documented in acl/30_exim4-config_check_rcpt, # can be changed here or overridden by a locally added configuration # file as described in README.Debian chapter 2.1.2 .ifndef CHECK_RCPT_LOCAL_LOCALPARTS CHECK_RCPT_LOCAL_LOCALPARTS = ^[.] : ^.*[@%!/|`#&?] .endif .ifndef CHECK_RCPT_REMOTE_LOCALPARTS CHECK_RCPT_REMOTE_LOCALPARTS = ^[./|] : ^.*[@%!`#&?] : ^.*/\\.\\./ .endif # always log tls_peerdn as we use TLS for outgoing connects by default # hcoop-change: add +tls_ciper .ifndef MAIN_LOG_SELECTOR MAIN_LOG_SELECTOR = +tls_cipher +tls_peerdn .endif # hcoop-change: use file_transport = address_file for /etc/aliases # delivery, as per old configuration SYSTEM_ALIASES_FILE_TRANSPORT = address_file # hcoop-change: deliver mail to AFS MAILDIR_HOME_MAILDIR_LOCATION = /afs/hcoop.net/common/email