zarafa-server.cfg (5) - Linux Manuals
zarafa-server.cfg: The Zarafa configuration file
NAME
zarafa-server.cfg - The Zarafa configuration file
SYNOPSIS
DESCRIPTION
The server.cfg is a configuration file for the zarafa-server process. server.cfg contains instructions for the software to set up the database environment, logging system and license.
FILE FORMAT
The file consists of one big section, but parameters can be grouped by functionality.
The parameters are written in the form:
name = value
The file is line-based. Each newline-terminated line represents either a comment, nothing, a parameter or a directive. A line beginning with `#' is considered a comment, and will be ignored by Zarafa. Parameter names are case sensitive. Lines beginning with `!' are directives.
Directives are written in the form:
!directive[argument(s)]
The following directives exist:
include
-
Include and process
argument
Example: !include common.cfg
EXPLANATION OF THE SERVER SETTINGS PARAMETERS
server_bind
-
IP address to bind to. 0.0.0.0 for any address. Keep in mind that both Webaccess and Outlook should be able to connect. The Webaccess normally connects on 127.0.0.1, and Outlook over the network.
Default: 0.0.0.0
server_tcp_enabled
-
Enable direct TCP connections.
Default: yes
server_tcp_port
-
Port to listen on.
Default: 236
server_pipe_enabled
-
Enable Unix pipe connections. Should not be disabled.
Default: yes
server_recv_timeout
-
TCP and SSL receive timeout in seconds. This is the time that a TCP connection may be idle (between requests) before the TCP connection is closed from the server. Settings this high makes it less necessary for clients to re-connect, but increases the total number of concurrent open sockets in the server. You normally needn't change the default value.
Default: 5
server_read_timeout
-
TCP and SSL read timeout in seconds. The read timeout is the amount of time that the server will wait to read more data from a socket, after processing of the request has started. This needn't be changed in most cases.
Default: 60
server_send_timeout
-
TCP and SSL send timeout in seconds. The send timeout is the amount of time that the server will wait to write data to a socket, analogous to server_read_timeout.
Default: 60
server_max_keep_alive_requests
-
Limits the number of requests allowed per connection.
Default: 100
server_pipe_name
-
Unix socket to listen on.
Default: /var/run/zarafa
server_pipe_priority
-
Priority unix socket to listen on. This socket is only used by the zarafa-licensed daemon.
Default: /var/run/zarafa-prio
server_name
-
Unique name for identifying the server in a multi-server environment.
Default: Zarafa
server_hostname
-
DNS name of the server. This is used for the Kerberos single sign-on environment. If empty (default), the FQDN or hostname will be used.
Default:
database_engine
-
The database engine to use. Values can be:
mysql
- Use MySQL.
Default: mysql
allow_local_users
-
Named Unix users which connect through the unix socket (server_pipe_name) which are added here, those users will become the internal SYSTEM user in Zarafa, and have administrative rights. Normally, this is only 'root', so the unix root user can use the zarafa-admin tool. You can add a generic user to be used by the zarafa-dagent here. This user is most likely called 'vmail'. Note that the field is SPACE separated.
Default: root
system_email_address
-
This is the e-mail address of the SYSTEM user. When people receive mail from the quota monitor, or receive fallback deliveries from the zarafa-dagent, the From email address is this field. You might want to change this field so people can reply to this address.
Default: postmaster [at] localhost
run_as_user
-
After correctly starting, the server process will become this user, dropping root privileges. Note that the log file needs to be writeable by this user, and the directory too to create new logfiles after logrotation. This can also be achieved by setting the correct group and permissions.
Default value is empty, not changing the user after starting.
run_as_group
-
After correctly starting, the server process will become this group, dropping root privileges.
Default value is empty, not changing the group after starting.
pid_file
-
Write the process ID number to this file. This is used by the init.d script to correctly stop/restart the service.
Default: /var/run/zarafa-server.pid
running_path
-
Change directory to this path when running in daemonize mode. When using the -F switch to run in the foreground the directory will not be changed.
Default: /
coredump_enabled
-
When a segfault occurs, a coredump file will be written in the running_path directory. This file should be sent along with the crash report.
Default: yes
session_timeout
-
The session timeout specifies how many seconds must elapse without any activity from a client before the server counts the session as dead. The client sends keepalive requests every 60 seconds, so the session timeout can never be below 60. In fact, if you specify a timeout below 300, 300 will be taken as the session timeout instead. This makes sure you can never timeout your session while the Zarafa client is running.
Setting the session timeout low will keep the session count and therefore the memory usage on the server low, but may also timeout sessions of client that have lost network connectivity temporarily. For example, some clients with powersaving modes will disable the ethernet card during the screensaver. When this happens, you must set the session_timeout to a value that is higher than the time that it takes for the network connection to come back. This could be anything ranging up to several hours.
Default: 300
session_ip_check
-
Normally, a session is linked to an IP-address, so this check is enabled. You may want to disable this check when you have laptop's which can get multiple ip-adresses through wired and wireless networks. It is highly recommended to leave this check enabled, since the session id can be used by other machines, and thus introduces a large security risc. Since version 6.20, the session id is 64 bits. Older versions use a 32 bit session id, so then the session is easier guessable.
Default: yes
hide_everyone
-
If this option is set to 'yes', the internal group Everyone (which always contains all users) will be hidden from the Global Addressbook. Thus, users will not be able to send e-mail to this group anymore, and also will not be able to set access rights on folders for this group. Administrators will still be able to see and use the group.
Default: no
hide_system
-
If this option is set to 'yes', the internal user SYSTEM will be hidden from the Global Addressbook. Thus, users will not be able to send e-mail to this user anymore. Administrators will still be able to see and use the user.
Default: yes
thread_stacksize
-
This setting might be usefull on 32bit system with a lot of users. This setting should not be set too small, or your server will crash. The value set is in Kb.
Default: 512
license_socket
-
Path to the
zarafa-licensed(1)
service.
Default: /var/run/zarafa-licensed
license_timeout
-
Time (in seconds) to wait for a connection to the
zarafa-licensed(1)
before terminating the request.
Default: 10
EXPLANATION OF THE LOGGING SETTINGS PARAMETERS
log_method
-
The method which should be used for logging. Valid values are:
syslog
- Use the Linux system log. All messages will be written to the mail facility. See also syslog.conf(5).
file
- Log to a file. The filename will be specified in log_file.
Default: file
log_file
-
When logging to a file, specify the filename in this parameter. Use
-
(minus sign) for stderr output.
Default: /var/log/zarafa/server.log
log_level
-
The level of output for logging in the range from 0 to 5. 0 means no logging, 5 means full logging.
Default: 2
log_timestamp
-
Specify whether to prefix each log line with a timestamp in 'file' logging mode.
Default: 1
EXPLANATION OF THE SECURITY LOGGING SETTINGS PARAMETERS
audit_log_enabled
-
Whether the security logging feature should be enabled.
Default: no
audit_log_method
-
The method which should be used for logging. Valid values are:
syslog
- Use the Linux system log. All messages will be written to the authpriv facility. See also syslog.conf(5).
file
- Log to a file. The filename will be specified in log_file.
Default: syslog
audit_log_file
-
When logging to a file, specify the filename in this parameter. Use
-
(minus sign) for stderr output.
Default: -
audit_log_level
-
The level of output for logging in the range from 0 to 1. 0 means no logging, 1 means full logging.
Default: 1
audit_log_timestamp
-
Specify whether to prefix each log line with a timestamp in 'file' logging mode.
Default: 1
EXPLANATION OF THE MYSQL SETTINGS PARAMETERS
mysql_host
-
The hostname of the MySQL server to use.
Default: localhost
mysql_port
-
The port of the MySQL server to use.
Default: 3306
mysql_user
-
The user under which we connect with MySQL.
Default: root
mysql_password
-
The password to use for MySQL. Leave empty for no password.
Default:
mysql_socket
-
The socket of the MySQL server to use. This option can be used to override the default mysql socket. To use the socket, the mysql_host value must be empty or 'localhost'
Default:
mysql_database
-
The MySQL database to connect to.
Default: zarafa
mysql_group_concat_max_len
-
The group_concat_max_len used to set for MySQL. If you have large distribution lists (more than 150 members), it is useful to set this value higher. On the other hand, some MySQL versions are known to break with a value higher than 21844.
Default: 21844
attachment_storage
-
The location where attachments are stored. This can be in the MySQL database, or as separate files. The drawback of 'database' is that the large data of attachment will push usefull data from the MySQL cache. The drawback of separate files is that a mysqldump is not enough for a full disaster recovery.
Default: files
attachment_path
-
When the attachment_storage option is 'files', this option sets the location of the attachments on disk. Note that the server runs as the 'run_as_user' user and 'run_as_group' group, which will require write access to this directory.
Default: /var/lib/zarafa/attachments
attachment_compression
-
When the attachment_storage option is 'files', this option controls the compression level for the attachments. Higher compression levels will compress data better, but at the cost of CPU usage. Lower compression levels will require less CPU but will compress data less. Setting the compression level to 0 will effectively disable compression completely.
Changing the compression level, or switching it on or off, will not affect any existing attachments, and will remain accessible as normal.
Set to 0 to disable compression completely. The maximum compression level is 9
Default: 6
EXPLANATION OF THE SSL SETTINGS PARAMETERS
server_ssl_enabled
-
Enable direct SSL connections. When this option is enabled, you must set the following ssl options correctly, otherwise the server may or will not start.
Default: no
server_ssl_port
-
The portnumber to accept SSL connections on.
Default: 237
server_ssl_key_file
-
The file containing the private key and certificate. Please read the SSL section in the
zarafa-server(1)
manual on how to create this file.
Default: /etc/zarafa/ssl/server.pem
server_ssl_key_pass
-
Enter you password here when your key file contains a password to be readable.
No default set.
server_ssl_ca_file
-
The CA file which was used to sign client SSL certificates. This CA will be trusted. This value must be set for clients to login with an SSL Key. Their public key must be present in the sslkeys_path directory.
No default set.
server_ssl_ca_path
-
When you have multiple CA's to trust, you may use this option. Set this to a directory which contains all your trusted CA certificates. The name of the certificate needs to be the hash of the certificate. You can get the hash value of the certificate with the following command:
openssl x509 -hash -noout -in cacert.pem
Create a symbolic link to the certificate with the hashname like this:
ln -s cacert.pem `openssl x509 -hash -noout -in cacert.pem`.0
If you have several certificates which result in the same hash, use .1, .2, etc. in the end of the filename.
No default set.
sslkeys_path
-
The path which contains public keys of clients which can login over SSL using their key. Please read the SSL section in the
zarafa-server(1)
manual on how to create these files.
Default: /etc/zarafa/sslkeys
server_ssl_protocols
-
Disabled or enabled protocol names. Supported protocol names are
SSLv2,
SSLv3
and
TLSv1. If Zarafa was linked against OpenSSL 1.0.1 or later there is additional support for the new protocols
TLSv1.1
and
TLSv1.2. To exclude both, SSLv2 and SSLv3 set
server_ssl_protocols
to
!SSLv2 !SSLv3. SSLv2 is considered unsafe and these connections should not be accepted.
Default: !SSLv2
server_ssl_ciphers
-
SSL ciphers to use, set to
ALL
for backward compatibility.
Default: ALL:!LOW:!SSLv2:!EXP:!aNULL
server_ssl_prefer_server_ciphers
-
Prefer the server's order of SSL ciphers over client's.
Default: no
EXPLANATION OF THE THREADING PARAMETERS
threads
-
Number of server threads.
Default: 8
watchdog_frequency
-
Watchdog frequency. The number of watchdog checks per second.
Default: 1
watchdog_max_age
-
Watchdog max age. The maximum age in ms of a task before a new thread is started.
Default: 500
server_max_keep_alive_requests
-
Maximum SOAP keep_alive value.
Default: 100
server_recv_timeout
-
SOAP recv timeout value.
Default: 5
server_send_timeout
-
SOAP send timeout value.
Default: 60
EXPLANATION OF THE OTHER SETTINGS PARAMETERS
softdelete_lifetime
-
Softdelete clean cycle, in days. 0 means never. Items older than this setting will be removed from the database.
Default: 0
sync_lifetime
-
Synchronization clean cycle, in days. 0 means never. Synchronizations older than this setting will be removed from the database.
Default: 90
sync_log_all_changes
-
Normally changes to messages inside folders which no user is syncing from are not logged to the database as optimization. In some scenarios (i.e. when using BlackBerry synchronization) it is important for all changes to be logged regardless of the number of listeners to these changes.
Setting this value to yes will cause slightly more database traffic and the value no will be the correct for most installations.
Default: no
enable_sso
-
When you configured your system for single sign-on, you can enable this by setting the value to
yes. The server can autodetect between NTLM and Kerberos. For NTLM authentication you will need the ntlm_auth program from Samba. Please see the server installation manual on howto enable your system for single sign-on.
Default: no
enable_gab
-
Enables viewing of the Global Address Book (GAB) by users. Disabling the GAB will show an empty list in the GAB, which may be required for some installations. Resolving addresses is not affected by this option.
Users with administrator rights are also not affected by this option and always have access to the GAB.
Default: yes
auth_method
-
Authentication is normally done in the user plugin. In case your plugin cannot provide the authentication, you may set this to pam, and set the pam_service to authenticate through pam. Another choice is kerberos. The user password will be verified using the kerberos service. Note that is not a single-signon method, since the server requires the user password.
Default: plugin
restrict_admin_permissions
-
Normally, admin users are granted all permissions on all stores in the server, or for stores in the tenant's company (in multi-tenant mode). Enabling this option restricts permissions to folder operations: Folder viewing, folder creation and importantly, folder permissions. This means that an administrator can grant himself full permissions on a folder. However, in combination with auditing, it provides an extra level of security protection against unwanted access.
Note that some applications may require full access to all stores, which would be restricted by this option. Also, this option cannot be reset by sending a HUP signal, so a full server restart is required to change the setting.
Default: no
embedded_attachment_limit
-
Defines the number of attachment-in-attachment-in-attachment levels allowed when saving and replicating a MAPI object. This limit can be made higher if needed, but will also require you to increase the stack_size in mysql to allow for correct exporting for replication.
Default: no
pam_service
-
This is the pam service name. Pam services can be found in /etc/pam.d/.
Default: passwd
max_deferred_records
-
The server has a list of deferred writes to the tproperties table, to improve overall I/O performance. The number of deferred writes is kept below this value; setting it high will allow writes to be more efficient by grouping more writes together, but may slow down reading, and setting it low will force writes to complete directly, but speed up reading of tables.
Default: 0 (off)
max_deferred_records_folder
-
Same as the max_deferred_records variable, but per folder instead of total.
Default: 20
disabled_features
-
In this list you can disable certain features for users. Normally all features are enabled for all users, making it possible through the user plugin to disable specific features for specific users. To set the default of a feature to disabled, add it here to the list, making it possible through the user plugin to enable a specific user for specific users.
This list is space separated, and currently may contain the following features: imap, pop3.
Default: imap pop3
EXPLANATION OF THE CACHE SETTINGS PARAMETERS
cache_cell_size
-
Size in bytes of the cell cache. This is the main cache used in Zarafa. It caches all data that comes into view in tables (ie the view of your inbox, or any other folder). In an ideal situation, all cells would be cached, so that the database does not need to be queried for data when browsing through folders, but this would require around 1.5K per message item (e-mail, appointment task, etc) in the entire server. If you can afford it, set this value as high as possible, up to 50% of your total RAM capacity. Make sure this doesn't lead to swapping though. This value may contain a k, m or g multiplier.
Default: 256M
cache_object_size
-
This caches objects and their respective hierarchy of folders. You can calculate the size with a simple equation:
concurrent users * max items in a folder * 24
This value may contain a k, m or g multiplier.
Default: 5M
cache_indexedobject_size
-
This cache contains unique id's of objects. This cache is used twice, also by the index2 cache, which is the inverse of the index1 cache. This value may contain a k, m or g multiplier.
Default: 16M
cache_quota_size
-
This cache contains quota values of users. This value may contain a k, m or g multiplier.
Default: 1M
cache_quota_lifetime
-
This sets the lifetime for quota details inside the cache. If quota details weren't queried during this period it is removed from the cache making room for more often requested quota details. Set to 0 to never expire, or -1 to disable this cache.
Default: 1 (1 minute)
cache_acl_size
-
This cache contains Access Control List values. Folders who are opened in other stores than your own are listed in the ACL table, and will be cached. This value may contain a k, m or g multiplier.
Default: 1M
cache_store_size
-
This cache contains store id values. This value may contain a k, m or g multiplier.
Default: 1M
cache_user_size
-
This cache contains user id values. This cache is used twice, also by the externid cache, which is the inverse of this cache. This value may contain a k, m or g multiplier.
Default: 1M
cache_userdetails_size
-
This cache contains the details of users. This value may contain a k, m or g multiplier.
Default: 3M
cache_userdetails_lifetime
-
This sets the lifetime for user details inside the cache. If user details weren't queried during this period it is removed from the cache making room for more often requested user details. Set to 0 to never expire, or -1 to disable this cache.
Default: 0 (never expire)
cache_server_size
-
This cache contains server locations. This cache is only used in multiserver mode. This value may contain a k, m or g multiplier.
Default: 1M
cache_server_lifetime
-
This sets the lifetime for server location details inside the cache. If server details weren't queried during this period it is removed from the cache making room for more often requested server details. Set to 0 to never expire, or -1 to disable this cache.
Default: 30 (30 minutes)
EXPLANATION OF THE QUOTA SETTINGS PARAMETERS
quota_warn
-
Size in Mb of de default quota warning level. Use 0 to disable this quota level.
Default: 0
quota_soft
-
Size in Mb of de default quota soft level. Use 0 to disable this quota level.
Default: 0
quota_hard
-
Size in Mb of de default quota hard level. Use 0 to disable this quota level.
Default: 0
companyquota_warn
-
Size in Mb of de default quota warning level for multitenant public stores. Use 0 to disable this quota level.
Default: 0
EXPLANATION OF THE USER PLUGIN SETTINGS PARAMETERS
plugin_path
-
The location of the Zarafa plugin directory.
Default: /usr/lib/zarafa
user_plugin
-
The source of the user base. Possible values are:
db
- Retrieve the users from the Zarafa database. Use the zarafa-admin tool to create users and groups. There are no additional settings for this plugin.
ldap
- Retrieve the users and groups information from an LDAP server. All additional LDAP settings are set in a separate config file, which will be defined by the user_plugin_config. See also zarafa-ldap.cfg(5).
unix
-
Retrieve the users and groups information from the Linux password files. User information will be read the /etc/passwd file. Passwords will be checked agains /etc/shadow. Group information will read from /etc/group. Use the
zarafa-admin(1)
tool to set Zarafa specific attributes on a user.
All additional Unix settings are set in a separate config file, which will be defined by the user_plugin_config. See also zarafa-unix.cfg(5) .
Default: db
createuser_script, deleteuser_script, creategroup_script, deletegroup_script, createcompany_script, deletecompany_script
-
These scripts are called by the server when the external user source, like LDAP, is different from the users, groups and companies which are known to Zarafa. The script uses a environment variable to see which user, group or tenant is affected. The following parameter is used for the script:
createuser_script
-
ZARAFA_USER
contains the new username. The script should at least call
zarafa-admin--create-store"${ZARAFA_USER}"
to correctly create the store for the new user.
Default: /etc/zarafa/userscripts/createuser
deleteuser_script
-
ZARAFA_STOREID
contains the old id of the store of the removed user.
Default: /etc/zarafa/userscripts/deleteuser
creategroup_script
-
ZARAFA_GROUP
contains the new groupname. No action is currently needed by the script.
Default: /etc/zarafa/userscripts/creategroup
deletegroup_script
-
ZARAFA_GROUPID
contains the old id of the group. No action is currently needed by the script.
Default: /etc/zarafa/userscripts/deletegroup
createcompany_script
-
ZARAFA_COMPANY
contains the new companyname. No action is currently needed by the script.
Default: /etc/zarafa/userscripts/createcompany
deletecompany_script
-
ZARAFA_COMPANYID
contains the old id of the company. No action is currently needed by the script.
Default: /etc/zarafa/userscripts/deletecompany
-
ZARAFA_USER
contains the new username. The script should at least call
zarafa-admin--create-store"${ZARAFA_USER}"
to correctly create the store for the new user.
user_safe_mode
-
If enabled, the zarafa server will only log when create, delete and move actions are done on an user object. This might be useful when you are testing changes to your plugin configuration.
Default: no
EXPLANATION OF MISCELLEANIOUS PARAMETERS
enable_hosted_zarafa
-
Enable multi-tenancy environment.
When set to true it is possible to create companies within the zarafa instance and assign all users and groups to particular companies.
When set to false, the normal single-tenancy environment is created.
Default: false
enable_distributed_zarafa
-
Enable multi-server environment.
When set to true it is possible to place users and companies on specific servers.
When set to false, the normal single-server environment is created.
Default: false
storename_format
-
Display format of store name.
Allowed variables:
%u
- Username
%f
- Fullname
%c
- Companyname
Default: %f
loginname_format
-
Loginname format (for multi-tenancy installations). When the user does not login through a system-wide unique username (like the email address) a unique name has created by combining the username and the tenancyname. With the this configuration option you can set how the loginname should be build up.
Allowed variables:
%u
- Username
%c
- Companyname
Default: %u
client_update_enabled
-
Enable client updates.
You can place the Zarafa Outlook Client installer in the client_update_path directory, and enable this option. Windows clients which have the automatic updater program installed will be able to download the latest client from the Zarafa server.
Default: false
client_update_path
-
This is the path where you will place the Zarafa Outlook Client MSI install program for Windows clients to download. You need the
client_update_enabled
option set to
true
for clients to actually download this file through the Zarafa server.
Default: /var/lib/zarafa/client
client_update_log_level
-
Receive the log information from the client auto update service.
Options: 0 disable, 1 sent only with errors, 2 always sent
Default: 1
client_update_log_path
-
Log location for the client auto update files
You need the client_update_log_level option set to non-zero value to receive log files from the client.
Default: /var/log/zarafa/autoupdate
search_enabled
-
Use the zarafa-search indexing service for faster searching. Enabling this option requires the
zarafa-search(1)
service to be running.
Default: yes
search_socket
-
Path to the
zarafa-search(1)
service, this option is only required if the server is going to make use of the indexing service.
Default: file:///var/run/zarafa-search
search_timeout
-
Time (in seconds) to wait for a connection to the
zarafa-search(1)
before terminating the indexed search request.
Default: 10
enable_enhanced_ics
-
Allow enhanced ICS operations to speedup synchronization with cached profiles. Only disable this option for debugging purposes.
Default: yes
enable_sql_procedures
-
SQL Procedures allow for some optimized queries when streaming with enhanced ICS. This is default disabled because you must set 'thread_stack = 256k' in your MySQL server config under the [mysqld] tag and restart your MySQL server.
Default: no
folder_max_items
-
Limits the amount of items (messages or folders) in a single folder. This makes sure that the server will not attempt to load folders that are so large that it would require huge amounts of memory just to show the data. In practice, folders of over 1000000 items are usually created by runaway processes which are therefore useless anyway.
Default: 1000000
sync_gab_realtime
-
When set to 'yes', zarafa will synchronize the local user list whenever a list of users is requested (eg during zarafa-admin -l or when opening the addressbook). This was the default for zarafa 6.40.4 and earlier. When setting this value to 'no', synchronization will only occur during zarafa-admin --sync. This is useful for setups which have large addressbooks (more than 1000 entries in the addressbook).
This option is forced to 'yes' when using the 'db' plugin since synchronization is implicit in that case.
Default: yes
counter_reset
-
The counter_reset option forces a recount of items in the folder each time a folder is opened. Although this is not strictly necessary, it is a precaution to make sure that counters are always correct. When enabled, this does incur a performance penalty, especially on large (>50000 items) folders. Each time a counter_reset found an incorrect item count, it increments the system statistic counter_resyncs. If it is at 0 on your system, then this option has had no effect except for slowing it down.
Default: yes
proxy_header
-
In normal operation, a cluster of zarafa-server nodes is served by sending redirections back to the clients requesting information. The redirection URL is built from the server's information in the LDAP database. However, in some cases it is useful to place the zarafa-server instances behind a reverse HTTP proxy. In this case the redirected URL returned to the client cannot be the 'normal' hostname, but must be a URL that is handled by the proxy.
However, internal ('behind' the proxy) redirections must *not* be redirected to the proxy since this is not necessary. The strategy is that zarafa-server will redirect to the proxy URL if the connection that initiated the redirect passed through a proxy. The way that this is detected is by examining an HTTP header. If the header specified by this option is found, then redirections will be to the proxy. If it is not, then redirections will be to the internal host. If the special value '*' is specified for this option, then the proxy URL will always be used. Specifying an empty value disables proxy detection.
Another effect of this option is that when a proxy connection is detected, zarafa-server attempts to use the 'X-Forwarded-For' header to determine the originating IP address. This is used for logging and session binding (a session initiated on a certain IP address may not be accessed from another IP address).
Default:
RELOADING
The following options are reloadable by sending the zarafa-server process a HUP signal or reload the process by the initscript
system_email_address, local_admin_users, allow_local_users, hide_system, hide_everyone, auth_method, pam_service, enable_sso, enable_gab, sync_gab_realtime
session_timeout, server_recv_timeout, server_read_timeout, server_send_timeout, sync_lifetime
log_level, audit_log_level
threads, watchdog_max_age, watchdog_frequency, max_deferred_records, max_deferred_records_folder
counter_reset, user_safe_mode, enable_enhanced_ics, report_path, report_ca_path, client_update_log_level, client_update_path, client_update_log_path
search_enabled, search_socket, search_timeout, disabled_features, mysql_group_concat_max_len, embedded_attachment_limit, proxy_header
quota_warn, quota_soft, quota_hard, companyquota_warn
createuser_script, deleteuser_script, creategroup_script, deletegroup_script, createcompany_script, deletecompany_script
FILES
/etc/zarafa/server.cfg
- The server configuration file.
/etc/zarafa/ldap.cfg
- The Zarafa LDAP user plugin configuration file.
/etc/zarafa/unix.cfg
- The Zarafa Unix user plugin configuration file.