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/gateway.cfg

    r6165e17 r2c1b61a  
    22# GATEWAY SETTINGS
    33
    4 server_bind     =       0.0.0.0
     4#server_bind    =
    55
    6 # WARNING!! YOU MUST RUN KOPANO GATEWAY UNDER A DIFFERENT USER THAN THE SERVER PROCESS
     6# Please refer to the administrator manual or manpage why HTTP is used rather than the UNIX socket.
     7#server_socket = http://localhost:236/
     8
     9# Set this value to a name to show in the logon greeting to clients.
     10# Leave empty to use DNS to find this name.
     11server_hostname =
     12
     13# Whether to show the hostname in the logon greeting to clients.
     14server_hostname_greeting = no
     15
    716# drop privileges and run the process as this user
    8 run_as_user = kopano-gateway
     17#run_as_user = kopano
    918
    1019# drop privileges and run the process as this group
    11 run_as_group = kopano-gateway
     20#run_as_group = kopano
    1221
     22# create a pid file for stopping the service via the init.d scripts
     23#pid_file = /var/run/kopano/gateway.pid
    1324
    1425# run server in this path (when not using the -F switch)
    15 running_path = /
     26#running_path = /var/lib/kopano
     27
     28# create memory coredumps upon crash [no, systemdefault, yes]
     29#coredump_enabled = systemdefault
    1630
    1731# enable/disable POP3, and POP3 listen port
     
    4054imap_capability_idle = yes
    4155
     56# The maximum size of an email that can be uploaded to the gateway
     57imap_max_messagesize = 128M
     58
     59# Override the e-mail charset and generate using utf-8 (when imap data is not present on the item)
     60imap_generate_utf8 = no
     61
     62# Internally issue the expunge command to directly delete e-mail marked for deletion in IMAP.
     63imap_expunge_on_delete = no
     64
     65# Store full rfc822 message during APPEND
     66imap_store_rfc822 = yes
     67
     68# Maximum count of allowed failed IMAP command counts per client
     69imap_max_fail_commands = 10
     70
     71# Some MUAs are sending commands via idle causing the connection
     72# to reach imap_max_fail_commands and leaves the client in a
     73# broken state. The clients include Apple Mail. If you experience
     74# problems or uses Apple Mail set this option to yes
     75#imap_ignore_command_idle = no
     76
     77# Disable all plaintext authentications unless SSL/TLS is used
     78disable_plaintext_auth = no
     79
    4280# File with RSA key for SSL
    4381ssl_private_key_file    =       /usr/webint/ssl/server.pem
    4482
    4583#File with certificate for SSL
    46 ssl_certificate_file    =       /usr/webint/ssl/server.crt
     84ssl_certificate_file    = /usr/webint/ssl/server.crt
    4785
    4886# Verify client certificate
     
    5088
    5189# Client verify file and/or path
    52 ssl_verify_file         =       
     90ssl_verify_file         =
    5391ssl_verify_path         =
    5492
     93# SSL protocols to use, space-separated list of protocols
     94# (SSLv3 TLSv1 TLSv1.1 TLSv1.2); prefix with ! to lock out a protocol.
     95#ssl_protocols =
     96
     97# SSL ciphers to use, set to 'ALL' for backward compatibility
     98ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL
     99
     100# Prefer the server's order of SSL ciphers over client's
     101ssl_prefer_server_ciphers = no
     102
    55103# Process model, using pthreads (thread) or processes (fork)
     104# Processes are potentially safer from a security point of view.
    56105process_model = fork
    57106
     107# For temporary files.
     108# consider mounting a `tmpfs' underneath this path (wherever you
     109# point it to)
     110tmp_path = /tmp
    58111
    59 imap_store_rfc822=yes
    60 
     112# Whether Gateway should filter HTML messages or not. Usually, WebApp
     113# takes care of this. Letting the gateways do this improves the user latency a
     114# bit, but uses more disk space. (yes/no)
     115#html_safety_filter = no
    61116
    62117##############################################################
     
    66121log_method      =       file
    67122
    68 # Loglevel (0=no logging, 5=full logging)
    69 log_level       =       2
     123# Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
     124#log_level      =       3
    70125
    71126# Logfile for log_method = file, use '-' for stderr
     
    75130log_timestamp   =       1
    76131
     132# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
     133#log_buffer_size = 0
    77134
    78 
    79 
     135# Bypass authentification when connecting as an administrator to the UNIX socket.
     136# bypass_auth = no
Note: See TracChangeset for help on using the changeset viewer.