This commit is contained in:
Elizabeth Hunt 2024-07-18 00:45:18 -04:00
parent d314a5197b
commit 3571bc3d32
3 changed files with 13 additions and 1 deletions

View File

@ -65,6 +65,14 @@
group: root
mode: 0777
- name: Build roundcube ssl 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
ansible.builtin.template:
src: docker-compose.yml.j2

View File

@ -5,7 +5,6 @@ services:
image: roundcube/roundcubemail:latest
restart: always
volumes:
- ./docker-data/roundcube/www:/var/www/html
- ./docker-data/roundcube/db/sqlite:/var/roundcube/db
- ./docker-data/roundcube/config:/var/roundcube/config
ports:

View 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),
);