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
|
# File 'manifests/search/params.pp', line 1
class zarafa::search::params {
$index_path = "/var/lib/zarafa/index/"
$run_as_user = ""
$run_as_group = ""
$pid_file = "/var/run/zarafa-search.pid"
$running_path = "/"
$limit_results = "0"
$server_socket = "file:///var/run/zarafa"
$sslkey_file = "/etc/zarafa/ssl/search.pem"
$sslkey_pass = "replace-with-server-cert-password"
$server_bind_name = "file:///var/run/zarafa-search"
$ssl_private_key_file = ""
$ssl_certificate_file = ""
$log_method = "file"
$log_level = "2"
$log_file = "/var/log/zarafa/search.log"
$log_timestamp = "1"
$term_cache_size = "64M"
$optimize_start = "2"
$optimize_stop = "5"
$optimize_age = "7"
$index_attachments = "no"
$index_attachment_max_size = "5M"
$index_attachment_parser = "/etc/zarafa/searchscripts/attachments_parser"
$index_attachment_parser_max_memory = "0"
$index_attachment_parser_max_cputime = "0"
$index_attachment_mime_filter = ""
$index_attachment_extension_filter = ""
}
|