Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

autoconfig.yml 954B

12345678910111213141516171819202122
  1. ---
  2. #
  3. # Autoconfig XML file for email clients
  4. # https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration
  5. #
  6. - name: Create directory for mail autoconfiguration virtualhost
  7. file: state=directory path=/var/www/autoconfig group=www-data owner=root
  8. - name: Create directory holding the autoconfig XML file
  9. file: state=directory path=/var/www/autoconfig/mail group=www-data owner=root
  10. - name: Create the autoconfig XML file
  11. template: src=var_www_autoconfig_mail_config-v1.1.j2 dest=/var/www/autoconfig/mail/config-v1.1.xml group=www-data owner=root
  12. - name: Configure the mail autoconfiguration virtualhost
  13. template: src=etc_apache2_sites-available_autoconfig.j2 dest=/etc/apache2/sites-available/autoconfig.conf group=root owner=root
  14. notify: restart apache
  15. - name: Enable the mail autoconfiguration virtualhost
  16. command: a2ensite autoconfig.conf creates=/etc/apache2/sites-enabled/autoconfig.conf
  17. notify: restart apache