1 | ############################################################## |
---|
2 | # DAGENT SETTINGS |
---|
3 | |
---|
4 | |
---|
5 | ############################################################## |
---|
6 | # DAGENT SSL LOGIN SETTINGS |
---|
7 | # |
---|
8 | # Note: server_socket must be set to https://servername:portname/zarafa |
---|
9 | # to use this type of login method |
---|
10 | |
---|
11 | # Login to the Zarafa server using this SSL Key |
---|
12 | #sslkey_file = /etc/zarafa/ssl/dagent.pem |
---|
13 | |
---|
14 | # The password of the SSL Key |
---|
15 | #sslkey_pass = replace-with-dagent-cert-password |
---|
16 | |
---|
17 | ############################################################## |
---|
18 | # DAGENT LOG SETTINGS |
---|
19 | |
---|
20 | # Logging method (syslog, file) |
---|
21 | log_method = file |
---|
22 | |
---|
23 | # Loglevel (0=no logging, 5=full logging) |
---|
24 | log_level = 2 |
---|
25 | |
---|
26 | # Logfile for log_method = file, use '-' for stderr |
---|
27 | log_file = - |
---|
28 | log_file = /var/log/zarafa/dagent.log |
---|
29 | |
---|
30 | # Log timestamp - prefix each log line with timestamp in 'file' logging mode |
---|
31 | log_timestamp = 1 |
---|
32 | |
---|
33 | ############################################################## |
---|
34 | # DAGENT LMTP SETTINGS |
---|
35 | # start dagent with -d to create an lmtp daemon of the zarafa-dagent |
---|
36 | |
---|
37 | # binding address for LMTP daemon |
---|
38 | # change to 0.0.0.0 if you require connections over the network |
---|
39 | server_bind = 127.0.0.1 |
---|
40 | |
---|
41 | # LMTP port to listen on for LMTP connections |
---|
42 | lmtp_port = 2003 |
---|
43 | |
---|
44 | # Maximum LMTP threads that ca be running simultaneously |
---|
45 | # This is also limited by your SMTP server. (20 is the postfix default concurrency limit) |
---|
46 | lmtp_max_threads = 20 |
---|
47 | |
---|
48 | # Process model for LMTP daemon, using pthreads (thread) or processes (fork) |
---|
49 | process_model = fork |
---|
50 | |
---|
51 | # run as specific user in LMTP mode. |
---|
52 | # make sure this user is listed in local_admin_users in your zarafa server config |
---|
53 | # or use SSL connections with certificates to login |
---|
54 | run_as_user = |
---|
55 | |
---|
56 | # run as specific group in LMTP mode. |
---|
57 | run_as_group = |
---|
58 | |
---|
59 | |
---|
60 | # The following e-mail header will mark the mail as spam, so the mail |
---|
61 | # is placed in the Junk Mail folder, and not the Inbox. |
---|
62 | # The name is case insensitive. |
---|
63 | # set to empty to not use this detection scheme. |
---|
64 | spam_header_name = |
---|
65 | |
---|
66 | # If the above header is found, and contains the following value |
---|
67 | # the mail will be considered as spam. |
---|
68 | # Notes: |
---|
69 | # - The value is case insensitive. |
---|
70 | # - Leading and trailing spaces are stripped. |
---|
71 | # - The word 'bayes' also contains the word 'yes'. |
---|
72 | spam_header_value = No |
---|
73 | |
---|
74 | ### For debugging |
---|
75 | # Log raw message to a file |
---|
76 | log_raw_message = no |
---|
77 | # Log raw messages path |
---|
78 | log_raw_message_path = /tmp |
---|
79 | |
---|
80 | # messages on delivery. |
---|
81 | # This will do nothing if no archive is attached to the target mailbox. |
---|
82 | archive_on_delivery = no |
---|
83 | |
---|
84 | ############################################################## |
---|
85 | # DAGENT PLUGIN SETTINGS |
---|
86 | # Enable the dagent plugin framework |
---|
87 | plugin_enabled = no |
---|
88 | # Path to the dagent plugin manager |
---|
89 | plugin_manager_path = /usr/share/zarafa-dagent/python |
---|
90 | # Path to the activated dagent plugins. |
---|
91 | # This folder contains symlinks to the zarafa plugins and custom scripts. The plugins are |
---|
92 | # installed in '/usr/share/zarafa-dagent/python/plugins/'. To activate a plugin create a symbolic |
---|
93 | # link in the 'plugin_path' directory. |
---|
94 | # |
---|
95 | # Example: |
---|
96 | # $ ln -s /usr/share/zarafa-dagent/python/plugins/BMP2PNG.py /var/lib/zarafa/dagent/plugins/BMP2PNG.py |
---|
97 | plugin_path = /var/lib/zarafa/dagent/plugins |
---|
98 | |
---|