Change the sender email of logwatch on RH Linux
Im running logwatch on red hat 7 it sends mails using [email protected] however, the email from localhost.localdomain is not received at the recipient because localhost.localdomain is not registered. I want to change logwatch or mail to send from for example [email protected] instead of [email protected]. Can anyone help me? I have already tried changing logwatch.conf with MailFrom = [email protected] but did not work. Logwatch is using mail (not sendmail) .
Solution 1:
cf/README - Who Am I?
You may define confDOMAIN_NAME
in sendmail.mc
:
define(`confDOMAIN_NAME', `Real.Host.Name')dnl
P.S. After changing sendmail.mc
generate new sendmail.cf
.
Solution 2:
In your /etc/mail/sendmail.mc
add the following lines at the end:
LOCAL_CONFIG
DjReal.Host.Name
Where Real.Host.Name
is the real host name of the machine. $j
is the macro that holds the hostname. After that rebuild sendmail.cf
and restart sendmail. In Debian you do this by running sendmailconfig
. In CentOS you first run /etc/mail/mail
and then service sendmail restart
.