fix
This commit is contained in:
parent
5593f9530f
commit
8c469092fc
@ -65,6 +65,14 @@
|
|||||||
group: root
|
group: root
|
||||||
mode: 0777
|
mode: 0777
|
||||||
|
|
||||||
|
- name: Build roundcube sieve plugin config
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: ssl.inc.php.j2
|
||||||
|
dest: /etc/docker/compose/mail/docker-data/roundcube/config/ssl.inc.php
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0777
|
||||||
|
|
||||||
- name: Build mail docker-compose.yml.j2
|
- name: Build mail docker-compose.yml.j2
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: docker-compose.yml.j2
|
src: docker-compose.yml.j2
|
||||||
|
@ -9,7 +9,6 @@ services:
|
|||||||
options:
|
options:
|
||||||
max-size: "200m"
|
max-size: "200m"
|
||||||
volumes:
|
volumes:
|
||||||
- ./docker-data/roundcube/www:/var/www/html
|
|
||||||
- ./docker-data/roundcube/db/sqlite:/var/roundcube/db
|
- ./docker-data/roundcube/db/sqlite:/var/roundcube/db
|
||||||
- ./docker-data/roundcube/config:/var/roundcube/config
|
- ./docker-data/roundcube/config:/var/roundcube/config
|
||||||
ports:
|
ports:
|
||||||
|
5
playbooks/roles/mail/templates/ssl.inc.php.j2
Normal file
5
playbooks/roles/mail/templates/ssl.inc.php.j2
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
$config['imap_conn_options'] = array(
|
||||||
|
'ssl' => array('verify_peer' => true, 'verify_peer_name' => false),
|
||||||
|
'tls' => array('verify_peer' => true, 'verify_peer_name' => false),
|
||||||
|
);
|
Loading…
Reference in New Issue
Block a user