Attempting to send to [email protected] bounces immediately, which means the CC recipients (such as oe-core list) won't get the email either.
Instead, send to cc directly. Signed-off-by: Alexander Kanavin <[email protected]> --- upgrade-helper.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/upgrade-helper.py b/upgrade-helper.py index 7ed7af4..eb3935e 100755 --- a/upgrade-helper.py +++ b/upgrade-helper.py @@ -320,7 +320,10 @@ class Updater(object): cc_addr = None if "cc_recipients" in settings: - cc_addr = settings["cc_recipients"].split() + if 'unassigned' in to_addr: + to_addr = settings["cc_recipients"].split() + else: + cc_addr = settings["cc_recipients"].split() newversion = pkg_ctx['NPV'] if not pkg_ctx['NPV'].endswith("new-commits-available") else pkg_ctx['NSRCREV'] subject = "[AUH] " + pkg_ctx['PN'] + ": upgrading to " + newversion -- 2.29.2
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#51821): https://lists.yoctoproject.org/g/yocto/message/51821 Mute This Topic: https://lists.yoctoproject.org/mt/79133842/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
