Make exim use .public/.forward instead of .forward
[hcoop/zz_old/config/exim4-hopper.git] / conf.d / router / 600_exim4-config_userforward
CommitLineData
725c9874 1
d2b0a567 2### router/600_exim4-config_userforward
725c9874 3#################################
4
5# This router handles forwarding using traditional .forward files in users'
d2b0a567 6# home directories. It also allows mail filtering with a forward file
7# starting with the string "# Exim filter" or "# Sieve filter".
725c9874 8#
9# The no_verify setting means that this router is skipped when Exim is
10# verifying addresses. Similarly, no_expn means that this router is skipped if
11# Exim is processing an EXPN command.
12#
13# The check_ancestor option means that if the forward file generates an
14# address that is an ancestor of the current one, the current one gets
15# passed on instead. This covers the case where A is aliased to B and B
16# has a .forward file pointing to A.
17#
18# The four transports specified at the end are those that are used when
19# forwarding generates a direct delivery to a directory, or a file, or to a
20# pipe, or sets up an auto-reply, respectively.
11dd947c 21
639f204c 22# hcoop-change: Use unix_domains rather than local_domains. Also, use
23# .public/.forward rather than .forward.
11dd947c 24
725c9874 25userforward:
26 debug_print = "R: userforward for $local_part@$domain"
27 driver = redirect
11dd947c 28 domains = +unix_domains
725c9874 29 check_local_user
639f204c 30 file = $home/.public/.forward
31 require_files = $local_part:$home/.public/.forward
725c9874 32 no_verify
33 no_expn
34 check_ancestor
35 allow_filter
d2b0a567 36 forbid_smtp_code = true
725c9874 37 directory_transport = address_directory
38 file_transport = address_file
39 pipe_transport = address_pipe
40 reply_transport = address_reply
41 skip_syntax_errors
42 syntax_errors_to = real-$local_part@$domain
43 syntax_errors_text = \
44 This is an automatically generated message. An error has\n\
45 been found in your .forward file. Details of the error are\n\
46 reported below. While this error persists, you will receive\n\
47 a copy of this message for every message that is addressed\n\
48 to you. If your .forward file is a filter file, or if it is\n\
49 a non-filter file containing no valid forwarding addresses,\n\
50 a copy of each incoming message will be put in your normal\n\
51 mailbox. If a non-filter file contains at least one valid\n\
52 forwarding address, forwarding to the valid addresses will\n\
53 happen, and those will be the only deliveries that occur.
54