source: npl/mailserver/kopano_conf/root/etc/kopano/spooler.cfg @ bd5cb29

gcc484perl-5.22
Last change on this file since bd5cb29 was bd5cb29, checked in by Edwin Eefting <edwin@datux.nl>, 7 years ago

fixes

  • Property mode set to 100644
File size: 5.3 KB
Line 
1##############################################################
2# SPOOLER SETTINGS
3
4# Outgoing mailserver name or IP address
5# smtp_server   =       localhost
6smtp_server     =       127.0.0.3
7
8# Port number for outgoing mailserver
9smtp_port = 25
10
11# Server Unix socket location
12#server_socket = file:///var/run/kopano/server.sock
13
14# drop privileges and run the process as this user
15#run_as_user = kopano
16
17# drop privileges and run the process as this group
18#run_as_group = kopano
19
20# create a pid file for stopping the service via the init.d scripts
21#pid_file = /var/run/kopano/spooler.pid
22
23# run server in this path (when not using the -F switch)
24#running_path = /var/lib/kopano
25
26# create memory coredumps upon crash [no, systemdefault, yes]
27#coredump_enabled = systemdefault
28
29# for temporary files
30# consider mounting a `tmpfs' underneath this path (wherever you
31# point it to)
32tmp_path = /tmp
33
34##############################################################
35# SPOOLER LOG SETTINGS
36
37# Logging method (syslog, file)
38log_method      =       file
39
40# Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
41#log_level      =       3
42
43# Logfile for log_method = file, use '-' for stderr
44log_file        =       /var/log/kopano/spooler.log
45
46# Log timestamp - prefix each log line with timestamp in 'file' logging mode
47log_timestamp   =       1
48
49# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
50#log_buffer_size = 0
51
52##############################################################
53# SPOOLER SSL LOGIN SETTINGS
54#
55# Note: server_socket must be set to https://servername:portname/
56#       to use this type of login method
57
58# Login to the storage server using this SSL Key
59#sslkey_file = /etc/kopano/ssl/spooler.pem
60
61# The password of the SSL Key
62#sslkey_pass = replace-with-server-cert-password
63
64##############################################################
65# SPOOLER THREAD SETTINGS
66
67# Maximum number of threads used to send outgoing messages
68# Default: 5
69max_threads = 5
70
71##############################################################
72# SPOOLER FAXING SETTINGS
73
74# When sending an email that must go to a fax address, the address
75# will be rewritten to <phonenumber>@<fax_domain>
76fax_domain = fax.local
77
78# If the received number starts with a '+', it will be replaced by
79# the fax_international value.
80# eg. +3112345678@fax.local will be rewritten to 003112345678@fax.local
81fax_international = 00
82
83##############################################################
84# SPOOLER DELEGATE SETTINGS
85
86# Set this value to 'yes' to let the spooler always send emails with
87# delegates (other user than yourself in the From: header)
88# In installations before 6.20, this value was always 'yes'.
89# IMPORTANT: This feature overrides "send-as" functionality.
90# always_send_delegates = no
91always_send_delegates = yes
92
93# Set this value to 'no' if you do NOT want to allow redirected e-mails
94# being sent with their original 'FROM' header
95allow_redirect_spoofing = yes
96
97# Copies the sent mail of delegates and send-as mails in the
98# "Sent Items" folder of the representer.
99copy_delegate_mails = yes
100
101# Allow to forward and sent a meeting request as delegate Kopano and
102# SMTP user.
103allow_delegate_meeting_request = yes
104
105# Allow users to send email to the 'everyone' group
106allow_send_to_everyone = yes
107
108##############################################################
109# SPOOLER OUTPUT SETTINGS
110
111# Set this value to 'yes' to always send meeting request information
112#   using TNEF method (winmail.dat attachments).
113#   Otherwise, the meeting request information is sent using
114#   iCalendar (calendar.ics attachment).
115# Mail bodies created in RTF text format will also use TNEF.
116always_send_tnef = no
117
118# Send all e-mail always using the UTF-8 charset.
119# Normally, the requested charset is used, which can be any charset.
120always_send_utf8 = no
121
122# The us-ascii charset will be upgraded to this charset, to allow more
123# use of high-characters. Not used when always_send_utf8 is enabled.
124charset_upgrade = windows-1252
125
126# Request SMTP Delivery Status Notifications if the MTA support it
127enable_dsn = yes
128
129##############################################################
130# SPOOLER GROUP EXPANSION
131
132# Set this value to 'yes' if groups should be expanded to their
133# members; This means that the receiving party will see the names
134# of the group members in the To: header for example. If set to
135# 'no', the name of the group will appear in the headers.
136#
137# Note: groups with email addresses are never expanded
138expand_groups = no
139
140##############################################################
141# SPOOLER ARCHIVING SETTINGS
142
143# Enable archive_on_send to automatically archive all outgoing
144# messages.
145# This will do nothing if no archive is attached to the source mailbox.
146archive_on_send = no
147##############################################################
148# SPOOLER PLUGIN SETTINGS
149
150# Enable the spooler plugin framework
151plugin_enabled = yes
152
153# Path to the spooler plugin manager
154plugin_manager_path = /usr/share/kopano-spooler/python
155
156# Path to the activated spooler plugins.
157#   This folder contains symlinks to the kopano plugins and custom scripts. The plugins are
158#   installed in '/usr/share/kopano-spooler/python/plugins/'. To activate a plugin create a symbolic
159#   link in the 'plugin_path' directory.
160#
161# Example:
162#  $ ln -s /usr/share/kopano-spooler/python/plugins/disclaimer.py /var/lib/kopano/spooler/plugins/disclaimer.py
163plugin_path = /var/lib/kopano/spooler/plugins
Note: See TracBrowser for help on using the repository browser.