• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Postfix Not delivering. Qmail Errors in log

A

AntonioS

Guest
Hi All,

I have a plesk server with Postfix not sending mail from yesterday evening.

I am mad searching for the reason but I can't get it work. The errors I see on logs are:

Jul 21 12:30:40 delta postfix-local[10342]: File .qmail is writable for group or others
Jul 21 12:30:40 delta postfix-local[10342]: Wrong permissions for .qmail

I can't undestand this error, I am using Postfix and so I don't know how to solve it.

Greeted in advance for the help
 
It means...

It means the file is writable by the group and/or any other user.

Check file permissions on the directory (ls -lah), and you should see something like this:

-rw-rw-rw-

The first 3 permissions are for the owner, the second for the group, third for all others.

You should remove write permissions for the group using the command:

chmod g-w <filename>

or for all others

chmog o-w <filename>

Hope this helps
 
Back
Top