]> git.pld-linux.org Git - packages/exim.git/blob - exim-conf.patch
- fixed time argument
[packages/exim.git] / exim-conf.patch
1 --- exim.conf.orig      Fri Jan 19 10:32:07 2001
2 +++ exim.conf   Fri May 18 21:41:03 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,9 +229,10 @@
25  # particular group instead of using the sticky bit. The commented options below
26  # show how this can be done.
27  
28 +
29  local_delivery:
30    driver = appendfile
31 -  file = /var/mail/$local_part
32 +  file = ${home}/Mail/Mailbox
33    delivery_date_add
34    envelope_to_add
35    return_path_add
36 @@ -241,6 +247,21 @@
37  # to complete normally. You can set different transports for aliases and
38  # forwards if you want to - see the references to address_pipe in the directors
39  # section below.
40 +# Modification by Florian Wallner <wallner@speed-link.de> make use of
41 +# procmail as director if a user has a .procmailrc to avoid breaking
42 +# something that worked before.
43 +
44 +procmail:
45 +  driver = pipe
46 +  command = "/usr/bin/procmail -d ${local_part}"
47 +#  return_path_add
48 +#  delivery_date_add
49 +#  envelope_to_add
50 +#  check_string = "From "
51 +#  escape_string = ">From "
52 +  user = $local_part
53 +#  group = mail
54 +#  group = $local_part
55  
56  address_pipe:
57    driver = pipe
58 @@ -292,9 +313,9 @@
59  
60  system_aliases:
61    driver = aliasfile
62 -  file = /etc/aliases
63 -  search_type = lsearch
64 -# user = exim
65 +  file = /var/spool/exim/db/aliases
66 +  search_type = dbm
67 +  user = exim
68    file_transport = address_file
69    pipe_transport = address_pipe
70  
71 @@ -331,6 +352,13 @@
72  
73  
74  # This director matches local user mailboxes.
75 +
76 +
77 +procmail:
78 +  driver = localuser
79 +  require_files = ${local_part}:${home}/.procmailrc
80 +  transport = procmail
81 +
82  
83  localuser:
84    driver = localuser
This page took 0.059859 seconds and 3 git commands to generate.