[CMF-checkins] CVS: Products/CMFDefault -
RegistrationTool.py:1.29.2.4
Jens Vagelpohl
jens at dataflake.org
Mon Mar 7 16:50:59 EST 2005
Update of /cvs-repository/Products/CMFDefault
In directory cvs.zope.org:/tmp/cvs-serv26958/CMFDefault
Modified Files:
Tag: CMF-1_5-branch
RegistrationTool.py
Log Message:
- CMFDefault.RegistrationTool: Allow email addresses with an underscore
as the last element of the alias part.
(http://www.zope.org/Collectors/CMF/326)
=== Products/CMFDefault/RegistrationTool.py 1.29.2.3 => 1.29.2.4 ===
--- Products/CMFDefault/RegistrationTool.py:1.29.2.3 Fri Feb 11 17:08:56 2005
+++ Products/CMFDefault/RegistrationTool.py Mon Mar 7 16:50:28 2005
@@ -225,7 +225,7 @@
, False
, "Failed b"
)
- , ( re.compile("([0-9a-zA-Z]{1})\@.")
+ , ( re.compile("([0-9a-zA-Z_]{1})\@.")
, True
, "Failed c"
)
@@ -253,3 +253,4 @@
if matched != expected:
return False, message
return True, ''
+
More information about the CMF-checkins
mailing list