roundcube: install default plugins

This commit is contained in:
Victor LABORIE 2017-10-24 17:42:58 +02:00
parent 77b8a80753
commit 8e6d7ed568
1 changed files with 19 additions and 0 deletions

View File

@ -21,6 +21,25 @@
with_items: with_items:
- roundcube - roundcube
- roundcube-sqlite3 - roundcube-sqlite3
- roundcube-plugins
- php-net-sieve
tags:
- roundcube
- name: configure managesieve plugin
copy:
src: /usr/share/roundcube/plugins/managesieve/config.inc.php.dist
dest: /etc/roundcube/plugins/managesieve/config.inc.php
mode: "0644"
remote_src: True
tags:
- roundcube
- name: enable default plugins
replace:
dest: /etc/roundcube/config.inc.php
regexp: "^\\$config\\['plugins'\\] array($"
replace: "$config['plugins'] = array('zipdownload','managesieve'"
tags: tags:
- roundcube - roundcube