mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-01 03:51:46 +00:00
b50e701cae
* add cron notify * fix format * fix format
16 lines
290 B
Bash
16 lines
290 B
Bash
#!/usr/bin/env sh
|
|
|
|
# support pop
|
|
|
|
pop_send() {
|
|
_subject="$1"
|
|
_content="$2"
|
|
_statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
|
|
_debug "_subject" "$_subject"
|
|
_debug "_content" "$_content"
|
|
_debug "_statusCode" "$_statusCode"
|
|
|
|
_err "Not implemented yet."
|
|
return 1
|
|
}
|