Subversion Repositories configs

Rev

Rev 23 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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