• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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