diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2013-12-16 06:06:33 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:51:30 +0200 |
commit | b51df24e3b1b64c17a3aac652b142e2082c77a26 (patch) | |
tree | d2a4c1b42a0b4b43f535e934f06a2c87a0b2ade7 /roles/webmail/tasks | |
parent | 522ba399d24e8166681b328f550904fcd4d8fad9 (diff) |
Configure Sieve and ManageSieve.
Also, add the 'managesieve' RoundCube plugin to communicate with our
server.
Diffstat (limited to 'roles/webmail/tasks')
-rw-r--r-- | roles/webmail/tasks/roundcube.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roles/webmail/tasks/roundcube.yml b/roles/webmail/tasks/roundcube.yml index 21d4dff..2d8a8b9 100644 --- a/roles/webmail/tasks/roundcube.yml +++ b/roles/webmail/tasks/roundcube.yml @@ -37,7 +37,7 @@ - { var: username_domain, value: "'fripost.org'" } - { var: product_name, value: "'Fripost'" } # Plugins - - { var: plugins, value: "array('password','additional_message_headers')" } + - { var: plugins, value: "array('additional_message_headers','managesieve','password')" } # User Interface - { var: language, value: "'sv_SE'" } - { var: create_default_folders, value: "TRUE" } @@ -60,8 +60,9 @@ owner=root group=root mode=0644 with_items: - - password - additional_message_headers + - managesieve + - password - name: Start php5-fpm service: name=php5-fpm state=started |