This commit is contained in:
Edward Betts 2023-09-29 07:13:13 +01:00
parent 52dfe9e42c
commit 9a8f3c1ee4

View file

@ -31,15 +31,15 @@ not_here_list = [
]
conferences = [
# ("FOSDEM", "https://fosdem.org/2024"),
# ("FOSDEM", "https://fosdem.org/2024"),
# ("PyCascades", "https://2024.pycascades.com/"),
("foss-north", "https://foss-north.se/2024"),
("Wikimedia Hackathon", "https://www.mediawiki.org/wiki/Wikimedia_Hackathon_2024"),
("FOSS4G", "https://2024.foss4g.org/"),
("FOSS4G Europe", "https://2024.europe.foss4g.org/"),
("FOSSY", "https://2024.fossy.us/"),
# ("North Bay Python", "https://2024.northbaypython.org/"),
("DebConf", "https://wiki.debian.org/DebConf/24"),
# ("North Bay Python", "https://2024.northbaypython.org/"),
# ("DebConf", "https://wiki.debian.org/DebConf/24"),
("State of the Map US", "https://2024.stateofthemap.us/"),
("WikiConference North America", "https://wikiconference.org/wiki/2024/Main_Page"),
("PyCon DE", "https://2024.pycon.de/"),
@ -80,7 +80,6 @@ def send_mail(subject: str, body: str) -> None:
msg["From"] = f"Edward Betts <{mail_from}>"
msg["Date"] = formatdate()
msg["Message-ID"] = make_msgid()
# msg["X-4angle"] = "conference"
s = smtplib.SMTP(SMTP_HOST)
s.sendmail(mail_from, [MAIL_TO_ADDRESS], msg.as_string())