4 |
- |
1 |
##############################################################
|
|
|
2 |
# SPOOLER SETTINGS
|
|
|
3 |
|
|
|
4 |
# Outgoing mailserver name or IP address
|
|
|
5 |
smtp_server = smtp.cox.net
|
|
|
6 |
|
|
|
7 |
# Port number for outgoing mailserver
|
|
|
8 |
smtp_port = 25
|
|
|
9 |
|
|
|
10 |
# Server unix socket location
|
59 |
- |
11 |
#server_socket = file:///var/run/zarafad/server.sock
|
4 |
- |
12 |
|
|
|
13 |
# drop privileges and run the process as this user
|
59 |
- |
14 |
#run_as_user = zarafa
|
4 |
- |
15 |
|
|
|
16 |
# drop privileges and run the process as this group
|
59 |
- |
17 |
#run_as_group = zarafa
|
4 |
- |
18 |
|
|
|
19 |
# create a pid file for stopping the service via the init.d scripts
|
59 |
- |
20 |
#pid_file = /var/run/zarafad/spooler.pid
|
4 |
- |
21 |
|
|
|
22 |
# run server in this path (when not using the -F switch)
|
59 |
- |
23 |
#running_path = /var/lib/zarafa
|
4 |
- |
24 |
|
|
|
25 |
# create memory coredumps upon crash in the running_path directory
|
|
|
26 |
coredump_enabled = no
|
|
|
27 |
|
43 |
- |
28 |
# for temporary files
|
|
|
29 |
# consider mounting a `tmpfs' underneath this path (wherever you
|
|
|
30 |
# point it to)
|
|
|
31 |
tmp_path = /tmp
|
|
|
32 |
|
4 |
- |
33 |
##############################################################
|
|
|
34 |
# SPOOLER LOG SETTINGS
|
|
|
35 |
|
|
|
36 |
# Logging method (syslog, file)
|
|
|
37 |
log_method = file
|
|
|
38 |
|
59 |
- |
39 |
# Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
|
|
|
40 |
#log_level = 3
|
4 |
- |
41 |
|
|
|
42 |
# Logfile for log_method = file, use '-' for stderr
|
|
|
43 |
log_file = /var/log/zarafa/spooler.log
|
|
|
44 |
|
|
|
45 |
# Log timestamp - prefix each log line with timestamp in 'file' logging mode
|
|
|
46 |
log_timestamp = 1
|
|
|
47 |
|
59 |
- |
48 |
# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
|
|
|
49 |
#log_buffer_size = 0
|
4 |
- |
50 |
|
|
|
51 |
##############################################################
|
|
|
52 |
# SPOOLER SSL LOGIN SETTINGS
|
|
|
53 |
#
|
|
|
54 |
# Note: server_socket must be set to https://servername:portname/zarafa
|
|
|
55 |
# to use this type of login method
|
|
|
56 |
|
|
|
57 |
# Login to the Zarafa server using this SSL Key
|
23 |
- |
58 |
#sslkey_file = /etc/zarafa/ssl/spooler.pem
|
4 |
- |
59 |
|
|
|
60 |
# The password of the SSL Key
|
23 |
- |
61 |
#sslkey_pass = replace-with-server-cert-password
|
4 |
- |
62 |
|
|
|
63 |
##############################################################
|
|
|
64 |
# SPOOLER THREAD SETTINGS
|
|
|
65 |
|
|
|
66 |
# Maximum number of threads used to send outgoing messages
|
|
|
67 |
# Default: 5
|
|
|
68 |
max_threads = 5
|
|
|
69 |
|
|
|
70 |
##############################################################
|
|
|
71 |
# SPOOLER FAXING SETTINGS
|
|
|
72 |
|
|
|
73 |
# When sending an email that must go to a fax address, the address
|
|
|
74 |
# will be rewritten to <phonenumber>@<fax_domain>
|
|
|
75 |
fax_domain = fax.local
|
|
|
76 |
|
|
|
77 |
# If the received number starts with a '+', it will be replaced by
|
|
|
78 |
# the fax_international value.
|
|
|
79 |
# eg. +3112345678@fax.local will be rewritten to 003112345678@fax.local
|
|
|
80 |
fax_international = 00
|
|
|
81 |
|
|
|
82 |
##############################################################
|
|
|
83 |
# SPOOLER DELEGATE SETTINGS
|
|
|
84 |
|
|
|
85 |
# Set this value to 'yes' to let the spooler always send emails with
|
|
|
86 |
# delegates (other user than yourself in the From: header)
|
|
|
87 |
# In installations before 6.20, this value was always 'yes'.
|
|
|
88 |
# IMPORTANT: This feature overrides "send-as" functionality.
|
|
|
89 |
always_send_delegates = no
|
|
|
90 |
|
|
|
91 |
# Set this value to 'no' if you do NOT want to allow redirected e-mails
|
|
|
92 |
# being sent with their original 'FROM' header
|
|
|
93 |
allow_redirect_spoofing = yes
|
|
|
94 |
|
|
|
95 |
# Copies the sent mail of delegates and send-as mails in the
|
|
|
96 |
# "Sent Items" folder of the representer.
|
|
|
97 |
copy_delegate_mails = yes
|
|
|
98 |
|
|
|
99 |
# Allow to forward and sent a meeting request as delegate Zarafa and
|
|
|
100 |
# SMTP user.
|
|
|
101 |
allow_delegate_meeting_request = yes
|
|
|
102 |
|
|
|
103 |
# Allow users to send email to the 'everyone' group
|
|
|
104 |
allow_send_to_everyone = yes
|
|
|
105 |
|
|
|
106 |
##############################################################
|
|
|
107 |
# SPOOLER OUTPUT SETTINGS
|
|
|
108 |
|
|
|
109 |
# Set this value to 'yes' to always send meeting request information
|
|
|
110 |
# using TNEF method (winmail.dat attachments).
|
|
|
111 |
# Otherwise, the meeting request information is sent using
|
|
|
112 |
# iCalendar (calendar.ics attachment).
|
|
|
113 |
# Mail bodies created in RTF text format will also use TNEF. To force
|
|
|
114 |
# HTML for these e-mails, set this to 'minimal'.
|
|
|
115 |
always_send_tnef = no
|
|
|
116 |
|
|
|
117 |
# Send all e-mail always using the UTF-8 charset.
|
|
|
118 |
# Normally, the requested charset is used, which can be any charset.
|
|
|
119 |
always_send_utf8 = no
|
|
|
120 |
|
|
|
121 |
# The us-ascii charset will be upgraded to this charset, to allow more
|
|
|
122 |
# use of high-characters. Not used when always_send_utf8 is enabled.
|
|
|
123 |
charset_upgrade = windows-1252
|
|
|
124 |
|
|
|
125 |
# Request SMTP Delivery Status Notifications if the MTA support it
|
|
|
126 |
enable_dsn = yes
|
|
|
127 |
|
|
|
128 |
##############################################################
|
|
|
129 |
# SPOOLER GROUP EXPANSION
|
|
|
130 |
|
|
|
131 |
# Set this value to 'yes' if groups should be expanded to their
|
|
|
132 |
# members; This means that the receiving party will see the names
|
|
|
133 |
# of the group members in the To: header for example. If set to
|
|
|
134 |
# 'no', the name of the group will appear in the headers.
|
|
|
135 |
#
|
|
|
136 |
# Note: groups with email addresses are never expanded
|
|
|
137 |
expand_groups = no
|
|
|
138 |
|
|
|
139 |
##############################################################
|
|
|
140 |
# SPOOLER ARCHIVING SETTINGS
|
|
|
141 |
|
|
|
142 |
# Enable archive_on_send to automatically archive all outgoing
|
|
|
143 |
# messages.
|
|
|
144 |
# This will do nothing if no archive is attached to the source mailbox.
|
|
|
145 |
archive_on_send = no
|
|
|
146 |
##############################################################
|
|
|
147 |
# SPOOLER PLUGIN SETTINGS
|
|
|
148 |
|
|
|
149 |
# Enable the spooler plugin framework
|
|
|
150 |
plugin_enabled = yes
|
|
|
151 |
|
|
|
152 |
# Path to the spooler plugin manager
|
|
|
153 |
plugin_manager_path = /usr/share/zarafa-spooler/python
|
|
|
154 |
|
|
|
155 |
# Path to the activated spooler plugins.
|
|
|
156 |
# This folder contains symlinks to the zarafa plugins and custom scripts. The plugins are
|
|
|
157 |
# installed in '/usr/share/zarafa-spooler/python/plugins/'. To activate a plugin create a symbolic
|
|
|
158 |
# link in the 'plugin_path' directory.
|
|
|
159 |
#
|
|
|
160 |
# Example:
|
|
|
161 |
# $ ln -s /usr/share/zarafa-spooler/python/plugins/disclaimer.py /var/lib/zarafa/spooler/plugins/disclaimer.py
|
|
|
162 |
plugin_path = /var/lib/zarafa/spooler/plugins
|