From d5e308550ad4682829c01feb32212540a6699100 Mon Sep 17 00:00:00 2001 From: Frederik Schwan Date: Wed, 14 Oct 2020 02:22:08 +0200 Subject: Fix requests not being sent to the Cc recipients Signed-off-by: Lukas Fleischer --- aurweb/scripts/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurweb/scripts/notify.py b/aurweb/scripts/notify.py index 9d4f3bde..edae76f8 100755 --- a/aurweb/scripts/notify.py +++ b/aurweb/scripts/notify.py @@ -118,7 +118,7 @@ class Notification: server.set_debuglevel(0) deliver_to = [to] + self.get_cc() - server.sendmail(sender, to, msg.as_bytes()) + server.sendmail(sender, deliver_to, msg.as_bytes()) server.quit() -- cgit v1.2.3-24-g4f1b