Revert "increase spam message size limit"
[hcoop/config/exim.git] / conf.d / router / 400_exim4-config_system_aliases
1
2 ### router/400_exim4-config_system_aliases
3 #################################
4
5 # This router handles aliasing using a traditional /etc/aliases file.
6 #
7 ##### NB You must ensure that /etc/aliases exists. It used to be the case
8 ##### NB that every Unix had that file, because it was the Sendmail default.
9 ##### NB These days, there are systems that don't have it. Your aliases
10 ##### NB file should at least contain an alias for "postmaster".
11 #
12 # This router handles the local part in a case-insensitive way which
13 # satisfies the RFCs requirement that postmaster be reachable regardless
14 # of case. If you decide to handle /etc/aliases in a caseful way, you
15 # need to make arrangements for a caseless postmaster.
16 #
17 # Delivery to arbitrary directories, files, and piping to programs in
18 # /etc/aliases is disabled per default.
19 # If that is a problem for you, see
20 # /usr/share/doc/exim4-base/README.Debian.gz
21 # for explanation and some workarounds.
22
23 # hcoop-change: unix_domains instead of local_domains
24
25 system_aliases:
26 debug_print = "R: system_aliases for $local_part@$domain"
27 driver = redirect
28 domains = +unix_domains
29 allow_fail
30 allow_defer
31 data = ${lookup{$local_part}lsearch{/etc/aliases}}
32 .ifdef SYSTEM_ALIASES_USER
33 user = SYSTEM_ALIASES_USER
34 .endif
35 .ifdef SYSTEM_ALIASES_GROUP
36 group = SYSTEM_ALIASES_GROUP
37 .endif
38 .ifdef SYSTEM_ALIASES_FILE_TRANSPORT
39 file_transport = SYSTEM_ALIASES_FILE_TRANSPORT
40 .endif
41 .ifdef SYSTEM_ALIASES_PIPE_TRANSPORT
42 pipe_transport = SYSTEM_ALIASES_PIPE_TRANSPORT
43 .endif
44 .ifdef SYSTEM_ALIASES_DIRECTORY_TRANSPORT
45 directory_transport = SYSTEM_ALIASES_DIRECTORY_TRANSPORT
46 .endif