[horde] Gardening
parent
ad0f9b6f5a
commit
ee912e4838
|
@ -2,16 +2,9 @@
|
||||||
glob_horde:
|
glob_horde:
|
||||||
secret: '{{ vault.horde.secret }}'
|
secret: '{{ vault.horde.secret }}'
|
||||||
imap: imap.adm.crans.org
|
imap: imap.adm.crans.org
|
||||||
smtp: smtp.adm.crans.org
|
|
||||||
maildomain: crans.org
|
maildomain: crans.org
|
||||||
db: pgsql.adm.crans.org
|
db: pgsql.adm.crans.org
|
||||||
admins:
|
admins: "{{ vault.horde.admins }}"
|
||||||
- "'paulon'"
|
|
||||||
- "'vulcain'"
|
|
||||||
- "'graillot'"
|
|
||||||
- "'bombar'"
|
|
||||||
- "'pa'"
|
|
||||||
- "'erdnaxe'"
|
|
||||||
redirection: https://wiki.crans.org/VieCrans/PagesDeDeconnexion/ERR_CHOOSE_WEBMAIL
|
redirection: https://wiki.crans.org/VieCrans/PagesDeDeconnexion/ERR_CHOOSE_WEBMAIL
|
||||||
src_hostname: horde.crans.org
|
src_hostname: horde.crans.org
|
||||||
dest_hostname: webmail.crans.org
|
dest_hostname: webmail.crans.org
|
||||||
|
@ -21,3 +14,5 @@ glob_horde:
|
||||||
zone_ipv6: fd00:0:0:10::/64
|
zone_ipv6: fd00:0:0:10::/64
|
||||||
ipv4: "{{ query('ldap', 'ip4', ansible_hostname, 'adm') }}"
|
ipv4: "{{ query('ldap', 'ip4', ansible_hostname, 'adm') }}"
|
||||||
ipv6: "{{ query('ldap', 'ip6', ansible_hostname, 'adm') }}"
|
ipv6: "{{ query('ldap', 'ip6', ansible_hostname, 'adm') }}"
|
||||||
|
mailer:
|
||||||
|
host: redisdead.adm.crans.org
|
||||||
|
|
|
@ -88,9 +88,12 @@ $conf['history']['params']['driverconfig'] = 'horde';
|
||||||
$conf['history']['driver'] = 'Sql';
|
$conf['history']['driver'] = 'Sql';
|
||||||
$conf['davstorage']['params']['driverconfig'] = 'horde';
|
$conf['davstorage']['params']['driverconfig'] = 'horde';
|
||||||
$conf['davstorage']['driver'] = 'Sql';
|
$conf['davstorage']['driver'] = 'Sql';
|
||||||
$conf['mailer']['params']['sendmail_path'] = '/usr/lib/sendmail';
|
$conf['mailer']['type'] = 'smtp';
|
||||||
$conf['mailer']['params']['sendmail_args'] = '-oi';
|
$conf['mailer']['params']['host'] = '{{ horde.mailer.host }}';
|
||||||
$conf['mailer']['type'] = 'sendmail';
|
$conf['mailer']['params']['port'] = 587;
|
||||||
|
$conf['mailer']['params']['auth'] = true;
|
||||||
|
$conf['mailer']['params']['username_auth'] = true;
|
||||||
|
$conf['mailer']['params']['password_auth'] = true;
|
||||||
$conf['vfs']['params']['driverconfig'] = 'horde';
|
$conf['vfs']['params']['driverconfig'] = 'horde';
|
||||||
$conf['vfs']['type'] = 'Sql';
|
$conf['vfs']['type'] = 'Sql';
|
||||||
$conf['sessionhandler']['type'] = 'Builtin';
|
$conf['sessionhandler']['type'] = 'Builtin';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{{ ansible_header | comment(decoration='// ') }}
|
{{ ansible_header | comment(decoration='// ') }}
|
||||||
<?php
|
<?php
|
||||||
$servers['imp'] = array(
|
$servers['advanced'] = array(
|
||||||
// Disabled by default
|
// Disabled by default
|
||||||
'disabled' => false,
|
'disabled' => false,
|
||||||
'name' => 'IMAP Cr@ns',
|
'name' => 'IMAP Cr@ns',
|
||||||
|
@ -11,8 +11,10 @@ $servers['imp'] = array(
|
||||||
'secure' => 'tls',
|
'secure' => 'tls',
|
||||||
'maildomain' => '{{ horde.maildomain }}',
|
'maildomain' => '{{ horde.maildomain }}',
|
||||||
'smtp' => array(
|
'smtp' => array(
|
||||||
'host' => '{{ horde.smtp }}',
|
'auth' => true,
|
||||||
'port' => 25,
|
'horde_auth' => true,
|
||||||
|
'host' => '{{ horde.mailer.host }}',
|
||||||
|
'port' => 587,
|
||||||
),
|
),
|
||||||
'cache' => false,
|
'cache' => false,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue