1 | ############################################################## |
---|
2 | # SPOOLER SETTINGS |
---|
3 | |
---|
4 | # Outgoing mailserver name or IP address |
---|
5 | # Use 127.0.0.1 to disable virusscanning for webmail. (not recommended) |
---|
6 | smtp_server = 127.0.0.3 |
---|
7 | |
---|
8 | |
---|
9 | # drop privileges and run the process as this user |
---|
10 | run_as_user = zarafa |
---|
11 | |
---|
12 | # drop privileges and run the process as this group |
---|
13 | run_as_group = zarafa |
---|
14 | |
---|
15 | |
---|
16 | # run server in this path (when not using the -F switch) |
---|
17 | running_path = / |
---|
18 | |
---|
19 | # The us-ascii charset will be upgraded to this charset, to allow more |
---|
20 | # use of high-characters. Not used when always_send_utf8 is enabled. |
---|
21 | charset_upgrade = windows-1252 |
---|
22 | |
---|
23 | # Request SMTP Delivery Status Notifications if the MTA support it |
---|
24 | enable_dsn = yes |
---|
25 | |
---|
26 | ############################################################## |
---|
27 | # SPOOLER LOG SETTINGS |
---|
28 | |
---|
29 | # Logging method (syslog, file) |
---|
30 | log_method = file |
---|
31 | |
---|
32 | # Loglevel (0=no logging, 5=full logging) |
---|
33 | log_level = 3 |
---|
34 | |
---|
35 | # Logfile for log_method = file, use '-' for stderr |
---|
36 | log_file = /var/log/zarafa/spooler.log |
---|
37 | |
---|
38 | # Log timestamp - prefix each log line with timestamp in 'file' logging mode |
---|
39 | log_timestamp = 1 |
---|
40 | |
---|
41 | |
---|
42 | ############################################################## |
---|
43 | # SPOOLER SSL LOGIN SETTINGS |
---|
44 | # |
---|
45 | # Note: server_socket must be set to https://servername:portname/zarafa |
---|
46 | # to use this type of login method |
---|
47 | |
---|
48 | # Login to the Zarafa server using this SSL Key |
---|
49 | sslkey_file = /etc/zarafa/ssl/spooler.pem |
---|
50 | |
---|
51 | # The password of the SSL Key |
---|
52 | sslkey_pass = replace-with-server-cert-password |
---|
53 | |
---|
54 | ############################################################## |
---|
55 | # SPOOLER THREAD SETTINGS |
---|
56 | |
---|
57 | # Maximum number of threads used to send outgoing messages |
---|
58 | # Default: 5 |
---|
59 | max_threads = 5 |
---|
60 | |
---|
61 | ############################################################## |
---|
62 | # SPOOLER FAXING SETTINGS |
---|
63 | |
---|
64 | # When sending an email that must go to a fax address, the address |
---|
65 | # will be rewritten to <phonenumber>@<fax_domain> |
---|
66 | fax_domain = fax.local |
---|
67 | |
---|
68 | # If the received number starts with a '+', it will be replaced by |
---|
69 | # the fax_international value. |
---|
70 | # eg. +3112345678@fax.local will be rewritten to 003112345678@fax.local |
---|
71 | fax_international = 00 |
---|
72 | |
---|
73 | ############################################################## |
---|
74 | # SPOOLER DELEGATE SETTINGS |
---|
75 | |
---|
76 | # Set this value to 'yes' to let the spooler always send emails with |
---|
77 | # delegates (other user than yourself in the From: header) |
---|
78 | # In installations before 6.20, this value was always 'yes' |
---|
79 | always_send_delegates = yes |
---|
80 | |
---|
81 | # This does the same as always_send_delegates, but gets rid of the 'on behalf of' text. |
---|
82 | #always_send_as = yes |
---|
83 | |
---|
84 | # Set this value to 'no' if you do NOT want to allow redirected e-mails |
---|
85 | # being sent with their original 'FROM' header |
---|
86 | allow_redirect_spoofing = yes |
---|
87 | |
---|
88 | # Copies the sent mail of delegates and send-as mails in the |
---|
89 | # "Sent Items" folder of the representer. |
---|
90 | copy_delegate_mails = yes |
---|
91 | |
---|
92 | # Setting this option to no will disallow sending to the everyone group. |
---|
93 | allow_send_to_everyone=yes |
---|
94 | |
---|
95 | ############################################################## |
---|
96 | # SPOOLER MEETING REQUEST SETTINGS |
---|
97 | |
---|
98 | # Set this value to 'yes' to always send meeting request information |
---|
99 | # using TNEF method (winmail.dat attachments) |
---|
100 | # Otherwise, the meeting request information is sent using |
---|
101 | # iCalendar (calendar.ics attachment). |
---|
102 | always_send_tnef = no |
---|
103 | |
---|
104 | ############################################################## |
---|
105 | # SPOOLER GROUP EXPANSION |
---|
106 | |
---|
107 | # Set this value to 'yes' if groups should be expanded to their |
---|
108 | # members; This means that the receiving party will see the names |
---|
109 | # of the group members in the To: header for example. If set to |
---|
110 | # 'no', the name of the group will appear in the headers. |
---|
111 | # |
---|
112 | # Note: groups with email addresses are never expanded |
---|
113 | expand_groups = no |
---|
114 | |
---|
115 | ############################################################## |
---|
116 | # SPOOLER ARCHIVING SETTINGS |
---|
117 | |
---|
118 | # Enable archive_on_send to automatically archive all outgoing |
---|
119 | # messages. |
---|
120 | # This will do nothing if no archive is attached to the source mailbox. |
---|
121 | archive_on_send = no |
---|
122 | |
---|
123 | #################################### |
---|
124 | # SPOOLER PLUGIN SETTINGS |
---|
125 | |
---|
126 | # Enable the spooler plugin framework |
---|
127 | plugin_enabled = no |
---|
128 | # Path to the spooler plugin manager |
---|
129 | plugin_manager_path = /usr/share/zarafa-spooler/python |
---|
130 | # Path to the activated spooler plugins. |
---|
131 | # This folder contains symlinks to the zarafa plugins and custom scripts. The plugins are |
---|
132 | # installed in '/usr/share/zarafa-spooler/python/plugins/'. To activate a plugin create a symbolic |
---|
133 | # link in the 'plugin_path' directory. |
---|
134 | # |
---|
135 | # Example: |
---|
136 | # $ ln -s /usr/share/zarafa-spooler/python/plugins/disclaimer.py /var/lib/zarafa/spooler/plugins/disclaimer.py |
---|
137 | plugin_path = /var/lib/zarafa/spooler/plugins |
---|
138 | |
---|
139 | |
---|