Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

dovecot.yml 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. - name: Install Dovecot and related packages
  2. apt: pkg={{ item }} update_cache=yes state=installed
  3. with_items:
  4. - dovecot-core
  5. - dovecot-imapd
  6. - dovecot-lmtpd
  7. - dovecot-managesieved
  8. - dovecot-pgsql
  9. - dovecot-pop3d
  10. tags:
  11. - dependencies
  12. - name: Install Postgres for Dovecot
  13. apt: pkg=postgresql state=present
  14. tags:
  15. - dependencies
  16. - name: Create vmail group
  17. group: name=vmail state=present gid=5000
  18. - name: Create vmail user
  19. user: name=vmail group=vmail state=present uid=5000 home=/decrypted shell=/usr/sbin/nologin
  20. - name: Ensure mail domain directories are in place
  21. file: state=directory path=/decrypted/{{ item.name }} owner=vmail group=dovecot mode=770
  22. with_items: mail_virtual_domains
  23. - name: Ensure mail directories are in place
  24. file: state=directory path=/decrypted/{{ item.domain }}/{{ item.account }} owner=vmail group=dovecot
  25. with_items: mail_virtual_users
  26. - name: Copy dovecot.conf into place
  27. copy: src=etc_dovecot_dovecot.conf dest=/etc/dovecot/dovecot.conf
  28. - name: Copy additional Dovecot configuration files in place
  29. copy: src=etc_dovecot_conf.d_{{ item }} dest=/etc/dovecot/conf.d/{{ item }}
  30. with_items:
  31. - 10-auth.conf
  32. - 10-mail.conf
  33. - 10-master.conf
  34. - 10-ssl.conf
  35. - auth-sql.conf.ext
  36. notify: restart dovecot
  37. - name: Template 15-lda.conf
  38. template: src=etc_dovecot_conf.d_15-lda.conf.j2 dest=/etc/dovecot/conf.d/15-lda.conf
  39. notify: restart dovecot
  40. - name: Template dovecot-sql.conf.ext
  41. template: src=etc_dovecot_dovecot-sql.conf.ext.j2 dest=/etc/dovecot/dovecot-sql.conf.ext
  42. notify: restart dovecot
  43. - name: Ensure correct permissions on Dovecot config directory
  44. file: state=directory path=/etc/dovecot
  45. group=dovecot owner=vmail mode=770 recurse=yes
  46. notify: restart dovecot
  47. - name: Set firewall rules for dovecot
  48. ufw: rule=allow port={{ item }} proto=tcp
  49. with_items:
  50. - imaps
  51. - pop3s
  52. tags: ufw