Subversion Repositories configs

Rev

Rev 43 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
##############################################################
2
# GATEWAY SETTINGS
3
 
4
server_bind	=	0.0.0.0
5
 
6
# Please refer to the administrator manual or manpage why HTTP is used rather than the UNIX socket.
7
server_socket	=	http://localhost:236/zarafa
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.
45 - 11
#server_hostname = homeserver.ujsoftware.com
12
server_hostname =
4 - 13
 
14
# Whether to show the hostname in the logon greeting to clients.
43 - 15
server_hostname_greeting = no
4 - 16
 
17
# drop privileges and run the process as this user
18
run_as_user = zarafa
19
 
20
# drop privileges and run the process as this group
21
run_as_group = zarafa
22
 
23
# create a pid file for stopping the service via the init.d scripts
24
pid_file = /var/run/zarafa-gateway.pid
25
 
26
# run server in this path (when not using the -F switch)
27
running_path = /
28
 
29
# create memory coredumps upon crash in the running_path directory
30
coredump_enabled = no
31
 
32
# enable/disable POP3, and POP3 listen port
33
pop3_enable	=	yes
34
pop3_port	=	110
35
 
36
# enable/disable Secure POP3, and Secure POP3 listen port
37
pop3s_enable	=	no
38
pop3s_port	=	995
39
 
40
# enable/disable IMAP, and IMAP listen port
41
imap_enable	=	yes
42
imap_port	=	143
43
 
44
# enable/disable Secure IMAP, and Secure IMAP listen port
45
imaps_enable	=	no
46
imaps_port	=	993
47
 
48
# Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too)
49
imap_only_mailfolders	=	yes
50
 
51
# Show Public folders for IMAP
52
imap_public_folders	=	yes
53
 
54
# IMAP clients may use IDLE command
55
imap_capability_idle = yes
56
 
57
# The maximum size of an email that can be uploaded to the gateway
58
imap_max_messagesize = 128M
59
 
60
# Override the e-mail charset and generate using utf-8 (when imap data is not present on the item)
61
imap_generate_utf8 = no
62
 
63
# Internally issue the expunge command to directly delete e-mail marked for deletion in IMAP.
64
imap_expunge_on_delete = no
65
 
66
# Store full rfc822 message during APPEND
67
imap_store_rfc822 = yes
68
 
69
# Maximum count of allowed failed IMAP command counts per client
70
imap_max_fail_commands = 10
71
 
5 - 72
# Disable all plaintext authentications unless SSL/TLS is used
73
disable_plaintext_auth = no
74
 
4 - 75
# File with RSA key for SSL
76
ssl_private_key_file	=	/etc/zarafa/gateway/privkey.pem
77
 
78
#File with certificate for SSL
79
ssl_certificate_file	=	/etc/zarafa/gateway/cert.pem
80
 
81
# Verify client certificate
82
ssl_verify_client	=	no
83
 
84
# Client verify file and/or path
85
ssl_verify_file		=
86
ssl_verify_path		=
87
 
23 - 88
# SSL protocols to use, set to '!SSLv2' for 'ssl_enable_v2 = no'
89
ssl_protocols = !SSLv2
4 - 90
 
23 - 91
# SSL ciphers to use, set to 'ALL' for backward compatibility
92
ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL
93
 
94
# Prefer the server's order of SSL ciphers over client's
95
ssl_prefer_server_ciphers = no
96
 
4 - 97
# Process model, using pthreads (thread) or processes (fork)
43 - 98
# Processes are potentially safer from a security point of view.
4 - 99
process_model = fork
100
 
43 - 101
# For temporary files.
102
# consider mounting a `tmpfs' underneath this path (wherever you
103
# point it to)
104
tmp_path = /tmp
105
 
4 - 106
##############################################################
107
# GATEWAY LOG SETTINGS
108
 
109
# Logging method (syslog, file)
110
log_method	=	file
111
 
112
# Loglevel (0=no logging, 5=full logging)
113
log_level	=	2
114
 
115
# Logfile for log_method = file, use '-' for stderr
116
log_file	=	/var/log/zarafa/gateway.log
117
 
118
# Log timestamp - prefix each log line with timestamp in 'file' logging mode
119
log_timestamp	=	1
43 - 120
 
121
# Buffer logging in what sized blocks.
122
# Bigger buffers is better for the performance but it gives lag
123
# when running e.g. multitail or 'tail -f' on the log-file. If
124
# you want to directly see what is happing, set this to e.g. 1.
125
# So when debugging: make it a small value, else set it to
126
# 4096 or more.
127
log_buffer_size  = 4096