/etc/kopano/spooler.cfg is in kopano-spooler 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 | ##############################################################
# SPOOLER SETTINGS
# Outgoing mailserver name or IP address
smtp_server = localhost
# Port number for outgoing mailserver
smtp_port = 25
# Server Unix socket location
#server_socket = file:///var/run/kopano/server.sock
# drop privileges and run the process as this user
run_as_user = kopano
# drop privileges and run the process as this group
run_as_group = kopano
# create a pid file for stopping the service via the init.d scripts
#pid_file = /var/run/kopano/spooler.pid
# run server in this path (when not using the -F switch)
#running_path = /var/lib/kopano
# create memory coredumps upon crash [no, systemdefault, yes]
#coredump_enabled = systemdefault
# for temporary files
# consider mounting a `tmpfs' underneath this path (wherever you
# point it to)
tmp_path = /tmp
##############################################################
# SPOOLER 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/spooler.log
# Log timestamp - prefix each log line with timestamp in 'file' logging mode
log_timestamp = 1
# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
#log_buffer_size = 0
# Dump raw messages into specified directory before sending to smtpd.
#log_raw_message_path = /tmp
#log_raw_message_stage1 = no
##############################################################
# SPOOLER 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/spooler.pem
# The password of the SSL Key
#sslkey_pass = replace-with-server-cert-password
##############################################################
# SPOOLER THREAD SETTINGS
# Maximum number of threads used to send outgoing messages
# Default: 5
max_threads = 5
##############################################################
# SPOOLER FAXING SETTINGS
# When sending an email that must go to a fax address, the address
# will be rewritten to <phonenumber>@<fax_domain>
fax_domain = fax.local
# If the received number starts with a '+', it will be replaced by
# the fax_international value.
# e.g. +3112345678@fax.local will be rewritten to 003112345678@fax.local
fax_international = 00
##############################################################
# SPOOLER DELEGATE SETTINGS
# Set this value to 'yes' to let the spooler always send emails with
# delegates (other user than yourself in the From: header)
# In installations before 6.20, this value was always 'yes'.
# IMPORTANT: This feature overrides "send-as" functionality.
always_send_delegates = no
# Set this value to 'no' if you do NOT want to allow redirected e-mails
# being sent with their original 'FROM' header
allow_redirect_spoofing = yes
# Copies the sent mail of delegates and send-as mails in the
# "Sent Items" folder of the representer.
copy_delegate_mails = yes
# Allow to forward and sent a meeting request as delegate Kopano and
# SMTP user.
allow_delegate_meeting_request = yes
# Allow users to send email to the 'everyone' group
allow_send_to_everyone = yes
##############################################################
# SPOOLER OUTPUT SETTINGS
# Set this value to 'yes' to always send meeting request information
# using TNEF method (winmail.dat attachments).
# Otherwise, the meeting request information is sent using
# iCalendar (calendar.ics attachment).
# Mail bodies created in RTF text format will also use TNEF.
always_send_tnef = no
# The us-ascii charset will be upgraded to this charset, to allow more
# use of high-characters.
charset_upgrade = windows-1252
# Request SMTP Delivery Status Notifications if the MTA support it
enable_dsn = yes
##############################################################
# SPOOLER GROUP EXPANSION
# Set this value to 'yes' if groups should be expanded to their
# members; This means that the receiving party will see the names
# of the group members in the To: header for example. If set to
# 'no', the name of the group will appear in the headers.
#
# Note: groups with email addresses are never expanded
expand_groups = no
##############################################################
# SPOOLER ARCHIVING SETTINGS
# Enable archive_on_send to automatically archive all outgoing
# messages.
# This will do nothing if no archive is attached to the source mailbox.
archive_on_send = no
##############################################################
# SPOOLER PLUGIN SETTINGS
# Enable the spooler plugin framework
plugin_enabled = yes
# Path to the spooler plugin manager
plugin_manager_path = /usr/share/kopano-spooler/python
# Path to the activated spooler plugins.
# This folder contains symlinks to the kopano plugins and custom scripts. The plugins are
# installed in '/usr/share/kopano-spooler/python/plugins/'. To activate a plugin create a symbolic
# link in the 'plugin_path' directory.
#
# Example:
# $ ln -s /usr/share/kopano-spooler/python/plugins/disclaimer.py /var/lib/kopano/spooler/plugins/disclaimer.py
plugin_path = /var/lib/kopano/spooler/plugins
|