| Index: mailer.py
|
| diff --git a/mailer.py b/mailer.py
|
| index 978d22ff26095451931970df30ce7d0ef8ebbd79..13fae1aa27af9ed3ab7b8e03975c2893de05a247 100644
|
| --- a/mailer.py
|
| +++ b/mailer.py
|
| @@ -183,6 +183,14 @@ class Email(BaseHandler):
|
| mail_override = ['stip@chromium.org',
|
| 'gatekeeper-ng@chromium-gatekeeper-sentry.appspotmail.com']
|
|
|
| + whitelist = ['jschuh']
|
| +
|
| + for alias in whitelist:
|
| + for domain in ('@chromium.org', '@google.com'):
|
| + candidate = alias + domain
|
| + if candidate in recipients:
|
| + mail_override.append(candidate)
|
| +
|
| message = mail.EmailMessage(sender=from_addr,
|
| subject=subject,
|
| #to=recipients,
|
|
|