Mercurial > masqmail
comparison tests/conf.templ @ 0:08114f7dcc23 0.2.21
this is masqmail-0.2.21 from oliver kurth
author | meillo@marmaro.de |
---|---|
date | Fri, 26 Sep 2008 17:05:23 +0200 |
parents | |
children | 3cb6f383f07e |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:08114f7dcc23 |
---|---|
1 # Example configuration for MasqMail | |
2 # Copyright (C) 1999 Oliver Kurth | |
3 # | |
4 # This program is free software; you can redistribute it and/or modify | |
5 # it under the terms of the GNU General Public License as published by | |
6 # the Free Software Foundation; either version 2 of the License, or | |
7 # (at your option) any later version. | |
8 | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU General Public License for more details. | |
13 | |
14 # You should have received a copy of the GNU General Public License | |
15 # along with this program; if not, write to the Free Software | |
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
17 # | |
18 | |
19 # this is just for testing. In real life it does not make much sense: | |
20 run_as_user=true | |
21 | |
22 # set debug level (0 = no debugging, 5 = very much, 6 = too much) | |
23 # can also be set with the -d option on the cmd line | |
24 debug_level = 5 | |
25 | |
26 do_queue = false | |
27 | |
28 # The name with which MasqMail identifies itself to others: | |
29 host_name="blue.patchwork.net" | |
30 | |
31 # Hosts considered local: | |
32 #local_hosts="localhost;blue.patchwork.net;blue" | |
33 local_hosts="localhost" | |
34 | |
35 # Nets considered local, for immediate delivery attempts: | |
36 # ALL hosts not included in either local_host or local_nets are | |
37 # considered to be 'outside', meaning that messages to them will be queued | |
38 local_nets="SMTP_HOST" | |
39 | |
40 # accept connections on these interfaces: | |
41 listen_addresses="localhost:2525" | |
42 | |
43 # send messages to this port: | |
44 # probably this will also be configurable on host basis | |
45 remote_port=25 | |
46 | |
47 # where MasqMail stores its spool files and other stuff: | |
48 #spool_dir="/var/spool/masqmail" | |
49 spool_dir="." | |
50 | |
51 # where local mail will be written to: | |
52 #mail_dir="/var/spool/mail" | |
53 mail_dir="." | |
54 | |
55 # use syslogd for logs? | |
56 use_syslog=false | |
57 | |
58 # directory for log files if not using syslogd: | |
59 #log_dir="/var/masqmail" | |
60 log_dir="." | |
61 | |
62 # special routes: | |
63 | |
64 connect_route.GWDG = "src/gwdg.route" | |
65 connect_route.Argon = "src/argon.route" | |
66 |