Jun 16 09:47:14 myhostname postfix/local[25474]: C269521F8C: to=
You're running into SELinux denials for local mail delivery. In Fedora, correct that with:
# togglesebool allow_postfix_local_write_mail_spool
EDIT: I just realized that togglesebool only changes the running config and does not survive reboots. The permanent fix is:
# setsebool -P allow_postfix_local_write_mail_spool 1
2 comments:
you forgot the value "1" after the boolean, so the command should be:
setsebool -P allow_postfix_local_write_mail_spool 1
Thanks for the catch. I updated the original post.
Post a Comment