зеркало из https://github.com/mozilla/bedrock.git
Merge pull request #2070 from kyoshino/bug-1018949-undelivered-mail
Fix Bug 1018949 - Too many "Undelivered Mail Returned to Sender" coming from contribute@mozilla.org
This commit is contained in:
Коммит
837c92e86a
|
@ -20,7 +20,7 @@ FUNCTIONAL_AREAS = (
|
|||
fa('support',
|
||||
_('Helping Users'),
|
||||
'Support',
|
||||
['jay@jaygarcia.com', 'mana@mozilla.com'],
|
||||
['mana@mozilla.com'],
|
||||
),
|
||||
fa('qa',
|
||||
_('Testing and QA'),
|
||||
|
@ -80,12 +80,12 @@ FUNCTIONAL_AREAS = (
|
|||
fa('suggestions',
|
||||
_('I have a suggestion for Firefox'),
|
||||
'Firefox Suggestions',
|
||||
['jay@jaygarcia.com'],
|
||||
[],
|
||||
),
|
||||
fa('issues',
|
||||
_('I need help with a Firefox issue'),
|
||||
'Firefox issue',
|
||||
['jay@jaygarcia.com'],
|
||||
[],
|
||||
),
|
||||
)
|
||||
|
||||
|
|
|
@ -184,7 +184,7 @@ class TestContribute(TestCase):
|
|||
self.client.post(self.url_en, self.data)
|
||||
eq_(len(mail.outbox), 2)
|
||||
|
||||
cc = ['jay@jaygarcia.com', 'mana@mozilla.com']
|
||||
cc = ['mana@mozilla.com']
|
||||
m = mail.outbox[0]
|
||||
eq_(m.from_email, 'contribute@mozilla.org')
|
||||
eq_(m.to, ['contribute@mozilla.org'])
|
||||
|
|
Загрузка…
Ссылка в новой задаче