[2fcc226] | 1 | ############################################################## |
---|
| 2 | # SERVER SETTINGS |
---|
| 3 | |
---|
[2c1b61a] | 4 | # IP Address to bind to (empty for ANY) |
---|
| 5 | # Set to ::1 or 127.0.0.1 if connections should only come from localhost |
---|
[2fcc226] | 6 | # and through the webserver proxy |
---|
[2c1b61a] | 7 | #server_bind = |
---|
[2fcc226] | 8 | |
---|
| 9 | |
---|
| 10 | |
---|
[2c1b61a] | 11 | # Accept Unix pipe connections (not recommended to disable) |
---|
[2fcc226] | 12 | server_pipe_enabled = yes |
---|
| 13 | |
---|
[2c1b61a] | 14 | # Unix socket location |
---|
| 15 | server_pipe_name = /var/run/kopano/server.sock |
---|
| 16 | |
---|
| 17 | # Priority Unix socket location |
---|
| 18 | server_pipe_priority = /var/run/kopano/prio.sock |
---|
[2fcc226] | 19 | |
---|
| 20 | # Name for identifying the server in a multi-server environment |
---|
| 21 | server_name = Kopano |
---|
| 22 | |
---|
[2c1b61a] | 23 | # Override the hostname of this server, used by Kerberos SSO if enabled |
---|
| 24 | server_hostname = |
---|
| 25 | |
---|
[2fcc226] | 26 | # Database engine (mysql) |
---|
| 27 | database_engine = mysql |
---|
| 28 | |
---|
[2c1b61a] | 29 | # Allow connections from normal users through the Unix socket |
---|
[2fcc226] | 30 | allow_local_users = yes |
---|
| 31 | |
---|
| 32 | # local admin users who can connect to any store (use this for the kopano-dagent) |
---|
| 33 | # field is SPACE separated |
---|
| 34 | # eg: local_admin_users = root vmail |
---|
[2c1b61a] | 35 | #local_admin_users = root kopano |
---|
[2fcc226] | 36 | local_admin_users = root alias |
---|
| 37 | |
---|
[2c1b61a] | 38 | # The user has full rights on a folder by default, uncomment the following line to disable this. |
---|
| 39 | # owner_auto_full_access = false |
---|
| 40 | owner_auto_full_access = true |
---|
| 41 | |
---|
[2fcc226] | 42 | # e-mail address of the Kopano System user |
---|
| 43 | system_email_address = postmaster@localhost |
---|
| 44 | |
---|
| 45 | # drop privileges and run the process as this user |
---|
[2c1b61a] | 46 | #run_as_user = kopano |
---|
[2fcc226] | 47 | |
---|
| 48 | # drop privileges and run the process as this group |
---|
[2c1b61a] | 49 | #run_as_group = kopano |
---|
[2fcc226] | 50 | |
---|
[2c1b61a] | 51 | # create a pid file for stopping the service via the init.d scripts |
---|
| 52 | #pid_file = /var/run/kopano/server.pid |
---|
[2fcc226] | 53 | |
---|
| 54 | # run server in this path (when not using the -F switch) |
---|
[2c1b61a] | 55 | #running_path = /var/lib/kopano |
---|
| 56 | |
---|
| 57 | # Use given allocator library. Values like libtcmalloc.so.4, |
---|
| 58 | # libtcmalloc_minimal.so.4 and libjemalloc.so.2 would work. |
---|
| 59 | #allocator_library = default |
---|
| 60 | |
---|
| 61 | # create memory coredumps upon crash [no, systemdefault, yes] |
---|
| 62 | #coredump_enabled = systemdefault |
---|
[2fcc226] | 63 | |
---|
| 64 | # session timeout for clients. Values lower than 300 will be upped to 300 |
---|
| 65 | # automatically. If the server hears nothing from a client in session_timeout |
---|
| 66 | # seconds, then the session is killed. |
---|
| 67 | session_timeout = 300 |
---|
| 68 | |
---|
[2c1b61a] | 69 | # for temporary files |
---|
| 70 | # consider mounting a `tmpfs' underneath this path (wherever you |
---|
| 71 | # point it to) |
---|
| 72 | tmp_path = /tmp |
---|
[2fcc226] | 73 | |
---|
| 74 | ############################################################## |
---|
| 75 | # LOG SETTINGS |
---|
| 76 | |
---|
[2c1b61a] | 77 | # Logging method (syslog, file), syslog facility is 'mail' |
---|
| 78 | log_method = file |
---|
[2fcc226] | 79 | |
---|
| 80 | # Logfile (for log_method = file, '-' for stderr) |
---|
| 81 | log_file = /var/log/kopano/server.log |
---|
| 82 | |
---|
[2c1b61a] | 83 | # Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug)) |
---|
| 84 | #log_level = 3 |
---|
[2fcc226] | 85 | |
---|
| 86 | # Log timestamp - prefix each log line with timestamp in 'file' logging mode |
---|
| 87 | log_timestamp = 1 |
---|
| 88 | |
---|
[2c1b61a] | 89 | # Buffer logging in what sized blocks. 0 for line-buffered (syslog-style). |
---|
| 90 | #log_buffer_size = 0 |
---|
| 91 | |
---|
| 92 | ############################################################## |
---|
| 93 | # AUDIT LOG SETTINGS |
---|
| 94 | |
---|
| 95 | # Audit logging is by default not enabled |
---|
| 96 | audit_log_enabled = no |
---|
| 97 | |
---|
| 98 | # Audit logging method (syslog, file), syslog facility is 'authpriv' |
---|
| 99 | audit_log_method = syslog |
---|
| 100 | |
---|
| 101 | # Audit logfile (for log_method = file, '-' for stderr) |
---|
| 102 | audit_log_file = /var/log/kopano/audit.log |
---|
| 103 | |
---|
| 104 | # Audit loglevel (0=no logging, 1=full logging) |
---|
| 105 | audit_log_level = 1 |
---|
| 106 | |
---|
| 107 | # Audit log timestamp - prefix each log line with timestamp in 'file' logging mode |
---|
| 108 | audit_log_timestamp = 1 |
---|
| 109 | |
---|
[2fcc226] | 110 | ############################################################## |
---|
| 111 | # MYSQL SETTINGS (for database_engine = mysql) |
---|
| 112 | |
---|
| 113 | # MySQL hostname to connect to for database access |
---|
[2c1b61a] | 114 | mysql_host = localhost |
---|
[2fcc226] | 115 | |
---|
| 116 | # MySQL port to connect with (usually 3306) |
---|
| 117 | mysql_port = 3306 |
---|
| 118 | |
---|
| 119 | # The user under which we connect with MySQL |
---|
[6165e17] | 120 | mysql_user = zarafa |
---|
[2fcc226] | 121 | |
---|
| 122 | # The password for the user (leave empty for no password) |
---|
| 123 | mysql_password = %mysql_passwd% |
---|
| 124 | |
---|
[2c1b61a] | 125 | # Override the default MySQL socket to access mysql locally |
---|
| 126 | # Works only if the mysql_host value is empty or 'localhost' |
---|
| 127 | #mysql_socket = |
---|
| 128 | mysql_socket = /var/run/mysql/mysql.sock |
---|
| 129 | |
---|
[2fcc226] | 130 | # Database to connect to |
---|
[6165e17] | 131 | mysql_database = zarafa |
---|
[2fcc226] | 132 | |
---|
[2c1b61a] | 133 | # Where to place attachments. Value can be 'database', 'files' or 's3' |
---|
[2fcc226] | 134 | attachment_storage = files |
---|
| 135 | |
---|
[2c1b61a] | 136 | # Enable fsync as method to make sure attachments are stored on disk where |
---|
| 137 | # supported and will not be buffered by OS and/or filesystem. Please note |
---|
| 138 | # this setting will lower attachment write performance depending on your |
---|
| 139 | # environment but enhances data safety with disaster recovery. |
---|
| 140 | # Only affects 'files' attachment storage backend. |
---|
| 141 | attachment_files_fsync = yes |
---|
| 142 | |
---|
[2fcc226] | 143 | # When attachment_storage is 'files', use this path to store the files |
---|
[2c1b61a] | 144 | # When attachment_storage is 's3', use this path to set a prefix to all |
---|
| 145 | # attachment data of a certain cluster, for example 'attach' |
---|
[2fcc226] | 146 | attachment_path = /home/system/kopano |
---|
| 147 | |
---|
| 148 | # Compression level for attachments when attachment_storage is 'files'. |
---|
| 149 | # Set compression level for attachments disabled=0, max=9 |
---|
| 150 | attachment_compression = 6 |
---|
| 151 | |
---|
| 152 | ############################################################## |
---|
[2c1b61a] | 153 | # S3 STORAGE SETTINGS (for attachment_storage = s3) |
---|
| 154 | |
---|
| 155 | # The hostname of the entry point to the S3 cloud where the bucket is located |
---|
| 156 | # If you are using miniio or an other S3 compatible implementation that |
---|
| 157 | # is using another port, you can specify the port with hostname:port. |
---|
| 158 | #attachment_s3_hostname = s3-eu-west-1.amazonaws.com |
---|
| 159 | |
---|
| 160 | # The region where the bucket is located |
---|
| 161 | #attachment_s3_region = eu-west-1 |
---|
| 162 | |
---|
| 163 | # The protocol that should be used to connect to S3, 'http' or 'https' (preferred) |
---|
| 164 | #attachment_s3_protocol = https |
---|
| 165 | |
---|
| 166 | # The URL style of the bucket, "virtualhost" or "path" |
---|
| 167 | #attachment_s3_uristyle = virtualhost |
---|
| 168 | |
---|
| 169 | # The access key id of your S3 account |
---|
| 170 | #attachment_s3_accesskeyid = |
---|
| 171 | |
---|
| 172 | # The secret access key of your S3 account |
---|
| 173 | #attachment_s3_secretaccesskey = |
---|
| 174 | |
---|
| 175 | # The bucket name in which the files will be stored |
---|
| 176 | #attachment_s3_bucketname = |
---|
| 177 | |
---|
| 178 | ############################################################## |
---|
[2fcc226] | 179 | # SSL SETTINGS |
---|
| 180 | |
---|
| 181 | |
---|
| 182 | # Required Server certificate, contains the certificate and the private key parts |
---|
| 183 | server_ssl_key_file = /usr/webint/ssl/server.pem |
---|
| 184 | |
---|
| 185 | # Password of Server certificate |
---|
[2c1b61a] | 186 | server_ssl_key_pass = replace-with-server-cert-password |
---|
[2fcc226] | 187 | |
---|
| 188 | # Required Certificate Authority of server |
---|
[2c1b61a] | 189 | server_ssl_ca_file = /usr/webint/ssl/server.crt |
---|
[2fcc226] | 190 | |
---|
| 191 | # Path with CA certificates, e.g. /etc/ssl/certs |
---|
| 192 | server_ssl_ca_path = |
---|
| 193 | |
---|
[2c1b61a] | 194 | # SSL protocols to use, space-separated list of protocols |
---|
| 195 | # (SSLv3 TLSv1 TLSv1.1 TLSv1.2); prefix with ! to lock out a protocol. |
---|
| 196 | #server_ssl_protocols = |
---|
| 197 | |
---|
| 198 | # SSL ciphers to use, set to 'ALL' for backward compatibility |
---|
| 199 | server_ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL |
---|
| 200 | |
---|
| 201 | # Prefer the server's order of SSL ciphers over client's |
---|
| 202 | server_ssl_prefer_server_ciphers = no |
---|
| 203 | |
---|
[2fcc226] | 204 | # Path of SSL Public keys of clients |
---|
| 205 | sslkeys_path = /etc/kopano/sslkeys |
---|
| 206 | |
---|
| 207 | ############################################################## |
---|
| 208 | # THREAD SETTINGS |
---|
| 209 | |
---|
| 210 | # Number of server threads |
---|
| 211 | # default: 8 |
---|
[2c1b61a] | 212 | #threads = 8 |
---|
[2fcc226] | 213 | threads = 16 |
---|
| 214 | |
---|
| 215 | # Watchdog frequency. The number of watchdog checks per second. |
---|
| 216 | # default: 1 |
---|
| 217 | watchdog_frequency = 1 |
---|
| 218 | |
---|
| 219 | # Watchdog max age. The maximum age in ms of a task before a |
---|
| 220 | # new thread is started. |
---|
| 221 | # default: 500 |
---|
| 222 | watchdog_max_age = 500 |
---|
| 223 | |
---|
| 224 | # Maximum SOAP keep_alive value |
---|
| 225 | # default: 100 |
---|
| 226 | server_max_keep_alive_requests = 100 |
---|
| 227 | |
---|
[2c1b61a] | 228 | # SOAP recv timeout value (time between requests) |
---|
[2fcc226] | 229 | # default: 5 |
---|
| 230 | server_recv_timeout = 5 |
---|
| 231 | |
---|
[2c1b61a] | 232 | # SOAP read timeout value (time during requests) |
---|
| 233 | # default: 60 |
---|
| 234 | server_read_timeout = 60 |
---|
| 235 | |
---|
[2fcc226] | 236 | # SOAP send timeout value |
---|
| 237 | # default: 60 |
---|
| 238 | server_send_timeout = 60 |
---|
| 239 | |
---|
| 240 | ############################################################## |
---|
| 241 | # OTHER SETTINGS |
---|
| 242 | |
---|
| 243 | # Softdelete clean cycle (in days) 0=never running |
---|
[2c1b61a] | 244 | # softdelete_lifetime = 30 |
---|
[2fcc226] | 245 | # (SYN-3 uses a cronjob) |
---|
| 246 | softdelete_lifetime = 0 |
---|
| 247 | |
---|
| 248 | # Sync lifetime, removes all changes remembered for a client after x days of inactivity |
---|
| 249 | sync_lifetime = 90 |
---|
| 250 | |
---|
[2c1b61a] | 251 | # Set to 'yes' if you have Kerberos or NTLM correctly configured for single sign-on |
---|
| 252 | enable_sso = no |
---|
[2fcc226] | 253 | |
---|
| 254 | # Set to 'yes' if you want to show the GAB to your users |
---|
| 255 | enable_gab = yes |
---|
| 256 | |
---|
| 257 | # Authentication can be through plugin (default, recommended), pam or kerberos |
---|
| 258 | auth_method = plugin |
---|
| 259 | |
---|
| 260 | # If auth_method is set to pam, you should provide the pam service name |
---|
| 261 | pam_service = passwd |
---|
| 262 | |
---|
| 263 | |
---|
| 264 | ############################################################# |
---|
| 265 | # CACHE SETTINGS |
---|
[2c1b61a] | 266 | # |
---|
| 267 | # To see the live cache usage, use 'kopano-stats --system'. |
---|
[2fcc226] | 268 | #SYN-3 caching config for around 1000 users. |
---|
| 269 | |
---|
[2c1b61a] | 270 | # Size in bytes of the 'cell' cache (should be set as high as you can afford to set it) |
---|
| 271 | #cache_cell_size = 256M |
---|
[2fcc226] | 272 | # around 25% of total RAM size |
---|
| 273 | cache_cell_size = 1G |
---|
| 274 | |
---|
[2c1b61a] | 275 | # Size in bytes of the 'object' cache |
---|
| 276 | #cache_object_size = 16M |
---|
[2fcc226] | 277 | # about 100kb per user |
---|
| 278 | cache_object_size = 100M |
---|
| 279 | |
---|
[2c1b61a] | 280 | # Size in bytes of the 'indexed object' cache |
---|
| 281 | #cache_indexedobject_size = 32M |
---|
[2fcc226] | 282 | # about 512kb per user |
---|
| 283 | cache_indexedobject_size = 512M |
---|
| 284 | |
---|
[2c1b61a] | 285 | |
---|
| 286 | # Size in bytes of the userquota details |
---|
| 287 | cache_quota_size = 1M |
---|
[2fcc226] | 288 | |
---|
| 289 | # Lifetime for userquota details |
---|
| 290 | cache_quota_lifetime = 1 |
---|
| 291 | |
---|
[2c1b61a] | 292 | # Size in bytes of the acl cache |
---|
| 293 | cache_acl_size = 1M |
---|
| 294 | |
---|
| 295 | # Size in bytes of the store id/guid cache |
---|
| 296 | #cache_store_size = 1M |
---|
| 297 | cache_store_size=512M |
---|
| 298 | |
---|
| 299 | # Size in bytes of the 'user id' cache (this is allocated twice) |
---|
| 300 | cache_user_size = 1M |
---|
| 301 | |
---|
| 302 | # Size in bytes of the 'user details' cache |
---|
| 303 | cache_userdetails_size = 25M |
---|
| 304 | |
---|
[2fcc226] | 305 | # Lifetime for user details |
---|
[2c1b61a] | 306 | cache_userdetails_lifetime = 0 |
---|
| 307 | |
---|
| 308 | # Size in bytes of the server details (multiserver setups only) |
---|
| 309 | cache_server_size = 1M |
---|
| 310 | |
---|
| 311 | # Lifetime for server details (multiserver setups only) |
---|
| 312 | cache_server_lifetime = 30 |
---|
[2fcc226] | 313 | |
---|
| 314 | |
---|
| 315 | ############################################################## |
---|
| 316 | # QUOTA SETTINGS |
---|
| 317 | |
---|
| 318 | # The default Warning Quota Level. Set to 0 to disable this level. |
---|
| 319 | # The user will receive an email when this level is reached. Value is in Mb. Default value is 0. |
---|
| 320 | quota_warn = 0 |
---|
| 321 | |
---|
| 322 | # The default Soft Quota Level. Set to 0 to disable this level. |
---|
| 323 | # The user will still receive mail, but sending new mail is prohibited, until objects are removed from the store. |
---|
| 324 | # VALUE is in Mb. Default value is 0. |
---|
| 325 | quota_soft = 0 |
---|
| 326 | |
---|
| 327 | # The default Hard Quota Level. Set to 0 to disable this level. |
---|
| 328 | # The user can not receive and send mail, until objects are removed from the store. |
---|
| 329 | # Value is in Mb. Default value is 0. |
---|
| 330 | quota_hard = 0 |
---|
| 331 | |
---|
[2c1b61a] | 332 | # The default Warning Quota Level for multitenant public stores. Set to 0 to disable this level. |
---|
| 333 | # The tenant administrator will receive an email when this level is reached. Value is in Mb. Default value is 0. |
---|
[2fcc226] | 334 | companyquota_warn = 0 |
---|
| 335 | |
---|
[2c1b61a] | 336 | |
---|
[2fcc226] | 337 | ############################################################## |
---|
| 338 | # USER PLUGIN SETTINGS |
---|
| 339 | |
---|
| 340 | # Name of the plugin that handles users |
---|
[2c1b61a] | 341 | # Required, default = db |
---|
[2fcc226] | 342 | # Values: ldap, unix, db |
---|
| 343 | user_plugin = ldap |
---|
| 344 | |
---|
[2c1b61a] | 345 | # configuration file of the user plugin, examples can be found in /usr/share/doc/kopano/example-config |
---|
[2fcc226] | 346 | user_plugin_config = /etc/kopano/ldap.cfg |
---|
| 347 | |
---|
| 348 | # scripts which create stores for users from an external source |
---|
| 349 | # used for ldap and unix plugins only |
---|
| 350 | createuser_script = /etc/kopano/userscripts/createuser |
---|
| 351 | deleteuser_script = /etc/kopano/userscripts/deleteuser |
---|
| 352 | creategroup_script = /etc/kopano/userscripts/creategroup |
---|
| 353 | deletegroup_script = /etc/kopano/userscripts/deletegroup |
---|
| 354 | createcompany_script = /etc/kopano/userscripts/createcompany |
---|
| 355 | deletecompany_script = /etc/kopano/userscripts/deletecompany |
---|
| 356 | |
---|
[2c1b61a] | 357 | # Set this option to 'yes' to skip the creation and deletion of new users |
---|
| 358 | # The action will be logged, so you can see if your changes to the plugin |
---|
| 359 | # configuration are correct. |
---|
| 360 | user_safe_mode = no |
---|
| 361 | |
---|
[2fcc226] | 362 | ############################################################## |
---|
| 363 | # MISC SETTINGS |
---|
| 364 | |
---|
[2c1b61a] | 365 | # Enable multi-tenancy environment |
---|
| 366 | # When set to true it is possible to create tenants within the |
---|
[2fcc226] | 367 | # kopano instance and assign all users and groups to particular |
---|
[2c1b61a] | 368 | # tenants. |
---|
| 369 | # When set to false, the normal single-tenancy environment is created. |
---|
[2fcc226] | 370 | enable_hosted_kopano = false |
---|
| 371 | |
---|
| 372 | # Enable multi-server environment |
---|
[2c1b61a] | 373 | # When set to true it is possible to place users and tenants on |
---|
[2fcc226] | 374 | # specific servers. |
---|
| 375 | # When set to false, the normal single-server environment is created. |
---|
| 376 | enable_distributed_kopano = false |
---|
| 377 | |
---|
| 378 | # Display format of store name |
---|
| 379 | # Allowed variables: |
---|
| 380 | # %u Username |
---|
[2c1b61a] | 381 | # %f Full name |
---|
| 382 | # %c Tenant's name |
---|
[2fcc226] | 383 | # default: %f |
---|
| 384 | storename_format = %f |
---|
| 385 | |
---|
[2c1b61a] | 386 | # Loginname format (for Multi-tenancy installations) |
---|
[2fcc226] | 387 | # When the user does not login through a system-wide unique |
---|
| 388 | # username (like the email address) a unique name is created |
---|
[2c1b61a] | 389 | # by combining the username and the tenantname. |
---|
[2fcc226] | 390 | # With this configuration option you can set how the |
---|
| 391 | # loginname should be built up. |
---|
| 392 | # |
---|
| 393 | # Note: Do not use the = character in the format. |
---|
| 394 | # |
---|
| 395 | # Allowed variables: |
---|
[2c1b61a] | 396 | # %u Username |
---|
| 397 | # %c Teantname |
---|
[2fcc226] | 398 | # |
---|
| 399 | # default: %u |
---|
| 400 | loginname_format = %u |
---|
| 401 | |
---|
| 402 | # Everyone is a special internal group, which contains every user and group |
---|
| 403 | # You may want to disable this group from the Global Addressbook by setting |
---|
| 404 | # this option to 'yes'. Administrators will still be able to see the group. |
---|
| 405 | hide_everyone = no |
---|
| 406 | |
---|
| 407 | # System is a special internal user, which has super-admin privileges |
---|
| 408 | # You may want to disable this user from the Global Addressbook by setting |
---|
| 409 | # this option to 'yes'. Administrators will still be able to see the user. |
---|
| 410 | hide_system = yes |
---|
| 411 | |
---|
[2c1b61a] | 412 | # Use Indexing service for faster searching. |
---|
[2fcc226] | 413 | # Enabling this option requires the kopano-search service to |
---|
| 414 | # be running. |
---|
| 415 | search_enabled = yes |
---|
| 416 | |
---|
[2c1b61a] | 417 | # Path to the kopano-search service, this option is only required |
---|
| 418 | # if the server is going to make use of the indexing service. |
---|
| 419 | search_socket = file:///var/run/kopano/search.sock |
---|
| 420 | |
---|
| 421 | # Time (in seconds) to wait for a connection to the kopano-search service |
---|
| 422 | # before terminating the indexed search request. |
---|
| 423 | search_timeout = 10 |
---|
| 424 | |
---|
| 425 | # Allow enhanced ICS operations to speedup synchronization with cached profiles. |
---|
| 426 | # default: yes |
---|
| 427 | enable_enhanced_ics = yes |
---|
| 428 | |
---|
[2fcc226] | 429 | # SQL Procedures allow for some optimized queries when streaming with enhanced ICS. |
---|
| 430 | # This is default disabled because you must set 'thread_stack = 256k' in your |
---|
| 431 | # MySQL server config under the [mysqld] tag and restart your MySQL server. |
---|
[2c1b61a] | 432 | #enable_sql_procedures = no |
---|
[2fcc226] | 433 | enable_sql_procedures = yes |
---|
| 434 | |
---|
[2c1b61a] | 435 | # Synchronize GAB users on every open of the GAB (otherwise, only on |
---|
| 436 | # kopano-admin --sync) |
---|
| 437 | sync_gab_realtime = yes |
---|
[2fcc226] | 438 | |
---|
[2c1b61a] | 439 | # Disable features for users. This list is space separated. |
---|
| 440 | # Currently valid values: imap pop3 mobile outlook |
---|
| 441 | #disabled_features = imap pop3 |
---|
| 442 | disabled_features = |
---|
| 443 | |
---|
| 444 | # Maximum number of deferred records in total |
---|
| 445 | max_deferred_records = 0 |
---|
| 446 | |
---|
| 447 | # Maximum number of deferred records per folder |
---|
| 448 | max_deferred_records_folder = 20 |
---|
[2fcc226] | 449 | |
---|
| 450 | # Restrict the permissions that admins receive to folder permissions only. Please |
---|
| 451 | # read the server.cfg manpage before enabling this option so you really understand |
---|
| 452 | # the implications |
---|
| 453 | restrict_admin_permissions = no |
---|
| 454 | |
---|
| 455 | # The maximum level of attachment recursion; Defines the number of |
---|
| 456 | # attachment-in-attachment in-attachment levels are allowed when saving and |
---|
| 457 | # replicating objects in the database. If you really want a higher level of |
---|
| 458 | # recursion than about 20, you probably have to increase MySQL's stack_size |
---|
| 459 | # to allow replication to work properly. |
---|
| 460 | embedded_attachment_limit = 20 |
---|
| 461 | |
---|
| 462 | # Header to detect whether a connection has been received through a proxy. The |
---|
| 463 | # value of the header is not inspected. If the header exists then the connection |
---|
| 464 | # is taken to be received via a proxy. An empty value disables proxy detection |
---|
| 465 | # and the value of '*' is used to indicate that all connections are proxied |
---|
| 466 | proxy_header = |
---|
[2c1b61a] | 467 | |
---|
| 468 | # Enable/disable reminders for shared stores |
---|
| 469 | shared_reminders = yes |
---|