'\" t .\" Title: kopano-dagent.cfg .\" Author: [see the "Author" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: November 2016 .\" Manual: Kopano Core user reference .\" Source: Kopano 8 .\" Language: English .\" .TH "KOPANO\-DAGENT.CFG" "5" "November 2016" "Kopano 8" "Kopano Core user reference" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" kopano-dagent.cfg \- The Kopano dagent configuration file .SH "SYNOPSIS" .PP \fBdagent.cfg\fR .SH "DESCRIPTION" .PP The dagent.cfg is a configuration file for the Kopano Dagent. dagent.cfg contains instructions for the software to set up the logging system and LMTP settings. .SH "FILE FORMAT" .PP The file consists of one big section, but parameters can be grouped by functionality. .PP The parameters are written in the form: .PP \fBname\fR = \fIvalue\fR .PP The file is line\-based. Each newline\-terminated line represents either a comment, nothing, a parameter or a directive. A line beginning with `#\*(Aq is considered a comment, and will be ignored by Kopano. Parameter names are case sensitive. Lines beginning with `!\*(Aq are directives. .PP Directives are written in the form: .PP !\fBdirective\fR \fI[argument(s)] \fR .PP The following directives exist: .PP \fBinclude\fR .RS 4 Include and process \fIargument\fR .PP Example: !include common.cfg .RE .SH "EXPLANATION OF EACH PARAMETER" .SS server_bind .PP Bind to a particular IP address. Leave empty to bind to all addresses. .PP Default: (empty) .SS server_socket .PP Unix socket to find the connection to the Kopano server. .PP Default: \fIfile:///var/run/kopano/server.sock\fR .SS run_as_user .PP After correctly starting, the dagent process will become this user, dropping root privileges. Note that the log file needs to be writeable by this user, and the directory too to create new logfiles after logrotation. This can also be achieved by setting the correct group and permissions. .PP Default value is empty, not changing the user after starting. .SS run_as_group .PP After correctly starting, the dagent process will become this group, dropping root privileges. .PP Default value is empty, not changing the group after starting. .SS pid_file .PP Write the process ID number to this file. This is used by the init.d script to correctly stop/restart the service. .PP Default: \fI/var/run/kopano/dagent.pid\fR .SS coredump_enabled .PP When a crash occurs or an assertion fails, a coredump file can be generated. This file should be sent along with the crash report. It is turned on by default in Kopano, but your system may have it disabled. For details, see the \fBkopano\-coredump\fP(5) manpage. .SS sslkey_file .PP Use this file as key to logon to the server. This is only used when server_socket is set to an HTTPS transport. See the \fBkopano-server\fR(8) manual page on how to setup SSL keys. .PP Default: value not set. .SS sslkey_pass .PP The password of the SSL key file that is set in sslkey_file. .PP Default: value not set. .SS lmtp_port .PP Port to listen to for LMTP requests .PP Default: \fI2003\fR .SS lmtp_max_threads .PP The maximum number of LMTP threads that can be running simultaneously. This is also limited by your SMTP server. (20 is the postfix default concurrency limit) .PP Default: \fI20\fR .SS spam_header_name .PP To detect if the receiving mail is spam, the DAgent can check this header for a value that is in there. This name is case insensitive. If this option is empty, the detection method will be turned off. You can also force a delivery to the Junk Mail folder using the \fI\-j\fR commandline option. .PP Default: \fIX\-Spam\-Status\fR .SS spam_header_value .PP When this value is found in the \fIspam_header_name\fR, the mail will be considered spam, and will be delivered in the user\*(Aqs Junk Mail folder. The value can be anywhere in the header, not just the start. The value is case insensitive. .PP Default: \fIYes,\fR .SS log_method .PP The method which should be used for logging. Valid values are: .TP \fIsyslog\fR Use the Linux system log. All messages will be written to the mail facility. See also \fBsyslog.conf\fR(5). .TP \fIfile\fR Log to a file. The filename will be specified in \fBlog_file\fR. .PP Default: \fIfile\fR .SS log_file .PP When logging to a file, specify the filename in this parameter. Use \fI\-\fR (minus sign) for stderr output. .PP Default: \fI/var/log/kopano/dagent.log\fR .SS log_timestamp .PP Specify whether to prefix each log line with a timestamp in \*(Aqfile\*(Aq logging mode. .PP Default: \fI1\fR .SS log_buffer_size .PP Buffer logging in what sized blocks. The special value 0 selects line buffering. .PP Default: \fI0\fR .SS log_level .PP The level of output for logging in the range from 0 to 5. 0 means no logging, 5 means full logging. .PP Default: \fI2\fR .SS log_raw_message .PP Log the raw message to a file. The file is saved to the location specified in \fBlog_raw_message_path\fR. .PP Default: \fIno\fR .SS log_raw_message_path .PP Path to save the raw message. .PP Default: \fI/tmp\fR .SS archive_on_delivery .PP Archive incoming message on delivery. If an archive is attached to the target mailbox, the message will immediately be archived upon delivery. .PP Rules will be processed before the message is archived, so when a rule moves the message to an alternate location, the archived message will be placed in the correct location in the archive. When the incoming message is copied by a rule, only the original message is archived. .PP Default: \fIno\fR .SS mr_autoaccepter .PP Kopano\-dagent can auto\-accept meeting requests if the mr\-accept option is enabled for a user. When this option is enabled and a meeting request or meeting cancellation is received, this script is started with the following parameters: /usr/sbin/kopano\-mr\-accept []. .PP If the script is successful (exitcode is 0), then no other actions are performed (eg rules or vacation messages) and the message is not delivered in the inbox. If the script exits with a non\-zero exit code, rules and vacation messages are run as usual, and the message is delivered in the inbox (or other folder, depending on rules or options). .PP Default: \fI/usr/sbin/kopano\-mr\-accept\fR .SS mr_autoprocessor .PP Kopano\-dagent can auto\-process meeting requests. When this is enabled and a meeting request, response or meeting cancellation is received, this script is started with the following parameters: /usr/bin/kopano\-mr\-process []. .PP Default: \fI/usr/bin/kopano\-mr\-process\fR .SS autoresponder .PP Kopano\-dagent invokes the autoresponder to send out\-of\-office replies. You can configure a custom autoresponder using this configuration option. .PP Default: \fI/usr/sbin/kopano\-autorespond\fR .SS plugin_enabled .PP Enable or disable the dagent plugin framework. .PP Default: \fIyes\fR .SS plugin_manager_path .PP The path to the dagent plugin manager. .PP Default: \fI/usr/share/kopano\-dagent/python\fR .SS plugin_path .PP Path to the activated dagent plugins. This folder contains symlinks to the kopano plugins and custom scripts. The plugins are installed in \fI/usr/share/kopano\-dagent/python/plugins\fR. To activate a plugin create a symbolic link in the \fIplugin_path\fR directory. .PP Example: .PP \fBln\fR \fB\-s\fR \fI/usr/share/kopano\-dagent/python/plugins/BMP2PNG.py\fR \fI/var/lib/kopano/dagent/plugins/BMP2PNG.py\fR .PP Default: \fI/var/lib/kopano/dagent/plugins\fR .SS default_charset .PP Some emails do not contain any charset information or specify us\-ascii even though it isn\*(Aqt. In both cases, dagent will assume the following charset is used. Note that this implies that the given charset should be a superset of us\-ascii (most charsets are). .PP Default: \fIiso\-8859\-15\fR .SS set_rule_headers .PP Enable the addition of X\-Kopano\-Rule\-Action headers on messages that have been forwarded or replied by a rule. .PP Default: \fIyes\fR .SS no_double_forward .PP 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. .PP Default: \fIno\fR .SS forward_whitelist_domains .PP A list of space\-separated domains to which forwarding via a rule is allowed. The "*" matches zero or more characters (including dots, i.e. subdomains at multiple levels). Do not use "*kopano.com" to permit both "@kopano.com" and "@sub.kopano.com", as that would also allow "@notkopano.com". .PP Default: \fI*\fR .SS forward_whitelist_domain_subject .PP A custom-defined reply subject to the user with a rule forwarding to a domain not in forward_whitelist_domains. .PP Default: \fIREJECT: %subject not forwarded (administratively blocked)\fR .SS forward_whitelist_domain_message .PP A custom-defined reply message to the user with a rule forwarding to a domain not in forward_whitelist_domains. .PP Default: \fIThe 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.\fR .SS unknown_charset_substitution .PP A space-separated list of pairs of space-separated charset name and replacement to use when encountering mail bodies with unrecognized character set encodings. This is a \fBlossy\fP operation; its use is not recommended. Normally, dagent would store such mail bodies as attachments to preserve their content, with decoding left to the user who can try any number of encodings, not just one. .RE .SH "RELOADING" .PP The following options are reloadable by sending the kopano\-dagent process a HUP signal: .PP log_level, archive_on_delivery, mr_autoaccepter .SH "FILES" .PP /etc/kopano/dagent.cfg .RS 4 The Kopano dagent configuration file. .RE .SH "AUTHOR" .PP Written by Kopano. .SH "SEE ALSO" .PP \fBkopano-dagent\fR(8)