diff --git a/imapproxy/tasks/main.yml b/imapproxy/tasks/main.yml new file mode 100644 index 00000000..0dc62a60 --- /dev/null +++ b/imapproxy/tasks/main.yml @@ -0,0 +1,15 @@ +--- +- name: install imapproxy + apt: + name: imapproxy + state: present + tags: + - imapproxy + +- name: enable imapproxy + service: + name: imapproxy + state: started + enabled: True + tags: + - imapproxy diff --git a/webapps/roundcube/meta/main.yml b/webapps/roundcube/meta/main.yml new file mode 100644 index 00000000..ddd0e27c --- /dev/null +++ b/webapps/roundcube/meta/main.yml @@ -0,0 +1,3 @@ +--- +dependencies: + - { role: imapproxy } diff --git a/webapps/roundcube/tasks/main.yml b/webapps/roundcube/tasks/main.yml index cf5a10b7..4b793967 100644 --- a/webapps/roundcube/tasks/main.yml +++ b/webapps/roundcube/tasks/main.yml @@ -8,6 +8,7 @@ with_items: - { key: 'roundcube/dbconfig-reinstall', type: 'boolean', value: 'true' } - { key: 'roundcube/language', type: 'select', value: 'fr_FR' } + - { key: 'roundcube/remote/port', type: 'string', value: '1143' } - { key: 'roundcube/hosts', type: 'string', value: '127.0.0.1' } - { key: 'roundcube/database-type', type: 'select', value: 'sqlite3' } - { key: 'roundcube/db/basepath', type: 'string', value: '/var/lib/roundcube/' }