You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.7 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. #!/usr/bin/env sh
  2. #Support local mail app
  3. #MAIL_FROM="yyyy@gmail.com"
  4. #MAIL_TO="yyyy@gmail.com"
  5. mail_send() {
  6. _subject="$1"
  7. _content="$2"
  8. _statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
  9. _debug "_subject" "$_subject"
  10. _debug "_content" "$_content"
  11. _debug "_statusCode" "$_statusCode"
  12. if _exists "sendmail"; then
  13. _MAIL_BIN="sendmail"
  14. elif _exists "mail"; then
  15. _MAIL_BIN="mail"
  16. else
  17. _err "Please install sendmail or mail first."
  18. return 1
  19. fi
  20. MAIL_FROM="${MAIL_FROM:-$(_readaccountconf_mutable MAIL_FROM)}"
  21. if [ -z "$MAIL_FROM" ]; then
  22. MAIL_FROM="$USER@$(hostname -f)"
  23. _info "The MAIL_FROM is not set, so use the default value: $MAIL_FROM"
  24. fi
  25. _saveaccountconf_mutable MAIL_FROM "$MAIL_FROM"
  26. MAIL_TO="${MAIL_TO:-$(_readaccountconf_mutable MAIL_TO)}"
  27. if [ -z "$MAIL_TO" ]; then
  28. MAIL_TO="$(_readaccountconf ACCOUNT_EMAIL)"
  29. _info "The MAIL_TO is not set, so use the account email: $MAIL_TO"
  30. fi
  31. _saveaccountconf_mutable MAIL_TO "$MAIL_TO"
  32. contenttype="text/plain; charset=utf-8"
  33. subject="=?UTF-8?B?$(echo "$_subject" | _base64)?="
  34. result=$({ _mail_body | _mail_send; } 2>&1)
  35. if [ $? -ne 0 ]; then
  36. _debug "mail send error."
  37. _err "$result"
  38. return 1
  39. fi
  40. _debug "mail send success."
  41. return 0
  42. }
  43. _mail_send() {
  44. case "$_MAIL_BIN" in
  45. sendmail)
  46. "$_MAIL_BIN" -f "$MAIL_FROM" "$MAIL_TO"
  47. ;;
  48. mail)
  49. "$_MAIL_BIN" -s "$subject" -a "From:$MAIL_FROM" -a "Content-Type:$contenttype" "$MAIL_TO"
  50. ;;
  51. esac
  52. }
  53. _mail_body() {
  54. if [ "$_MAIL_BIN" = "sendmail" ]; then
  55. echo "From: $MAIL_FROM"
  56. echo "To: $MAIL_TO"
  57. echo "Subject: $subject"
  58. echo "Content-Type: $contenttype"
  59. echo
  60. fi
  61. echo "$_content"
  62. }