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
|
# File 'manifests/spooler/params.pp', line 1
class zarafa::spooler::params {
$smtp_server = "localhost"
$smtp_port = "25"
$server_socket = "file:///var/run/zarafa"
$run_as_user = ""
$run_as_group = ""
$pid_file = "/var/run/zarafa-spooler.pid"
$running_path = "/"
$log_method = "file"
$log_level = "3"
$log_file = "/var/log/zarafa/spooler.log"
$log_timestamp = "1"
$sslkey_file = "/etc/zarafa/ssl/spooler.pem"
$sslkey_pass = "replace-with-server-cert-password"
$max_threads = "5"
$fax_domain = "fax.local"
$fax_international = "00"
$always_send_delegates = "no"
$allow_redirect_spoofing = "yes"
$copy_delegate_mails = "yes"
$allow_delegate_meeting_request = "yes"
$allow_send_to_everyone = "yes"
$always_send_tnef = "no"
$always_send_utf8 = "no"
$charset_upgrade = "windows-1252"
$enable_dsn = "yes"
$expand_groups = "no"
$archive_on_send = "no"
$plugin_enabled = "yes"
$plugin_manager_path = "/usr/share/zarafa-spooler/python"
$plugin_path = "/var/lib/zarafa/spooler/plugins"
}
|