/etc/kopano/dagent.cfg is in kopano-dagent 8.5.5-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | ##############################################################
# DAGENT SETTINGS
# connection to the storage server
#server_socket = file:///var/run/kopano/server.sock
##############################################################
# DAGENT SSL LOGIN SETTINGS
#
# Note: server_socket must be set to https://servername:portname/
# to use this type of login method
# Login to the storage server using this SSL Key
#sslkey_file = /etc/kopano/ssl/dagent.pem
# The password of the SSL Key
#sslkey_pass = replace-with-dagent-cert-password
##############################################################
# DAGENT LOG SETTINGS
# Logging method (syslog, file)
log_method = file
# Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
#log_level = 3
# Logfile for log_method = file, use '-' for stderr
log_file = /var/log/kopano/dagent.log
# Log timestamp - prefix each log line with timestamp in 'file' logging mode
log_timestamp = 1
# Log raw message to a file, please specify a username,
# separate users with a space, or use 'all' to log all
log_raw_message = no
# Log raw messages path
# consider mounting a `tmpfs' underneath this path
# note that MySQL may store (large) files under /tmp
log_raw_message_path = /tmp
# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
#log_buffer_size = 0
# for temporary files
# consider mounting a `tmpfs' underneath this path (wherever you
# point it to)
tmp_path = /tmp
##############################################################
# DAGENT LMTP SETTINGS
# start dagent with -d to create an lmtp daemon of the kopano-dagent
# binding address for LMTP daemon
# change to the empty string if you require connections on other addresses
#server_bind =
# Limit connections to address of interface (IPv6),
# or route path interface (IPv4). Leave empty for to indicate "all".
#server_bind_intf =
# LMTP port to listen on for LMTP connections
lmtp_port = 2003
# Maximum LMTP threads that ca be running simultaneously
# This is also limited by your SMTP server. (20 is the postfix default concurrency limit)
lmtp_max_threads = 20
# run as specific user in LMTP mode.
# make sure this user is listed in local_admin_users in your storage server config
# or use SSL connections with certificates to login
run_as_user = kopano
# run as specific group in LMTP mode.
run_as_group = kopano
# control pid file
#pid_file = /var/run/kopano/dagent.pid
# create memory coredumps upon crash [no, systemdefault, yes]
#coredump_enabled = systemdefault
# The following e-mail header will mark the mail as spam, so the mail
# is placed in the Junk Mail folder, and not the Inbox.
# The name is case insensitive.
# set to empty to not use this detection scheme.
spam_header_name = X-Spam-Status
# If the above header is found, and contains the following value
# the mail will be considered as spam.
# Notes:
# - The value is case insensitive.
# - Leading and trailing spaces are stripped.
# - The word 'bayes' also contains the word 'yes'.
spam_header_value = Yes,
# Whether dagent should filter HTML messages or not. Usually, WebApp takes
# care of this. Letting dagent do this improves the user latency a
# bit, but uses more disk space. (yes/no)
#html_safety_filter = no
##############################################################
# DAGENT ARCHIVING SETTINGS
# Enable archive_on_delivery to automatically archive all incoming
# messages on delivery.
# This will do nothing if no archive is attached to the target mailbox.
archive_on_delivery = no
##############################################################
# DAGENT PLUGIN SETTINGS
# Enable the dagent plugin framework
plugin_enabled = yes
# Path to the dagent plugin manager
plugin_manager_path = /usr/share/kopano-dagent/python
# Path to the activated dagent plugins.
# This folder contains symlinks to the kopano plugins and custom scripts. The plugins are
# installed in '/usr/share/kopano-dagent/python/plugins/'. To activate a plugin create a symbolic
# link in the 'plugin_path' directory.
#
# Example:
# $ ln -s /usr/share/kopano-dagent/python/plugins/BMP2PNG.py /var/lib/kopano/dagent/plugins/BMP2PNG.py
plugin_path = /var/lib/kopano/dagent/plugins
##############################################################
# DAGENT RULE SETTINGS
# Enable the addition of X-Kopano-Rule-Action headers on messages
# that have been forwarded or replied by a rule.
# Default: yes
set_rule_headers = yes
# Enable this option to prevent rules to cause a loop. An e-mail can only be forwarded
# once. When this option is enabled, the set_rule_headers option must also be enabled.
# Default: no
no_double_forward = no
# Some emails do not contain any charset information, or may wrongly specify
# us-ascii when they are not. If this option is set, mails which would normally
# be decoded as ASCII will have their content instead interpreted in the
# alternate character set specified here (which must also be ASCII compatible).
#default_charset = us-ascii
# A list of space-separated domains to which forwarding via a rule is allowed.
# The '*' matches zero or more characters, _including_ dots.
# Example:
# forward_whitelist_domains = kopano.com *.kopano.com
#
# Example:
# forward_whitelist_domains = kopano.com sub.kopano.com
#
#forward_whitelist_domains = *
# A custom-defined reply subject to the user with a rule forwarding to a
# domain not in forward_whitelist_domains.
#forward_whitelist_domain_subject = REJECT: %subject not forwarded (administratively blocked)
# A custom-defined reply message to the user with a rule forwarding to a
# domain not in forward_whitelist_domains.
#forward_whitelist_domain_message = The Kopano mail system has rejected your request to forward your e-mail with subject %subject (via mail filters) to %sender: the operation is not permitted.\n\nRemove the rule or contact your administrator about the forward_whitelist_domains setting.
|