ansible-roles/library/roles/roundcube/defaults/main.yml

31 lines
1.0 KiB
YAML

---
roundcube_version: 1.4.1
roundcube_dist_filename: 'roundcubemail-{{ roundcube_version }}-complete.tar.gz'
roundcube_download_url: 'https://github.com/roundcube/roundcubemail/releases/download/{{ roundcube_version }}/{{ roundcube_dist_filename }}'
roundcube_use_redis: True
roundcube_use_memcache: False
roundcube_web_basedir: /var/www/html
roundcube_web_root: '{{ roundcube_web_basedir }}/roundcube'
roundcube_data_base_dir: /srv
roundcube_data_dir: '{{ roundcube_data_base_dir }}/roundcube/data'
roundcube_oc_dir: '{{ roundcube_data_base_dir }}/roundcube/oc_keys'
roundcube_servername: '{{ ansible_fqdn }}'
roundcube_servernames:
- { webroot: '{{ roundcube_web_root }}', id: 1, name: '{{ roundcube_servername }}' }
roundcube_user: roundcube
roundcube_db: pgsql
roundcube_db_host: localhost
roundcube_db_name: roundcubemail
roundcube_db_user: roundcube_u
#roundcube_db_pwd: 'Use a vault file'
roundcube_admin_user: nc_admin
#roundcube_admin_u_pwd: 'Use a vault file'
roundcube_encryption_enabled: True
roundcube_ldap_auth: False