- Timestamp:
- 11/30/17 00:15:29 (7 years ago)
- Branches:
- gcc484, master, perl-5.22
- Children:
- 94b5bc1
- Parents:
- 6165e17
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
npl/mailserver/kopano_conf/root/etc/kopano/gateway.cfg
r6165e17 r2c1b61a 2 2 # GATEWAY SETTINGS 3 3 4 server_bind = 0.0.0.0 4 #server_bind = 5 5 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. 11 server_hostname = 12 13 # Whether to show the hostname in the logon greeting to clients. 14 server_hostname_greeting = no 15 7 16 # drop privileges and run the process as this user 8 run_as_user = kopano-gateway 17 #run_as_user = kopano 9 18 10 19 # drop privileges and run the process as this group 11 run_as_group = kopano-gateway 20 #run_as_group = kopano 12 21 22 # create a pid file for stopping the service via the init.d scripts 23 #pid_file = /var/run/kopano/gateway.pid 13 24 14 25 # 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 16 30 17 31 # enable/disable POP3, and POP3 listen port … … 40 54 imap_capability_idle = yes 41 55 56 # The maximum size of an email that can be uploaded to the gateway 57 imap_max_messagesize = 128M 58 59 # Override the e-mail charset and generate using utf-8 (when imap data is not present on the item) 60 imap_generate_utf8 = no 61 62 # Internally issue the expunge command to directly delete e-mail marked for deletion in IMAP. 63 imap_expunge_on_delete = no 64 65 # Store full rfc822 message during APPEND 66 imap_store_rfc822 = yes 67 68 # Maximum count of allowed failed IMAP command counts per client 69 imap_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 78 disable_plaintext_auth = no 79 42 80 # File with RSA key for SSL 43 81 ssl_private_key_file = /usr/webint/ssl/server.pem 44 82 45 83 #File with certificate for SSL 46 ssl_certificate_file = 84 ssl_certificate_file = /usr/webint/ssl/server.crt 47 85 48 86 # Verify client certificate … … 50 88 51 89 # Client verify file and/or path 52 ssl_verify_file = 90 ssl_verify_file = 53 91 ssl_verify_path = 54 92 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 98 ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL 99 100 # Prefer the server's order of SSL ciphers over client's 101 ssl_prefer_server_ciphers = no 102 55 103 # Process model, using pthreads (thread) or processes (fork) 104 # Processes are potentially safer from a security point of view. 56 105 process_model = fork 57 106 107 # For temporary files. 108 # consider mounting a `tmpfs' underneath this path (wherever you 109 # point it to) 110 tmp_path = /tmp 58 111 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 61 116 62 117 ############################################################## … … 66 121 log_method = file 67 122 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 70 125 71 126 # Logfile for log_method = file, use '-' for stderr … … 75 130 log_timestamp = 1 76 131 132 # Buffer logging in what sized blocks. 0 for line-buffered (syslog-style). 133 #log_buffer_size = 0 77 134 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.