Commit 9109425c authored by Nicolas Delaby's avatar Nicolas Delaby

Check that capitalized string in domain of email address still work

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39134 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 38529a0b
......@@ -442,6 +442,8 @@ class TestCRMMailIngestion(BaseTestCRM):
'person_module/he']),
# multiple e-mails in the "Name" part that shouldn't be parsed
('"me@erp5.org,sender@customer.com," <he@erp5.org>', ['person_module/he']),
# capitalised version
('"me@erp5.org,sEnder@CUSTOMER.cOm," <he@ERP5.OrG>', ['person_module/he']),
# a < sign
('"He<" <he@erp5.org>', ['person_module/he']),
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment