1
0
Fork 0

Fix the letsencrypt script to actually ignore "no action" notifications

This commit is contained in:
Luca Beltrame 2021-08-29 16:27:05 +02:00
parent 782f3202e3
commit 432a5614dd
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -6,8 +6,6 @@
from enum import Enum
import fileinput
import sys
import select
import drymail # Vendored
@ -44,16 +42,18 @@ def main():
elif "unexpected error occurred" in line:
state = State.error
if state is not State.no_action:
text = "\n".join(text)
subject = SUBJECT.format(str(state))
message = drymail.Message(
sender=("Certbot renewal bot", "notify@dennogumi.org"),
receivers=["root"],
subject=subject,
headers=HEADER,
text=text
)
if state is State.no_action:
return
text = "\n".join(text)
subject = SUBJECT.format(str(state))
message = drymail.Message(
sender=("Certbot renewal bot", "notify@dennogumi.org"),
receivers=["root"],
subject=subject,
headers=HEADER,
text=text
)
client = drymail.SMTPMailer(
host='localhost')