logins fail for virtual users (permission denied, we're not in group 5000)
I have:
Ubuntu 17.04
Dovecot 2.2.27 (c0f36b0)
Postfix 3.1.4
regular unix users with mail in /home/bob/Maildir
virtual users with mail in /var/mail/vhosts/domain.com/bob/
The regular users can receive mail as expected. When virtual users try to log in, it fails. The log shows an error like this:
2017-09-14 22:44:55 auth: Error: passwd-file(travler@travler.net,54.210.254.169,<EYwzYDFZWoY20v6p>): stat(/var/mail/vhosts/travler.net/shadow) failed: Permission denied (euid=114(dovecot) egid=121(dovecot) missing +x perm: /var/mail/vhosts, we're not in group 5000(vmail), dir owned by 5000:5000 mode=0750)
A previous user had a similar problem in 2015: https://dovecot.org/list/dovecot/2015-July/101469.html
He was advised to look at https://wiki2.dovecot.org/UserIds … without being given more specific advice. I looked at the page. I tried adding mail_uid and mail_gid. No luck.
In my case, I see: # sudo -u dovecot groups dovecot vmail
# sudo -u dovecot cat /var/mail/vhosts/travler.net/shadow <file contents>
I have a vmail user: # id vmail uid=5000(vmail) gid=5000(vmail) groups=5000(vmail)
# ls -la /var/mail/vhosts total 0 drwxr-s--- 1 vmail vmail 246 Jun 30 11:23 . drwxrwsrwt 1 mail mail 26 Dec 5 2016 .. drwxr-s--- 1 vmail vmail 66 Sep 14 23:11 travler.net
# ls -l /var/mail/vhosts/travler.net/ total 8 -rwxr-s--- 1 vmail vmail 174 Dec 5 2016 passwd -rwxr-s--- 1 vmail vmail 173 Dec 5 2016 shadow drwxr-s--- 1 vmail vmail 450 Sep 9 13:16 travis.belmont drwxr-s--- 1 vmail vmail 750 Sep 13 14:14 travler
I've set mail_gid and mail_uid # doveconf -n|grep id mail_gid = 5000 mail_uid = 5000
Here's my full config: # doveconf -n # 2.2.27 (c0f36b0): /etc/dovecot/dovecot.conf # Pigeonhole version 0.4.16 (fed8554) # OS: Linux 4.10.0-33-generic x86_64 Ubuntu 17.04 btrfs log_path = /var/log/dovecot log_timestamp = "%Y-%m-%d %H:%M:%S " mail_gid = 5000 mail_location = maildir:/home/%u/Maildir mail_privileged_group = mail mail_uid = 5000 namespace inbox { inbox = yes location = mailbox Drafts { special_use = \Drafts } mailbox Junk { special_use = \Junk } mailbox Sent { special_use = \Sent } mailbox "Sent Messages" { special_use = \Sent } mailbox Trash { special_use = \Trash } prefix = } passdb { driver = pam } passdb { args = username_format=%n /var/mail/vhosts/%d/shadow driver = passwd-file } plugin { sieve = file:~/sieve;active=~/.dovecot.sieve } protocols = " imap" service auth { unix_listener /var/spool/postfix/private/auth { mode = 0666 } } service imap-login { inet_listener imap { port = 0 } } ssl_cert = [snip] ssl_cipher_list = [snip] ssl_dh_parameters_length = 2048 ssl_key = # hidden, use -P to show it ssl_protocols = !SSLv3 !SSLv2 userdb { driver = passwd } userdb { args = username_format=%n /var/mail/vhosts/%d/passwd driver = passwd-file }
What do I need to set to get dovecot to run as vmail / fix this error?
Paul
On 15.09.2017 06:21, Paul Schreiber wrote:
I have:
Ubuntu 17.04
Dovecot 2.2.27 (c0f36b0)
Postfix 3.1.4
regular unix users with mail in /home/bob/Maildir
virtual users with mail in /var/mail/vhosts/domain.com/bob/
The regular users can receive mail as expected. When virtual users try to log in, it fails. The log shows an error like this:
2017-09-14 22:44:55 auth: Error: passwd-file(travler@travler.net,54.210.254.169,<EYwzYDFZWoY20v6p>): stat(/var/mail/vhosts/travler.net/shadow) failed: Permission denied (euid=114(dovecot) egid=121(dovecot) missing +x perm: /var/mail/vhosts, we're not in group 5000(vmail), dir owned by 5000:5000 mode=0750)
check
doveadm user travler@travler.net
you might be specifying uid/gid in passwd virtual passwd file.
Aki
On Fri, Sep 15, 2017 at 2:16 AM, Aki Tuomi aki.tuomi@dovecot.fi wrote:
check
doveadm user travler@travler.net
# doveadm user travler@travler.net field value userdb lookup: user travler@travler.net doesn't exist
you might be specifying uid/gid in passwd virtual passwd file.
Pasword file has lines like this: travler::5000:5000::/var/mail/vhosts/ travler.net/travler::userdb_mail=maildir:~
Paul
Followup:
Received help on serverfault.com. Fix was to edit 10-master.conf. In the service auth { … } section, setting either: extra_groups = vmail or group = vmail …allows things to work.
Is there a better way to fix/configure this?
thanks. Paul
On Sep 16, 2017, at 5:05 PM, Paul Schreiber paulschreiber@gmail.com wrote:
Followup:
Received help on serverfault.com. Fix was to edit 10-master.conf. In the service auth { … } section, setting either: extra_groups = vmail or group = vmail …allows things to work.
One thing that’s still a bit odd — even with logins working, I see two warnings in the log for each successful login:
2017-09-16 16:46:18 auth-worker(27699): Info: pam(paul@travler.net,204.15.194.116,<sGzTmVRZeuPMD8J0>): pam_authenticate() failed: Authentication failure (password mismatch?) 2017-09-16 16:46:18 auth-worker(27699): Info: passwd(paul@travler.net,204.15.194.116,<sGzTmVRZeuPMD8J0>): unknown user 2017-09-16 16:46:18 imap-login: Info: Login: user=paul@travler.net, method=PLAIN, rip=204.15.194.116, lip=204.15.194.116, mpid=27738, TLS, session=<sGzTmVRZeuPMD8J0>
How can I fix that?
Paul
participants (2)
-
Aki Tuomi
-
Paul Schreiber