diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-31 20:18:32 -0400 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-31 20:18:32 -0400 |
commit | b2fae5840772f26e9b2f26d318ad6aaf5e4b550f (patch) | |
tree | 7c1813882ac5d372c6d2d4b99edcdc847e91b441 /roles/roundcube | |
parent | b566e9385082678bc2f75e0712d856fa1c64c94c (diff) | |
download | oldinfra-b2fae5840772f26e9b2f26d318ad6aaf5e4b550f.tar.gz oldinfra-b2fae5840772f26e9b2f26d318ad6aaf5e4b550f.zip |
sieve + acl updates
Diffstat (limited to 'roles/roundcube')
-rw-r--r-- | roles/roundcube/templates/docker-compose.yml.j2 | 1 | ||||
-rw-r--r-- | roles/roundcube/templates/sieve.inc.php.j2 | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/roles/roundcube/templates/docker-compose.yml.j2 b/roles/roundcube/templates/docker-compose.yml.j2 index e29d400..1860459 100644 --- a/roles/roundcube/templates/docker-compose.yml.j2 +++ b/roles/roundcube/templates/docker-compose.yml.j2 @@ -19,4 +19,5 @@ services: - ROUNDCUBEMAIL_DEFAULT_HOST=ssl://mail.simponic.xyz - ROUNDCUBEMAIL_DEFAULT_PORT=993 - ROUNDCUBEMAIL_SMTP_SERVER=tls://mail.simponic.xyz + - ROUNDCUBEMAIL_PLUGINS=archive,zipdownload,managesieve,markasjunk - ROUNDCUBEMAIL_SMTP_PORT=587 diff --git a/roles/roundcube/templates/sieve.inc.php.j2 b/roles/roundcube/templates/sieve.inc.php.j2 new file mode 100644 index 0000000..8970ff3 --- /dev/null +++ b/roles/roundcube/templates/sieve.inc.php.j2 @@ -0,0 +1,4 @@ +<?php + +$config['managesieve_host'] = "tls://mail.simponic.xyz"; +$config['managesieve_auth_type'] = "PLAIN"; |