]> git.pld-linux.org Git - packages/exim.git/blob - exim-conf.patch
- Added example of rbl_domains with current server names.
[packages/exim.git] / exim-conf.patch
1 --- exim.conf.orig      Mon Jun 18 13:03:23 2001
2 +++ exim.conf   Sat Jun 30 13:10:36 2001
3 @@ -106,7 +106,7 @@
4  # calling its own SMTP port, is locked out by default. If you want to permit
5  # relaying from the local host, you should set
6  #
7 -# host_accept_relay = localhost
8 +host_accept_relay = localhost
9  #
10  # If you want to permit relaying through your host from certain hosts or IP
11  # networks, you need to set the option appropriately, for example
12 @@ -172,7 +172,7 @@
13  
14  # rbl_domains = rbl.maps.vix.com
15  # rbl_domains = rbl.maps.vix.com:dul.maps.vix.com
16 -
17 +# rbl_domains = blackholes.mail-abuse.org:relays.mail-abuse.org
18  
19  # If you want Exim to support the "percent hack" for all your local domains,
20  # uncomment the following line. This is the feature by which mail addressed
21 @@ -196,6 +196,17 @@
22  
23  timeout_frozen_after = 7d
24  
25 +# This option unfrozes frozen messages after specified time. Some critical
26 +# situations can be temporaty (such as DNS failures).
27 +
28 +auto_thaw = 12h
29 +
30 +# This emulates sendmails "newaliases". Keep in mind that the alias
31 +# transport does use lsearch by default. remember to change this,
32 +# if you want to use DBM-Lookups.
33 +
34 +bi_command=/usr/bin/newaliases
35 +
36  end
37  
38  
39 @@ -224,9 +235,10 @@
40  # particular group instead of using the sticky bit. The commented options below
41  # show how this can be done.
42  
43 +
44  local_delivery:
45    driver = appendfile
46 -  file = /var/mail/$local_part
47 +  file = ${home}/Mail/Mailbox
48    delivery_date_add
49    envelope_to_add
50    return_path_add
51 @@ -241,6 +253,21 @@
52  # to complete normally. You can set different transports for aliases and
53  # forwards if you want to - see the references to address_pipe in the directors
54  # section below.
55 +# Modification by Florian Wallner <wallner@speed-link.de> make use of
56 +# procmail as director if a user has a .procmailrc to avoid breaking
57 +# something that worked before.
58 +
59 +procmail:
60 +  driver = pipe
61 +  command = "/usr/bin/procmail -d ${local_part}"
62 +#  return_path_add
63 +#  delivery_date_add
64 +#  envelope_to_add
65 +#  check_string = "From "
66 +#  escape_string = ">From "
67 +  user = $local_part
68 +#  group = mail
69 +#  group = $local_part
70  
71  address_pipe:
72    driver = pipe
73 @@ -292,9 +319,9 @@
74  
75  system_aliases:
76    driver = aliasfile
77 -  file = /etc/aliases
78 -  search_type = lsearch
79 -# user = exim
80 +  file = /var/spool/exim/db/aliases
81 +  search_type = dbm
82 +  user = exim
83    file_transport = address_file
84    pipe_transport = address_pipe
85  
86 @@ -331,6 +358,13 @@
87  
88  
89  # This director matches local user mailboxes.
90 +
91 +
92 +procmail:
93 +  driver = localuser
94 +  require_files = ${local_part}:${home}/.procmailrc
95 +  transport = procmail
96 +
97  
98  localuser:
99    driver = localuser
This page took 0.054374 seconds and 4 git commands to generate.