1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'manifests/gateway/params.pp', line 1
class zarafa::gateway::params {
$server_bind = "0.0.0.0"
$server_socket = "http://localhost:236/zarafa"
$server_hostname = ""
$server_hostname_greeting = "no"
$run_as_user = ""
$run_as_group = ""
$pid_file = "/var/run/zarafa-gateway.pid"
$running_path = "/"
$pop3_enable = "yes"
$pop3_port = "110"
$pop3s_enable = "no"
$pop3s_port = "995"
$imap_enable = "yes"
$imap_port = "143"
$imaps_enable = "no"
$imaps_port = "993"
$imap_only_mailfolders = "yes"
$imap_public_folders = "yes"
$imap_capability_idle = "yes"
$imap_max_messagesize = "128M"
$imap_generate_utf8 = "no"
$imap_expunge_on_delete = "no"
$imap_store_rfc822 = "yes"
$imap_max_fail_commands = "10"
$ssl_private_key_file = "/etc/zarafa/gateway/privkey.pem"
$ssl_certificate_file = "/etc/zarafa/gateway/cert.pem"
$ssl_verify_client = "no"
$ssl_verify_file = ""
$ssl_verify_path = ""
$ssl_enable_v2 = "no"
$process_model = "fork"
$log_method = "file"
$log_level = "2"
$log_file = "/var/log/zarafa/gateway.log"
$log_timestamp = "1"
}
|