diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index c409c279b..95b0c8fb0 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -19,6 +19,7 @@ version="210516" # Email emailalert="off" email="email@example.com" +#emailfrom="email@example.com" # Pushbullet # https://www.pushbullet.com/#settings diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index 52529db6f..abca02525 100644 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -230,7 +230,11 @@ fn_details_performance fn_details_disk fn_details_gameserver fn_alert_email_template_logs -mail -s "${alertsubject}" "${email}" < "${emaillog}" +if [ -n "${emailfrom}" ]; then + mail -s "${alertsubject}" -a "From: ${emailfrom}" "${email}" < "${emaillog}" +else + mail -s "${alertsubject}" "${email}" < "${emaillog}" +fi exitcode=$? if [ "${exitcode}" == "0" ]; then fn_print_ok_nl "Sending alert: ${email}"