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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# File 'manifests/params.pp', line 1
class roundcube::params {
#database params
$confdir = '/etc/roundcube'
$database_host = $::fqdn
$database_port = '5432'
$database_name = 'roundcubedb'
$database_username = 'roundcubedb'
$database_password = 'roundcubedb'
$database_ssl = false
$postgres_listen_addresses = $::fqdn
$roundcube_backend = 'pgsql'
$roundcube_webserver = 'apache'
$ip_mask_allow_all_users = '0.0.0.0/0'
#spellchecker params
$spellcheck_engine = 'googie'
$spellcheck_languages = []
#webserver params
$apt_mirror = 'http://ftp.debian.org/debian'
$apt_release = $::lsbdistcodename
$config_inc_php_erb = 'roundcube/config.inc.php.erb'
$plugins = undef
$default_host = ''
$default_vhost_on = true
$default_mods = false
$default_confd_files = false
$des_key = 'rcmail-!24ByteDESkey*Str'
$mpm_module = 'prefork'
$force_https = false
$imap_auth_type = 'null'
$log_logins = false
$servername = $::fqdn
$serveraliases = []
$skin = 'larry'
$smtp_server = ''
$smtp_port = 25
$smtp_user = ''
$smtp_pass = ''
$smtp_auth_type = ''
$timezone = 'auto'
$documentroot = '/var/lib/roundcube'
$purge_configs = true
$reconfigure_command = '/usr/sbin/dpkg-reconfigure'
$scriptaliases = [ { alias => '/program/js/tiny_mce/',
path => '/usr/share/tinymce/www/' } ]
$apache_port = '80'
$addhandlers = []
$ssl = false
$ssl_ca = undef
$ssl_cert = undef
$ssl_key = undef
$redirect_to_ssl = false
$suphp_user = 'roundcube'
$suphp_group = 'roundcube'
$rewrites = undef
$directories = [ { path => $documentroot,
options => '+FollowSymLinks',
allow_override => 'All',
order => 'allow,deny',
allow => 'from all' },
{ path => "${documentroot}/config",
options => '-FollowSymLinks',
allow_override => 'None' },
{ path => "${documentroot}/temp",
options => '-FollowSymLinks',
allow_override => 'None',
order => 'allow,deny',
deny => 'from all' },
{ path => "${documentroot}/logs",
options => '-FollowSymLinks',
allow_override => 'None',
order => 'allow,deny',
deny => 'from all' },
{ path => '/usr/share/tinymce/www/',
options => 'Indexes MultiViews FollowSymLinks',
allow_override => 'None',
order => 'allow,deny',
allow => 'from all' } ]
}
|