acme.sh/notify/mail.sh

102 lines
2.2 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
2019-05-12 08:41:32 +00:00
#Support local mail app
#MAIL_FROM="yyyy@gmail.com"
#MAIL_TO="yyyy@gmail.com"
mail_send() {
_subject="$1"
_content="$2"
_statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
_debug "_subject" "$_subject"
_debug "_content" "$_content"
_debug "_statusCode" "$_statusCode"
2019-05-12 08:41:32 +00:00
if _exists "sendmail"; then
_MAIL_BIN="sendmail"
2019-05-12 18:26:31 +00:00
elif _exists "ssmtp"; then
_MAIL_BIN="ssmtp"
2019-05-12 11:06:45 +00:00
elif _exists "mutt"; then
_MAIL_BIN="mutt"
2019-05-12 08:41:32 +00:00
elif _exists "mail"; then
_MAIL_BIN="mail"
else
2019-05-12 18:26:31 +00:00
_err "Please install sendmail, ssmtp, mutt or mail first."
2019-05-12 08:41:32 +00:00
return 1
fi
MAIL_FROM="${MAIL_FROM:-$(_readaccountconf_mutable MAIL_FROM)}"
2019-05-13 14:06:24 +00:00
if [ -n "$MAIL_FROM" ]; then
if ! _contains "$MAIL_FROM" "@"; then
_err "It seems that the MAIL_FROM=$MAIL_FROM is not a valid email address."
return 1
fi
_saveaccountconf_mutable MAIL_FROM "$MAIL_FROM"
2019-05-12 08:41:32 +00:00
fi
MAIL_TO="${MAIL_TO:-$(_readaccountconf_mutable MAIL_TO)}"
if [ -n "$MAIL_TO" ]; then
if ! _contains "$MAIL_TO" "@"; then
_err "It seems that the MAIL_TO=$MAIL_TO is not a valid email address."
return 1
fi
_saveaccountconf_mutable MAIL_TO "$MAIL_TO"
else
2019-05-12 08:41:32 +00:00
MAIL_TO="$(_readaccountconf ACCOUNT_EMAIL)"
if [ -z "$MAIL_TO" ]; then
_err "It seems that account email is empty."
return 1
fi
2019-05-12 08:41:32 +00:00
fi
2019-05-12 11:03:01 +00:00
contenttype="text/plain; charset=utf-8"
2019-05-12 08:41:32 +00:00
subject="=?UTF-8?B?$(echo "$_subject" | _base64)?="
result=$({ _mail_body | _mail_send; } 2>&1)
if [ $? -ne 0 ]; then
_debug "mail send error."
_err "$result"
return 1
fi
_debug "mail send success."
return 0
}
_mail_send() {
case "$_MAIL_BIN" in
sendmail)
2019-05-13 14:06:24 +00:00
if [ -n "$MAIL_FROM" ]; then
"$_MAIL_BIN" -f "$MAIL_FROM" "$MAIL_TO"
else
"$_MAIL_BIN" "$MAIL_TO"
fi
2019-05-12 08:41:32 +00:00
;;
2019-05-12 18:26:31 +00:00
ssmtp)
"$_MAIL_BIN" "$MAIL_TO"
;;
2019-05-12 20:28:37 +00:00
mutt | mail)
"$_MAIL_BIN" -s "$_subject" "$MAIL_TO"
2019-05-12 08:41:32 +00:00
;;
esac
}
_mail_body() {
2019-05-12 18:26:31 +00:00
if [ "$_MAIL_BIN" = "sendmail" ] || [ "$_MAIL_BIN" = "ssmtp" ]; then
2019-05-13 14:06:24 +00:00
if [ -n "$MAIL_FROM" ]; then
echo "From: $MAIL_FROM"
fi
2019-05-12 08:41:32 +00:00
echo "To: $MAIL_TO"
2019-05-12 11:03:01 +00:00
echo "Subject: $subject"
echo "Content-Type: $contenttype"
2019-05-12 08:41:32 +00:00
echo
fi
echo "$_content"
}