From afb3f89d8ac5fc1f02458798eaeea876491484bb Mon Sep 17 00:00:00 2001 From: yuuki89 Date: Tue, 6 May 2014 11:07:07 +0800 Subject: [PATCH] Workaround to send email in plain text Email appears as "noname" attachment in Gmail accounts (and probably others but I did not test on): Content-Type: application/octet-stream Content-Transfer-Encoding: base64 So use cat -v as a workaround See: http://ask.fclose.com/305/plain-pipelined-content-application-octet-stream-attachment Also recommended to apply this fix to all other server scripts for consistency reasons. --- NaturalSelection2/ns2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 93eb9a061..c11ccfaa5 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -359,7 +359,7 @@ if [ ! -z "${gamelogdir}" ]; then echo -e "\n\nServer log\n====================\n" >> "${emaillog}" tail "${gamelogdir}"/*|grep -v "==>"|sed '/^$/d'|tail -25 >> "${emaillog}" fi -mail -s "${subject}" ${email} < "${emaillog}" +cat -v "${emaillog}" | mail -s "${subject}" ${email} fn_printinfo "Sent email notification to ${email}" sleep 1 echo -en "\n"