Deliver emails to Cc in smtplib code path

When using the sendmail() function with smtplib.SMTP or
smtplib.SMTP_SSL, the list of actual recipients for the email (to be
translated to RCPT commands) has to be provided as a parameter.

Update the notification script and add all Cc recipients to that
parameter.

Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Lukas Fleischer 2020-08-27 07:11:17 -04:00
parent 03a6fa2f7e
commit c4f4ac510b
2 changed files with 25 additions and 9 deletions

View file

@ -14,10 +14,6 @@ import aurweb.l10n
aur_location = aurweb.config.get('options', 'aur_location') aur_location = aurweb.config.get('options', 'aur_location')
def headers_cc(cclist):
return {'Cc': str.join(', ', cclist)}
def headers_msgid(thread_id): def headers_msgid(thread_id):
return {'Message-ID': thread_id} return {'Message-ID': thread_id}
@ -53,6 +49,9 @@ class Notification:
def get_headers(self): def get_headers(self):
return {} return {}
def get_cc(self):
return []
def get_body_fmt(self, lang): def get_body_fmt(self, lang):
body = '' body = ''
for line in self.get_body(lang).splitlines(): for line in self.get_body(lang).splitlines():
@ -80,6 +79,8 @@ class Notification:
msg['From'] = sender msg['From'] = sender
msg['Reply-to'] = reply_to msg['Reply-to'] = reply_to
msg['To'] = to msg['To'] = to
if self.get_cc():
msg['Cc'] = str.join(', ', self.get_cc())
msg['X-AUR-Reason'] = reason msg['X-AUR-Reason'] = reason
msg['Date'] = email.utils.formatdate(localtime=True) msg['Date'] = email.utils.formatdate(localtime=True)
@ -116,6 +117,7 @@ class Notification:
server.login(user, passwd) server.login(user, passwd)
server.set_debuglevel(0) server.set_debuglevel(0)
deliver_to = [to] + self.get_cc()
server.sendmail(sender, to, msg.as_bytes()) server.sendmail(sender, to, msg.as_bytes())
server.quit() server.quit()
@ -444,6 +446,9 @@ class RequestOpenNotification(Notification):
def get_recipients(self): def get_recipients(self):
return [(self._to, 'en')] return [(self._to, 'en')]
def get_cc(self):
return self._cc
def get_subject(self, lang): def get_subject(self, lang):
return '[PRQ#%d] %s Request for %s' % \ return '[PRQ#%d] %s Request for %s' % \
(self._reqid, self._reqtype.title(), self._pkgbase) (self._reqid, self._reqtype.title(), self._pkgbase)
@ -472,7 +477,6 @@ class RequestOpenNotification(Notification):
# Use a deterministic Message-ID for the first email referencing a # Use a deterministic Message-ID for the first email referencing a
# request. # request.
headers = headers_msgid(thread_id) headers = headers_msgid(thread_id)
headers.update(headers_cc(self._cc))
return headers return headers
@ -502,6 +506,9 @@ class RequestCloseNotification(Notification):
def get_recipients(self): def get_recipients(self):
return [(self._to, 'en')] return [(self._to, 'en')]
def get_cc(self):
return self._cc
def get_subject(self, lang): def get_subject(self, lang):
return '[PRQ#%d] %s Request for %s %s' % (self._reqid, return '[PRQ#%d] %s Request for %s %s' % (self._reqid,
self._reqtype.title(), self._reqtype.title(),
@ -531,7 +538,6 @@ class RequestCloseNotification(Notification):
def get_headers(self): def get_headers(self):
thread_id = '<pkg-request-' + str(self._reqid) + '@aur.archlinux.org>' thread_id = '<pkg-request-' + str(self._reqid) + '@aur.archlinux.org>'
headers = headers_reply(thread_id) headers = headers_reply(thread_id)
headers.update(headers_cc(self._cc))
return headers return headers

View file

@ -277,13 +277,18 @@ test_expect_success 'Test subject and body of merge notifications.' '
test_cmp actual expected test_cmp actual expected
' '
test_expect_success 'Test subject and body of request open notifications.' ' test_expect_success 'Test Cc, subject and body of request open notifications.' '
cat <<-EOD | sqlite3 aur.db && cat <<-EOD | sqlite3 aur.db &&
/* Use package request IDs which can be distinguished from other IDs. */ /* Use package request IDs which can be distinguished from other IDs. */
INSERT INTO PackageRequests (ID, PackageBaseID, PackageBaseName, UsersID, ReqTypeID, Comments, ClosureComment) VALUES (3001, 1001, "foobar", 1, 1, "This is a request test comment.", ""); INSERT INTO PackageRequests (ID, PackageBaseID, PackageBaseName, UsersID, ReqTypeID, Comments, ClosureComment) VALUES (3001, 1001, "foobar", 2, 1, "This is a request test comment.", "");
EOD EOD
>sendmail.out && >sendmail.out &&
"$NOTIFY" request-open 1 3001 orphan 1001 && "$NOTIFY" request-open 1 3001 orphan 1001 &&
grep ^Cc: sendmail.out >actual &&
cat <<-EOD >expected &&
Cc: user@localhost, tu@localhost
EOD
test_cmp actual expected &&
grep ^Subject: sendmail.out >actual && grep ^Subject: sendmail.out >actual &&
cat <<-EOD >expected && cat <<-EOD >expected &&
Subject: [PRQ#3001] Orphan Request for foobar Subject: [PRQ#3001] Orphan Request for foobar
@ -324,9 +329,14 @@ test_expect_success 'Test subject and body of request open notifications for mer
test_cmp actual expected test_cmp actual expected
' '
test_expect_success 'Test subject and body of request close notifications.' ' test_expect_success 'Test Cc, subject and body of request close notifications.' '
>sendmail.out && >sendmail.out &&
"$NOTIFY" request-close 1 3001 accepted && "$NOTIFY" request-close 1 3001 accepted &&
grep ^Cc: sendmail.out >actual &&
cat <<-EOD >expected &&
Cc: user@localhost, tu@localhost
EOD
test_cmp actual expected &&
grep ^Subject: sendmail.out >actual && grep ^Subject: sendmail.out >actual &&
cat <<-EOD >expected && cat <<-EOD >expected &&
Subject: [PRQ#3001] Deletion Request for foobar Accepted Subject: [PRQ#3001] Deletion Request for foobar Accepted