Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

15 wiersze
811 B

  1. ---
  2. - name: Create the vmail group
  3. group: name=vmail gid=5000
  4. - name: Create the vmail user
  5. user: name=vmail uid=5000 group=vmail
  6. - name: Create mailbox directory
  7. file: path=/var/vmail state=directory owner=vmail group=vmail
  8. - name: Allow LOGIN authentication method for Outlook clients
  9. lineinfile: dest=/etc/dovecot/conf.d/10-auth.conf regexp='^auth_mechanisms =' line='auth_mechanisms = {{ispmail_dovecot_auth_mechanisms}}' backrefs=yes
  10. - name: Disabling system authentication
  11. lineinfile: dest=/etc/dovecot/conf.d/10-auth.conf regexp='^!include auth-system.conf.ext' line='#!include auth-system.conf.ext' backrefs=yes
  12. - name: Enabling SQL-based authentication
  13. lineinfile: dest=/etc/dovecot/conf.d/10-auth.conf regexp='^\#!include auth-sql.conf.ext' line='!include auth-sql.conf.ext' backrefs=yes