Browse Source

managesieve typo, here's what happens when you don't unit test your files ...

pull/1/head
theonlydoo 9 years ago
parent
commit
8bfd5e1494
2 changed files with 3 additions and 4 deletions
  1. +3
    -3
      roles/mail/templates/dovecot.conf
  2. +0
    -1
      roles/mail/templates/root-postfix.sql

+ 3
- 3
roles/mail/templates/dovecot.conf View File

@ -26,9 +26,6 @@ service auth {
}
}
service managesieve-login {
executable = /usr/lib/dovecot/managesieve-login
}
service managesieve {
inet_listener sieve {
port = 4190
}
@ -37,6 +34,9 @@ service managesieve {
vsz_limit = 64 M
executable = /usr/lib/dovecot/managesieve-login
}
service managesieve {
executable = /usr/lib/dovecot/managesieve
}
userdb {
args = /etc/dovecot/dovecot-mysql.conf
driver = sql

+ 0
- 1
roles/mail/templates/root-postfix.sql View File

@ -1,5 +1,4 @@
DROP DATABASE IF EXISTS postfix;
DROP USER 'postfix'@'%';
CREATE DATABASE postfix;
GRANT ALL PRIVILEGES ON postfix.* TO 'postfix'@'%' IDENTIFIED BY '{{ dbpassword.stdout }}';
GRANT SELECT ON postfix.* TO 'postfix'@'%' IDENTIFIED BY '{{ dbpassword.stdout }}';

Loading…
Cancel
Save