File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/opentaskpy/remotehandlers Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ #v25.3.1
4+
5+ - Adjust email_destination TaskHandler to allow use of TLS/credentials to be optional, and set default port to 587
6+ - Adjust email_destination protocol schema to ensure that smtp_server and sender are set
7+
38# v25.3.0
49
510- Add ignore_errors=True to problematic .gnupg removal
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ def push_files_from_worker(
139139 smtp .starttls ()
140140
141141 # Authenticate (if credentials specified)
142- if self . protocol_vars [ "credentials" ] :
142+ if "credentials" in self . protocol_vars :
143143 smtp .login (
144144 self .protocol_vars ["credentials" ]["username" ],
145145 self .protocol_vars ["credentials" ]["password" ],
You can’t perform that action at this time.
0 commit comments