Browse Source

Add variable to set email's sender 'emailfrom'

pull/1073/head
jakubsuchybio 9 years ago
parent
commit
176919c2c8
  1. 5
      CounterStrikeGlobalOffensive/csgoserver
  2. 24
      lgsm/functions/alert_email.sh

5
CounterStrikeGlobalOffensive/csgoserver

@ -19,8 +19,9 @@ version="210516"
# Email # Email
emailalert="off" emailalert="off"
email="[email protected]" email="[email protected]"
#emailfrom="[email protected]"
# Pushbullet # Pushbullet
# https://www.pushbullet.com/#settings # https://www.pushbullet.com/#settings
pushbulletalert="off" pushbulletalert="off"
pushbullettoken="accesstoken" pushbullettoken="accesstoken"
@ -147,7 +148,7 @@ if [ ! -f "${filedir}/${filename}" ]; then
exit 1 exit 1
else else
echo -e "\e[0;32mOK\e[0m" echo -e "\e[0;32mOK\e[0m"
fi fi
else else
echo -e "\e[0;31mFAIL\e[0m\n" echo -e "\e[0;31mFAIL\e[0m\n"
echo "Curl is not installed!" echo "Curl is not installed!"

24
lgsm/functions/alert_email.sh

@ -28,7 +28,7 @@ fn_details_os(){
# Hostname: hostname # Hostname: hostname
# tmux: tmux 1.8 # tmux: tmux 1.8
# GLIBC: 2.19 # GLIBC: 2.19
{ {
echo -e "" echo -e ""
echo -e "Distro Details" echo -e "Distro Details"
@ -56,7 +56,7 @@ fn_details_performance(){
{ {
echo -e "" echo -e ""
echo -e "Performance" echo -e "Performance"
echo -e "=================================" echo -e "================================="
echo -e "Uptime: ${days}d, ${hours}h, ${minutes}m" echo -e "Uptime: ${days}d, ${hours}h, ${minutes}m"
echo -e "Avg Load: ${load}" echo -e "Avg Load: ${load}"
echo -e "" echo -e ""
@ -124,7 +124,7 @@ fn_details_gameserver(){
echo -e "RCON password: ********" echo -e "RCON password: ********"
fi fi
# Admin password # Admin password
if [ -n "${adminpassword}" ]; then if [ -n "${adminpassword}" ]; then
echo -e "Admin password: ********" echo -e "Admin password: ********"
fi fi
@ -172,7 +172,7 @@ fn_alert_email_template_logs(){
{ {
echo -e "" echo -e ""
echo -e "${servicename} Logs" echo -e "${servicename} Logs"
echo -e "=================================" echo -e "================================="
if [ -n "${scriptlog}" ]; then if [ -n "${scriptlog}" ]; then
echo -e "\nScript log\n===================" echo -e "\nScript log\n==================="
@ -180,7 +180,7 @@ fn_alert_email_template_logs(){
echo "${scriptlogdir} (NO LOG FILES)" echo "${scriptlogdir} (NO LOG FILES)"
elif [ ! -s "${scriptlog}" ]; then elif [ ! -s "${scriptlog}" ]; then
echo "${scriptlog} (LOG FILE IS EMPTY)" echo "${scriptlog} (LOG FILE IS EMPTY)"
else else
echo "${scriptlog}" echo "${scriptlog}"
tail -25 "${scriptlog}" tail -25 "${scriptlog}"
fi fi
@ -193,7 +193,7 @@ fn_alert_email_template_logs(){
echo "${consolelogdir} (NO LOG FILES)" echo "${consolelogdir} (NO LOG FILES)"
elif [ ! -s "${consolelog}" ]; then elif [ ! -s "${consolelog}" ]; then
echo "${consolelog} (LOG FILE IS EMPTY)" echo "${consolelog} (LOG FILE IS EMPTY)"
else else
echo "${consolelog}" echo "${consolelog}"
tail -25 "${consolelog}" | awk '{ sub("\r$", ""); print }' tail -25 "${consolelog}" | awk '{ sub("\r$", ""); print }'
fi fi
@ -204,12 +204,12 @@ fn_alert_email_template_logs(){
echo -e "\nServer log\n===================" echo -e "\nServer log\n==================="
if [ ! "$(ls -A ${gamelogdir})" ]; then if [ ! "$(ls -A ${gamelogdir})" ]; then
echo "${gamelogdir} (NO LOG FILES)" echo "${gamelogdir} (NO LOG FILES)"
else else
echo "${gamelogdir}" echo "${gamelogdir}"
tail "${gamelogdir}"/* | grep -v "==>" | sed '/^$/d' | tail -25 tail "${gamelogdir}"/* | grep -v "==>" | sed '/^$/d' | tail -25
fi fi
echo "" echo ""
fi fi
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1 } | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
@ -223,14 +223,18 @@ check_ip.sh
emaillog="${emaillog}" emaillog="${emaillog}"
if [ -f "${emaillog}" ]; then if [ -f "${emaillog}" ]; then
rm "${emaillog}" rm "${emaillog}"
fi fi
fn_details_email fn_details_email
fn_details_os fn_details_os
fn_details_performance fn_details_performance
fn_details_disk fn_details_disk
fn_details_gameserver fn_details_gameserver
fn_alert_email_template_logs 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=$? exitcode=$?
if [ "${exitcode}" == "0" ]; then if [ "${exitcode}" == "0" ]; then
fn_print_ok_nl "Sending alert to ${email}" fn_print_ok_nl "Sending alert to ${email}"

Loading…
Cancel
Save