• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

_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