1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-25 19:17:22 +01:00

added install for sqlite, fixed email notify script

Added sqlite to clamsmtpd installscript.
Switched to using sendmail instead of mail command since there are different commands for different mail(bsd/heirloom) installs.
This commit is contained in:
jvolkenant
2016-08-22 11:42:17 -07:00
parent 830dea309b
commit 46cfb3e4f6
2 changed files with 18 additions and 18 deletions

View File

@@ -22,24 +22,25 @@ for j in $dest_email; do
if [[ "$i" == "$j" ]]
then
{
echo "Subject: Email Virus Scan Notification"
echo ""
echo "Hello $i,"
echo ""
echo "This is the email system of $PRIMARY_HOSTNAME."
echo ""
echo "The email from $SENDER to you was infected with a virus ($VIRUS)."
echo "The email was blocked and this notification was sent instead."
echo ""
echo "If you encounter further problems please contact your System Administrator."
echo ""
echo "Regards,"
echo ""
echo "The email from $SENDER to you was infected with a virus ($VIRUS)."
echo "The email was blocked and this notification was sent instead."
echo ""
echo "If you encounter further problems please contact your System Administrator."
echo ""
echo "Regards,"
echo "The email server at $PRIMARY_HOSTNAME"
#sending email to recipient that is hosted on this system
} | mail -a "From: postmaster@$PRIMARY_HOSTNAME" -s "Email Virus Scan Notificaton" "$i"
} | sendmail -f "postmaster@$PRIMARY_HOSTNAME" "$i"
#continue with next recipient
fi
done
done
done