• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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