Get mail delivery to logs@mire.hcoop.net and logs@deleuze.hcoop.net working
[hcoop/zz_old/config/exim4-hopper.git] / conf.d / router / 400_exim4-config_system_aliases
CommitLineData
725c9874 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#
d2b0a567 17# Delivery to arbitrary directories, files, and piping to programs in
18# /etc/aliases is disabled per default.
725c9874 19# If that is a problem for you, see
d2b0a567 20# /usr/share/doc/exim4-base/README.Debian.gz
725c9874 21# for explanation and some workarounds.
725c9874 22
cdc4389f 23# hcoop-change: Look up this stuff in /etc/aliases.local for now,
24# until Adam gets back to me.
11dd947c 25
725c9874 26system_aliases:
27 debug_print = "R: system_aliases for $local_part@$domain"
28 driver = redirect
cdc4389f 29 domains = +unix_domains
725c9874 30 allow_fail
31 allow_defer
cdc4389f 32 data = ${lookup{$local_part}lsearch{/etc/aliases.local}}
725c9874 33 .ifdef SYSTEM_ALIASES_USER
34 user = SYSTEM_ALIASES_USER
35 .endif
36 .ifdef SYSTEM_ALIASES_GROUP
37 group = SYSTEM_ALIASES_GROUP
38 .endif
39 .ifdef SYSTEM_ALIASES_FILE_TRANSPORT
40 file_transport = SYSTEM_ALIASES_FILE_TRANSPORT
41 .endif
42 .ifdef SYSTEM_ALIASES_PIPE_TRANSPORT
43 pipe_transport = SYSTEM_ALIASES_PIPE_TRANSPORT
44 .endif
45 .ifdef SYSTEM_ALIASES_DIRECTORY_TRANSPORT
46 directory_transport = SYSTEM_ALIASES_DIRECTORY_TRANSPORT
47 .endif