]> git.pld-linux.org Git - packages/exim.git/blame - exim-conf.patch
- Patch for default config file.
[packages/exim.git] / exim-conf.patch
CommitLineData
03c2986b 1--- exim.conf.orig Fri Jan 19 10:32:07 2001
2+++ exim.conf Wed May 16 19:50:20 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@@ -196,6 +196,11 @@
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
20+
21 end
22
23
24@@ -224,6 +229,17 @@
25 # particular group instead of using the sticky bit. The commented options below
26 # show how this can be done.
27
28+
29+procmail:
30+ driver = pipe
31+ command = "/usr/bin/procmail -d ${local_part}"
32+ return_path_add
33+ check_string = "From "
34+ escape_string = ">From "
35+ user = $local_part
36+ group = $local_part
37+
38+
39 local_delivery:
40 driver = appendfile
41 file = /var/mail/$local_part
42@@ -241,6 +257,21 @@
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
64@@ -292,9 +323,9 @@
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
77@@ -331,6 +362,13 @@
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 1.114713 seconds and 4 git commands to generate.