]> git.pld-linux.org Git - packages/exim.git/blame - exim-conf.patch
- update ipv6.patch
[packages/exim.git] / exim-conf.patch
CommitLineData
e0db343b 1--- exim.conf.orig Mon Jun 18 13:03:23 2001
2+++ exim.conf Sat Jun 30 13:10:36 2001
03c2986b 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
e0db343b 12@@ -196,6 +196,17 @@
03c2986b 13
14 timeout_frozen_after = 7d
15
16+# This option unfrozes frozen messages after specified time. Some critical
17+# situations can be temporaty (such as DNS failures).
18+
19+auto_thaw = 12h
e0db343b 20+
21+# This emulates sendmails "newaliases". Keep in mind that the alias
22+# transport does use lsearch by default. remember to change this,
23+# if you want to use DBM-Lookups.
24+
25+bi_command=/usr/bin/newaliases
03c2986b 26+
27 end
28
29
e0db343b 30@@ -224,9 +235,10 @@
03c2986b 31 # particular group instead of using the sticky bit. The commented options below
32 # show how this can be done.
33
03c2986b 34+
35 local_delivery:
36 driver = appendfile
b8875680 37- file = /var/mail/$local_part
38+ file = ${home}/Mail/Mailbox
39 delivery_date_add
40 envelope_to_add
41 return_path_add
e0db343b 42@@ -241,6 +253,21 @@
03c2986b 43 # to complete normally. You can set different transports for aliases and
44 # forwards if you want to - see the references to address_pipe in the directors
45 # section below.
46+# Modification by Florian Wallner <wallner@speed-link.de> make use of
47+# procmail as director if a user has a .procmailrc to avoid breaking
48+# something that worked before.
49+
50+procmail:
51+ driver = pipe
52+ command = "/usr/bin/procmail -d ${local_part}"
53+# return_path_add
54+# delivery_date_add
55+# envelope_to_add
56+# check_string = "From "
57+# escape_string = ">From "
58+ user = $local_part
59+# group = mail
60+# group = $local_part
61
62 address_pipe:
63 driver = pipe
e0db343b 64@@ -292,9 +319,9 @@
03c2986b 65
66 system_aliases:
67 driver = aliasfile
68- file = /etc/aliases
69- search_type = lsearch
70-# user = exim
71+ file = /var/spool/exim/db/aliases
72+ search_type = dbm
73+ user = exim
74 file_transport = address_file
75 pipe_transport = address_pipe
76
e0db343b 77@@ -331,6 +358,13 @@
03c2986b 78
79
80 # This director matches local user mailboxes.
81+
82+
83+procmail:
84+ driver = localuser
85+ require_files = ${local_part}:${home}/.procmailrc
86+ transport = procmail
87+
88
89 localuser:
90 driver = localuser
This page took 0.096531 seconds and 4 git commands to generate.