0

I have Zimbra 8.0 running over Ubuntu work fine but I have a warning:

postfix/postdrop[XXXX]: warning: mail_queue_enter: create file maildrop/XXXXX.XXXXX permissions denied

The problem is that 800MB were generated for this warning in only 4 days.

I've tried:

  • executing zmfixperms as superuser
  • executing zmfixperms -e as superuser
  • executing zmfixperms --extended as superuser
  • changing owner/group queue_directory to postfix/postdrop
  • set full permissions (rwx) to queue_directory

And log is still growing

queue_directory: /opt/zimbra/data/postfix/spool

drwxr-xr-x root    root     /opt/zimbra/data/postfix/spool 
drwx------ postfix postdrop /opt/zimbra/data/postfix/spool/maildrop
ThoriumBR
  • 5,272
  • 2
  • 23
  • 34
rkmax
  • 178
  • 8
  • 27

1 Answers1

2

I just ran into the same problem. Turns out that postdrop was still running as the zimbra user after having fixed permissions and restarting zimbra.

Bringing down zimbra and then killing the postdrop task fixed it:

$ sudo su -
$ service zimbra stop
$ killall postdrop
$ service zimbra start
dawud
  • 14,918
  • 3
  • 41
  • 61