Ignore:
Timestamp:
11/30/17 00:15:29 (7 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
gcc484, master, perl-5.22
Children:
94b5bc1
Parents:
6165e17
Message:

migrated settings to new default configs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • npl/mailserver/kopano_conf/root/etc/kopano/spooler.cfg

    r6165e17 r2c1b61a  
    33
    44# Outgoing mailserver name or IP address
    5 # Use 127.0.0.1 to disable virusscanning for webmail. (not recommended)
     5; smtp_server   =       localhost
    66smtp_server     =       127.0.0.3
    77
     8# Port number for outgoing mailserver
     9smtp_port = 25
     10
     11# Server Unix socket location
     12#server_socket = file:///var/run/kopano/server.sock
    813
    914# drop privileges and run the process as this user
    10 run_as_user = kopano
     15#run_as_user = kopano
    1116
    1217# drop privileges and run the process as this group
    13 run_as_group = kopano
     18#run_as_group = kopano
    1419
     20# create a pid file for stopping the service via the init.d scripts
     21#pid_file = /var/run/kopano/spooler.pid
    1522
    1623# run server in this path (when not using the -F switch)
    17 running_path = /
     24#running_path = /var/lib/kopano
    1825
    19 # The us-ascii charset will be upgraded to this charset, to allow more
    20 # use of high-characters. Not used when always_send_utf8 is enabled.
    21 charset_upgrade = windows-1252
     26# create memory coredumps upon crash [no, systemdefault, yes]
     27#coredump_enabled = systemdefault
    2228
    23 # Request SMTP Delivery Status Notifications if the MTA support it
    24 enable_dsn = yes
     29# for temporary files
     30# consider mounting a `tmpfs' underneath this path (wherever you
     31# point it to)
     32tmp_path = /tmp
    2533
    2634##############################################################
     
    3038log_method      =       file
    3139
    32 # Loglevel (0=no logging, 5=full logging)
    33 log_level       =       3
     40# Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
     41#log_level      =       3
    3442
    3543# Logfile for log_method = file, use '-' for stderr
     
    3947log_timestamp   =       1
    4048
     49# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
     50#log_buffer_size = 0
    4151
    4252##############################################################
    4353# SPOOLER SSL LOGIN SETTINGS
    44 # 
    45 # Note: server_socket must be set to https://servername:portname/kopano
     54#
     55# Note: server_socket must be set to https://servername:portname/
    4656#       to use this type of login method
    4757
    48 # Login to the Kopano server using this SSL Key
    49 sslkey_file = /etc/kopano/ssl/spooler.pem
     58# Login to the storage server using this SSL Key
     59#sslkey_file = /etc/kopano/ssl/spooler.pem
    5060
    5161# The password of the SSL Key
    52 sslkey_pass = replace-with-server-cert-password
     62#sslkey_pass = replace-with-server-cert-password
    5363
    5464##############################################################
     
    7686# Set this value to 'yes' to let the spooler always send emails with
    7787# delegates (other user than yourself in the From: header)
    78 # In installations before 6.20, this value was always 'yes'
     88# In installations before 6.20, this value was always 'yes'.
     89# IMPORTANT: This feature overrides "send-as" functionality.
     90# always_send_delegates = no
    7991always_send_delegates = yes
    80 
    81 # This does the same as always_send_delegates, but gets rid of the 'on behalf of' text.
    82 #always_send_as = yes
    8392
    8493# Set this value to 'no' if you do NOT want to allow redirected e-mails
     
    9099copy_delegate_mails = yes
    91100
    92 # Setting this option to no will disallow sending to the everyone group.
    93 allow_send_to_everyone=yes
     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
    94107
    95108##############################################################
    96 # SPOOLER MEETING REQUEST SETTINGS
     109# SPOOLER OUTPUT SETTINGS
    97110
    98111# Set this value to 'yes' to always send meeting request information
    99 # using TNEF method (winmail.dat attachments)
    100 # Otherwise, the meeting request information is sent using
    101 # iCalendar (calendar.ics attachment).
     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.
    102116always_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
    103128
    104129##############################################################
     
    120145# This will do nothing if no archive is attached to the source mailbox.
    121146archive_on_send = no
    122 
    123 ####################################
     147##############################################################
    124148# SPOOLER PLUGIN SETTINGS
    125149
    126150# Enable the spooler plugin framework
    127 plugin_enabled = no
     151plugin_enabled = yes
     152
    128153# Path to the spooler plugin manager
    129154plugin_manager_path = /usr/share/kopano-spooler/python
     155
    130156# Path to the activated spooler plugins.
    131157#   This folder contains symlinks to the kopano plugins and custom scripts. The plugins are
     
    136162#  $ ln -s /usr/share/kopano-spooler/python/plugins/disclaimer.py /var/lib/kopano/spooler/plugins/disclaimer.py
    137163plugin_path = /var/lib/kopano/spooler/plugins
    138 
    139 
Note: See TracChangeset for help on using the changeset viewer.