auth-deny.conf.ext.erb 486 B

123456789101112131415
  1. # Deny access for users. Included from auth.conf.
  2. # Users can be (temporarily) disabled by adding a passdb with deny=yes.
  3. # If the user is found from that database, authentication will fail.
  4. # The deny passdb should always be specified before others, so it gets
  5. # checked first.
  6. # Example deny passdb using passwd-file. You can use any passdb though.
  7. passdb {
  8. driver = passwd-file
  9. deny = yes
  10. # File contains a list of usernames, one per line
  11. args = /etc/dovecot/deny-users
  12. }