• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

_no_mailbox_here_by_that_name

C

Catfish

Guest
I'm struggling with a qmail problem here - all incoming mail is being bounced with the following error:

Aug 6 23:55:04 s15210971 qmail: 1154904904.427979 starting delivery 158: msg 251664084 to local blah@mydomain
Aug 6 23:55:04 s15210971 qmail: 1154904904.428869 status: local 1/10 remote 0/20
Aug 6 23:55:04 s15210971 qmail: 1154904904.429273 delivery 158: failure: Sorry,_no_mailbox_here_by_that_name._(#5.1.1)/
Aug 6 23:55:04 s15210971 qmail: 1154904904.429779 status: local 0/10 remote 0/20
Aug 6 23:55:04 s15210971 qmail: 1154904904.432906 bounce msg 251664084 qp 12006


the domain is listed in locals & rcpthosts. As far as I can tell, permissions are fine. I've tried deleting accounts & re-creating them, and just get the same error. I don't understand why it's just producing that error and bouncing, rather than falling through to the default account.

Any ideas, anyone?

Cat
 
Almost the same issue

All emails from gmail.com are bouncing...

But fine from comcast.net?

I've turned off Dr.Web anti-virus, but doesn't seem to help, so I turned it back on.
 
Make sure that the POP3 lock time is set to 20 minutes in PLESK -> Server -> Mail -> POP3 lock time


Make sure that the IP which the domain name is using has the IP block added to the Servers email white list: PLESK -> Server -> Mail -> WhiteList IE: 127.0.0.1/32

Make sure GID of user 'popuser' equals to 110 in /etc/passwd
and /etc/group. If it doesn't, change it to 110. The lines in the files
must be:

/etc/passwd:
popuser:x:110:110:pOP3 service user:/:/bin/false

/etc/group:
popuser:x:110:

If not, run:
# /usr/sbin/groupmod -g 110 popuser
# /usr/sbin/usermod -g 110 popuser

Run the following command to rebuild qmail configuration files:

# /usr/local/psa/admin/sbin/mchk --with-spam


Stop Qmail, disable SMTP xinetd service and run:

# find / -gid OLD_POPUSER_GID | awk '{print "chgrp popuser \""$0."\""}' | sh

# service xinetd restart

# service qmail restart

Make sure /var/qmail/bin/mm_wrapper has right permissions/ownership:

# ls -al /var/qmail/bin/mm_wrapper
-r-xr-sr-x 1 root mail 4740 Aug 24 13:26 /var/qmail/bin/mm_wrapper
 
Back
Top