[solved]
I have a problem while sending email as root from Debian machine. In exim panic log appears message:
2009-10-23 10:56:24 1N1Fwd-0001v5-Kh User 0 set for my_local_delivery_transport transport is on the fixed_never_users list
I've added to /etc/aliases:
root: [email protected]
But problem still persist.
Have somebody faced with type of issue?
[solved]
a) It works with sudo:
sudo -u user mail -s test [email protected]
b) It works with aliases (I forgot to issue newaliases command, thanks blank3)
Due to security concerns Exim4 will not send mail as root by default Search your config for "fixed_never_users" and remove root from the list or su/sudo to a non-privileged user when sending mail.
Could you use
su
orsudo
to send the mail as another user?