2019-10-02 19:02:27 -03:00

40 lines
984 B
YAML

---
# domain, webroot
roundcube_domain: default
roundcube_web_root: /roundcube
roundcube_version: 1.3.10
# container
roundcube_image: eumau/roundcubemail:{{ roundcube_version }}
roundcube_container: roundcube
roundcube_volume: roundcube
# mysql, mariadb, postgresql
roundcube_db_type: sqlite
roundcube_db_host: localhost
roundcube_db_port: "{{ '5432' if 'post' in roundcube_db_type else '3306' }}"
roundcube_db_user: roundcube
roundcube_db_password: password
roundcube_db_name:
roundcube{{ '.sqlite' if roundcube_db_type == 'sqlite' else '' }}
# data dir (inside container)
roundcube_data_dir: /var/www/html
# imap
roundcube_imap_host: "tls://{{ dovecot_container | default('localhost') }}"
roundcube_imap_port: "143"
# smtp
roundcube_smtp_host: "tls://{{ dovecot_container | default('localhost') }}"
roundcube_smtp_port: "587"
# plugins
roundcube_plugins: []
# upload max filesize
roundcube_upload_max_filesize: 40M
# definido por rol docker
docker_network_name: dockernet