Subversion Repositories configs

Rev

Rev 23 | Rev 59 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
##############################################################
2
# DAGENT SETTINGS
3
 
4
# connection to the zarafa server
5
server_socket	=	file:///var/run/zarafa
6
 
7
##############################################################
8
# DAGENT SSL LOGIN SETTINGS
9
#
10
# Note: server_socket must be set to https://servername:portname/zarafa
11
#       to use this type of login method
12
 
13
# Login to the Zarafa server using this SSL Key
23 - 14
#sslkey_file = /etc/zarafa/ssl/dagent.pem
4 - 15
 
16
# The password of the SSL Key
23 - 17
#sslkey_pass = replace-with-dagent-cert-password
4 - 18
 
19
##############################################################
20
# DAGENT LOG SETTINGS
21
 
22
# Logging method (syslog, file)
23
log_method	=	file
24
 
25
# Loglevel (0=no logging, 5=full logging)
26
log_level	=	2
27
 
28
# Logfile for log_method = file, use '-' for stderr
29
log_file = /var/log/zarafa/dagent.log
30
 
31
# Log timestamp - prefix each log line with timestamp in 'file' logging mode
32
log_timestamp	=	1
33
 
34
# Log raw message to a file
35
log_raw_message = no
36
 
37
# Log raw messages path
43 - 38
# consider mounting a `tmpfs' underneath this path
39
# note that MySQL may store (large) files under /tmp
4 - 40
log_raw_message_path = /tmp
41
 
43 - 42
# Buffer logging in what sized blocks.
43
# Bigger buffers is better for the performance but it gives lag
44
# when running e.g. multitail or 'tail -f' on the log-file. If
45
# you want to directly see what is happing, set this to e.g. 1.
46
# So when debugging: make it a small value, else set it to
47
# 4096 or more.
48
log_buffer_size  = 4096
49
 
50
# for temporary files
51
# consider mounting a `tmpfs' underneath this path (wherever you
52
# point it to)
53
tmp_path = /tmp
54
 
4 - 55
##############################################################
56
# DAGENT LMTP SETTINGS
57
#  start dagent with -d to create an lmtp daemon of the zarafa-dagent
58
 
59
# binding address for LMTP daemon
60
# change to 0.0.0.0 if you require connections over the network
61
server_bind = 127.0.0.1
62
 
63
# LMTP port to listen on for LMTP connections
64
lmtp_port = 2003
65
 
66
# Maximum LMTP threads that ca be running simultaneously
67
# This is also limited by your SMTP server. (20 is the postfix default concurrency limit)
68
lmtp_max_threads = 20
69
 
70
# run as specific user in LMTP mode.
71
#   make sure this user is listed in local_admin_users in your zarafa server config
72
#   or use SSL connections with certificates to login
73
run_as_user = zarafa
74
 
75
# run as specific group in LMTP mode.
76
run_as_group = zarafa
77
 
78
# control pid file
79
pid_file = /var/run/zarafa-dagent.pid
80
 
81
# create memory coredumps upon crash in the running_path directory
82
coredump_enabled = no
83
 
84
# The following e-mail header will mark the mail as spam, so the mail
85
# is placed in the Junk Mail folder, and not the Inbox.
86
# The name is case insensitive.
87
# set to empty to not use this detection scheme.
88
spam_header_name = X-Spam-Status
89
 
90
# If the above header is found, and contains the following value
91
# the mail will be considered as spam.
92
# Notes:
93
#  - The value is case insensitive.
94
#  - Leading and trailing spaces are stripped.
95
#  - The word 'bayes' also contains the word 'yes'.
96
spam_header_value = Yes,
97
 
98
##############################################################
99
# DAGENT ARCHIVING SETTINGS
100
 
101
# Enable archive_on_delivery to automatically archive all incoming
102
# messages on delivery.
103
# This will do nothing if no archive is attached to the target mailbox.
104
archive_on_delivery = no
105
 
106
##############################################################
107
# DAGENT PLUGIN SETTINGS
108
 
109
# Enable the dagent plugin framework
110
plugin_enabled = yes
111
 
112
# Path to the dagent plugin manager
113
plugin_manager_path = /usr/share/zarafa-dagent/python
114
 
115
# Path to the activated dagent plugins.
116
#   This folder contains symlinks to the zarafa plugins and custom scripts. The plugins are
117
#   installed in '/usr/share/zarafa-dagent/python/plugins/'. To activate a plugin create a symbolic
118
#   link in the 'plugin_path' directory.
119
#
120
# Example:
121
#  $ ln -s /usr/share/zarafa-dagent/python/plugins/BMP2PNG.py /var/lib/zarafa/dagent/plugins/BMP2PNG.py
122
plugin_path = /var/lib/zarafa/dagent/plugins
123
 
124
##############################################################
125
# DAGENT RULE SETTINGS
126
 
127
# Enable the addition of X-Zarafa-Rule-Action headers on messages
128
# that have been forwarded or replied by a rule.
129
# Default: yes
130
set_rule_headers = yes
131
 
132
# Enable this option to prevent rules to cause a loop. An e-mail can only be forwarded
133
# once. When this option is enabled, the set_rule_headers option must also be enabled.
134
# Default: no
135
no_double_forward = no
136
 
5 - 137
# Some emails do not contain any charset information or specify us-ascii even though it
138
# isn't. In both cases, dagent will assume the following charset is used. Note that this
139
# implies that the given charset should be a superset of us-ascii (most charsets are)
140
default_charset = iso-8859-15
141