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:
Josh Mize 2014-06-05 15:17:27 -05:00
Родитель e3ab61f922 616993146a
Коммит 837c92e86a
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -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'])