No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

roundcube.yml 1000B

1234567891011121314151617181920212223
  1. - name: Install Roundcube
  2. apt: pkg={{ item }} state=latest
  3. with_items:
  4. - roundcube
  5. - roundcube-plugins
  6. - roundcube-pgsql
  7. - name: Configure Roundcube database
  8. template: src=etc_dbconfig-common_roundcube.conf.j2 dest=/etc/dbconfig-common/roundcube.conf group=root owner=root force=yes
  9. - name: Configure the Apache HTTP server for roundcube
  10. template: src=etc_apache2_sites-available_roundcube.j2 dest=/etc/apache2/sites-available/roundcube group=www-data owner=www-data force=yes
  11. - name: Configure roundcube
  12. copy: src=etc_roundcube_main.inc.php dest=/etc/roundcube/main.inc.php group=www-data owner=root mode=640 force=yes
  13. - name: Configure roundcube's managesieve plugin
  14. copy: src=usr_share_roundcube_plugins_managesieve_config.inc.php dest=/usr/share/roundcube/plugins/managesieve/config.inc.php group=www-data owner=root mode=640 force=yes
  15. - name: Enable roundcube site
  16. command: a2ensite roundcube creates=/etc/apache2/sites-enabled/roundcube
  17. notify: restart apache