From 0e17bc4c0540c5c8fc884c783bda369ebf23c021 Mon Sep 17 00:00:00 2001 From: Paul Iannetta Date: Thu, 21 Apr 2022 23:23:15 +0200 Subject: add conf for dovecot as a local mail server --- .config/dovecot/conf.d/auth-master.conf.ext | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 .config/dovecot/conf.d/auth-master.conf.ext (limited to '.config/dovecot/conf.d/auth-master.conf.ext') diff --git a/.config/dovecot/conf.d/auth-master.conf.ext b/.config/dovecot/conf.d/auth-master.conf.ext new file mode 100755 index 0000000..2cf128f --- /dev/null +++ b/.config/dovecot/conf.d/auth-master.conf.ext @@ -0,0 +1,16 @@ +# Authentication for master users. Included from 10-auth.conf. + +# By adding master=yes setting inside a passdb you make the passdb a list +# of "master users", who can log in as anyone else. +# + +# Example master user passdb using passwd-file. You can use any passdb though. +passdb { + driver = passwd-file + master = yes + args = /etc/dovecot/master-users + + # Unless you're using PAM, you probably still want the destination user to + # be looked up from passdb that it really exists. pass=yes does that. + pass = yes +} -- cgit v1.2.3-54-g00ecf