auth-master.conf.ext.erb 558 B

12345678910111213141516
  1. # Authentication for master users. Included from auth.conf.
  2. # By adding master=yes setting inside a passdb you make the passdb a list
  3. # of "master users", who can log in as anyone else.
  4. # <doc/wiki/Authentication.MasterUsers.txt>
  5. # Example master user passdb using passwd-file. You can use any passdb though.
  6. passdb {
  7. driver = passwd-file
  8. master = yes
  9. args = /etc/dovecot/master-users
  10. # Unless you're using PAM, you probably still want the destination user to
  11. # be looked up from passdb that it really exists. pass=yes does that.
  12. pass = yes
  13. }