forked from masui/QuickML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquickmlrc.sample.in
52 lines (41 loc) · 1.09 KB
/
quickmlrc.sample.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- mode: ruby -*-
Config = {
:user => "%USER%",
:group => "%GROUP%",
:port => 25,
:bind_address => "0.0.0.0",
:smtp_host => 'mail.example.net',
:smtp_port => 25,
:domain => 'example.net',
:postmaster => "[email protected]",
:info_url => "http://QuickML.com/",
:data_dir => '%LOCALSTATEDIR%',
:pid_file => '%PIDFILE%',
:log_file => '%LOGFILE%',
:verbose_mode => true,
:max_members => 100,
:max_mail_length => 100 * 1024,
:ml_life_time => 86400 * 31,
:ml_alert_time => 86400 * 30,
:auto_unsubscribe_count => 5,
:sweep_interval => 3600,
:max_threads => 10,
:timeout => 120,
:use_qmail_verp => false,
:confirm_ml_creation => false, # for confirming ML creation. (experimental)
# :message_catalog => nil # for English messages
:message_catalog => '%DATADIR%/messages.ja',
:creator_check => false,
:creator_addresses => [
'^.+@example\.net$',
],
:member_check => false,
:member_addresses => [
'^.+@example\.net$',
],
:sender_check => false,
:sender_addresses => [
'^.+@example\.net$',
],
:sendhook_cmd => '',
}