Subversion Repositories configs

Rev

Rev 5 | Go to most recent revision | Details | 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
14
sslkey_file = /etc/zarafa/ssl/dagent.pem
15
 
16
# The password of the SSL Key
17
sslkey_pass = replace-with-dagent-cert-password
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
38
log_raw_message_path = /tmp
39
 
40
##############################################################
41
# DAGENT LMTP SETTINGS
42
#  start dagent with -d to create an lmtp daemon of the zarafa-dagent
43
 
44
# binding address for LMTP daemon
45
# change to 0.0.0.0 if you require connections over the network
46
server_bind = 127.0.0.1
47
 
48
# LMTP port to listen on for LMTP connections
49
lmtp_port = 2003
50
 
51
# Maximum LMTP threads that ca be running simultaneously
52
# This is also limited by your SMTP server. (20 is the postfix default concurrency limit)
53
lmtp_max_threads = 20
54
 
55
# run as specific user in LMTP mode.
56
#   make sure this user is listed in local_admin_users in your zarafa server config
57
#   or use SSL connections with certificates to login
58
run_as_user = zarafa
59
 
60
# run as specific group in LMTP mode.
61
run_as_group = zarafa
62
 
63
# control pid file
64
pid_file = /var/run/zarafa-dagent.pid
65
 
66
# create memory coredumps upon crash in the running_path directory
67
coredump_enabled = no
68
 
69
# The following e-mail header will mark the mail as spam, so the mail
70
# is placed in the Junk Mail folder, and not the Inbox.
71
# The name is case insensitive.
72
# set to empty to not use this detection scheme.
73
spam_header_name = X-Spam-Status
74
 
75
# If the above header is found, and contains the following value
76
# the mail will be considered as spam.
77
# Notes:
78
#  - The value is case insensitive.
79
#  - Leading and trailing spaces are stripped.
80
#  - The word 'bayes' also contains the word 'yes'.
81
spam_header_value = Yes,
82
 
83
##############################################################
84
# DAGENT ARCHIVING SETTINGS
85
 
86
# Enable archive_on_delivery to automatically archive all incoming
87
# messages on delivery.
88
# This will do nothing if no archive is attached to the target mailbox.
89
archive_on_delivery = no
90
 
91
##############################################################
92
# DAGENT PLUGIN SETTINGS
93
 
94
# Enable the dagent plugin framework
95
plugin_enabled = yes
96
 
97
# Path to the dagent plugin manager
98
plugin_manager_path = /usr/share/zarafa-dagent/python
99
 
100
# Path to the activated dagent plugins.
101
#   This folder contains symlinks to the zarafa plugins and custom scripts. The plugins are
102
#   installed in '/usr/share/zarafa-dagent/python/plugins/'. To activate a plugin create a symbolic
103
#   link in the 'plugin_path' directory.
104
#
105
# Example:
106
#  $ ln -s /usr/share/zarafa-dagent/python/plugins/BMP2PNG.py /var/lib/zarafa/dagent/plugins/BMP2PNG.py
107
plugin_path = /var/lib/zarafa/dagent/plugins
108
 
109
##############################################################
110
# DAGENT RULE SETTINGS
111
 
112
# Enable the addition of X-Zarafa-Rule-Action headers on messages
113
# that have been forwarded or replied by a rule.
114
# Default: yes
115
set_rule_headers = yes
116
 
117
# Enable this option to prevent rules to cause a loop. An e-mail can only be forwarded
118
# once. When this option is enabled, the set_rule_headers option must also be enabled.
119
# Default: no
120
no_double_forward = no
121