diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2022-10-11 16:05:48 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2022-10-11 20:03:03 +0200 |
commit | eeadb037937ee1b5da6e084b98acb8f9c3242e2f (patch) | |
tree | 2bbf6687122d8cc0938bec1a4570c362047bdc80 /roles/IMAP | |
parent | 9c67e4f8e539638a6621803c3c18ce5723fbdcc6 (diff) |
Remove module ‘mysql_user2’.
These days upstream's ‘mysql_user’ is good enough.
Diffstat (limited to 'roles/IMAP')
-rw-r--r-- | roles/IMAP/tasks/spam.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/IMAP/tasks/spam.yml b/roles/IMAP/tasks/spam.yml index c275b55..d70ccc9 100644 --- a/roles/IMAP/tasks/spam.yml +++ b/roles/IMAP/tasks/spam.yml @@ -63,8 +63,8 @@ - name: Create a 'amavis' SQL user # This *must* be the user we run spamd as # See https://svn.apache.org/repos/asf/spamassassin/trunk/sql/README.bayes - mysql_user2: > - name=amavis password= auth_plugin=auth_socket + mysql_user: > + name=amavis password= plugin=auth_socket priv="spamassassin.awl: SELECT,INSERT,UPDATE,DELETE /spamassassin.bayes_seen: SELECT,INSERT, DELETE /spamassassin.bayes_token: SELECT,INSERT,UPDATE,DELETE |