説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

roundcube.yml 813B

12345678910111213141516171819
  1. - name: Install Roundcube
  2. apt: pkg={{ item }} state=latest
  3. with_items:
  4. - roundcube
  5. - roundcube-plugins
  6. - name: Configure the Apache HTTP server for roundcube
  7. template: src=etc_apache2_sites-available_roundcube.j2 dest=/etc/apache2/sites-available/roundcube group=www-data owner=www-data force=yes
  8. - name: Configure roundcube
  9. copy: src=etc_roundcube_main.inc.php dest=/etc/roundcube/main.inc.php group=www-data owner=root mode=640 force=yes
  10. - name: Configure roundcube's managesieve plugin
  11. 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
  12. - name: Enable roundcube site
  13. command: a2ensite roundcube creates=/etc/apache2/sites-enabled/roundcube
  14. notify: restart apache