12345678910111213141516171819202122 |
- ---
- #
- # Autoconfig XML file for email clients
- # https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration
- #
-
- - name: Create directory for mail autoconfiguration virtualhost
- file: state=directory path=/var/www/autoconfig group=www-data owner=root
-
- - name: Create directory holding the autoconfig XML file
- file: state=directory path=/var/www/autoconfig/mail group=www-data owner=root
-
- - name: Create the autoconfig XML file
- template: src=var_www_autoconfig_mail_config-v1.1.j2 dest=/var/www/autoconfig/mail/config-v1.1.xml group=www-data owner=root
-
- - name: Configure the mail autoconfiguration virtualhost
- template: src=etc_apache2_sites-available_autoconfig.j2 dest=/etc/apache2/sites-available/autoconfig.conf group=root owner=root
- notify: restart apache
-
- - name: Enable the mail autoconfiguration virtualhost
- command: a2ensite autoconfig.conf creates=/etc/apache2/sites-enabled/autoconfig.conf
- notify: restart apache
|