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.

79 lines
1.9 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 "mutt"; then
  15. _MAIL_BIN="mutt"
  16. elif _exists "mail"; then
  17. _MAIL_BIN="mail"
  18. else
  19. _err "Please install sendmail or mail first."
  20. return 1
  21. fi
  22. MAIL_FROM="${MAIL_FROM:-$(_readaccountconf_mutable MAIL_FROM)}"
  23. if [ -z "$MAIL_FROM" ]; then
  24. MAIL_FROM="$USER@$(hostname -f)"
  25. _info "The MAIL_FROM is not set, so use the default value: $MAIL_FROM"
  26. fi
  27. _saveaccountconf_mutable MAIL_FROM "$MAIL_FROM"
  28. MAIL_TO="${MAIL_TO:-$(_readaccountconf_mutable MAIL_TO)}"
  29. if [ -z "$MAIL_TO" ]; then
  30. MAIL_TO="$(_readaccountconf ACCOUNT_EMAIL)"
  31. _info "The MAIL_TO is not set, so use the account email: $MAIL_TO"
  32. fi
  33. _saveaccountconf_mutable MAIL_TO "$MAIL_TO"
  34. contenttype="text/plain; charset=utf-8"
  35. subject="=?UTF-8?B?$(echo "$_subject" | _base64)?="
  36. result=$({ _mail_body | _mail_send; } 2>&1)
  37. if [ $? -ne 0 ]; then
  38. _debug "mail send error."
  39. _err "$result"
  40. return 1
  41. fi
  42. _debug "mail send success."
  43. return 0
  44. }
  45. _mail_send() {
  46. case "$_MAIL_BIN" in
  47. sendmail)
  48. "$_MAIL_BIN" -f "$MAIL_FROM" "$MAIL_TO"
  49. ;;
  50. mutt)
  51. "$_MAIL_BIN" -s "$subject" -e "my_hdr From:$MAIL_FROM" -e "my_hdr Content-Type:$contenttype" "$MAIL_TO"
  52. ;;
  53. mail)
  54. "$_MAIL_BIN" -s "$subject" -a "From:$MAIL_FROM" -a "Content-Type:$contenttype" "$MAIL_TO"
  55. ;;
  56. esac
  57. }
  58. _mail_body() {
  59. if [ "$_MAIL_BIN" = "sendmail" ]; then
  60. echo "From: $MAIL_FROM"
  61. echo "To: $MAIL_TO"
  62. echo "Subject: $subject"
  63. echo "Content-Type: $contenttype"
  64. echo
  65. fi
  66. echo "$_content"
  67. }