설명 없음
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.

dovecot.yml 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 9.3 for Dovecot on Ubuntu Trusty
  13. apt: pkg=postgresql-9.3 state=present
  14. when: ansible_distribution_release == 'trusty'
  15. tags:
  16. - dependencies
  17. - name: Install Postgres 9.4 for Dovecot on Debian Jessie
  18. apt: pkg=postgresql-9.4 state=present
  19. when: ansible_distribution_release == 'jessie'
  20. tags:
  21. - dependencies
  22. - name: Create vmail group
  23. group: name=vmail state=present gid=5000
  24. - name: Create vmail user
  25. user: name=vmail group=vmail state=present uid=5000 home=/decrypted shell=/usr/sbin/nologin
  26. - name: Ensure mail domain directories are in place
  27. file: state=directory path=/decrypted/{{ item.name }} owner=vmail group=dovecot mode=770
  28. with_items: mail_virtual_domains
  29. - name: Ensure mail directories are in place
  30. file: state=directory path=/decrypted/{{ item.domain }}/{{ item.account }} owner=vmail group=dovecot
  31. with_items: mail_virtual_users
  32. - name: Copy dovecot.conf into place
  33. copy: src=etc_dovecot_dovecot.conf dest=/etc/dovecot/dovecot.conf
  34. - name: Copy additional Dovecot configuration files in place
  35. copy: src=etc_dovecot_conf.d_{{ item }} dest=/etc/dovecot/conf.d/{{ item }}
  36. with_items:
  37. - 10-auth.conf
  38. - 10-mail.conf
  39. - 10-master.conf
  40. - 10-ssl.conf
  41. - auth-sql.conf.ext
  42. notify: restart dovecot
  43. - name: Template 15-lda.conf
  44. template: src=etc_dovecot_conf.d_15-lda.conf.j2 dest=/etc/dovecot/conf.d/15-lda.conf
  45. notify: restart dovecot
  46. - name: Template dovecot-sql.conf.ext
  47. template: src=etc_dovecot_dovecot-sql.conf.ext.j2 dest=/etc/dovecot/dovecot-sql.conf.ext
  48. notify: restart dovecot
  49. - name: Ensure correct permissions on Dovecot config directory
  50. file: state=directory path=/etc/dovecot
  51. group=dovecot owner=vmail mode=770 recurse=yes
  52. notify: restart dovecot
  53. - name: Set firewall rules for dovecot
  54. ufw: rule=allow port={{ item }} proto=tcp
  55. with_items:
  56. - imaps
  57. - pop3s