roundcube: use imapproxy

This commit is contained in:
Victor LABORIE 2017-10-24 18:53:22 +02:00
parent 628a043ba7
commit e10166249d
3 changed files with 19 additions and 0 deletions

15
imapproxy/tasks/main.yml Normal file
View File

@ -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

View File

@ -0,0 +1,3 @@
---
dependencies:
- { role: imapproxy }

View File

@ -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/' }