19 lines
531 B
Plaintext
19 lines
531 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
MAILTO="support@comprofix.com"
|
||
|
SMTP=mail.comprofix.com
|
||
|
THISSERVER=`hostname --fqdn`
|
||
|
MAILFROM="support@comprofix.com"
|
||
|
|
||
|
#Check if removed-but-not-purged
|
||
|
test -x /usr/share/logwatch/scripts/logwatch.pl || exit 0
|
||
|
|
||
|
#execute
|
||
|
#/usr/sbin/logwatch --output mail
|
||
|
/usr/sbin/logwatch
|
||
|
|
||
|
sendemail -o tls=no -s $SMTP -t $MAILTO -f "$THISSERVER <$MAILTO>" -u "[$THISSERVER] Logwatch" -m "$(cat /tmp/logwatch)" -q
|
||
|
|
||
|
#Note: It's possible to force the recipient in above command
|
||
|
#Just pass --mailto address@a.com instead of --output mail
|