both hostnames and mail addresses should composed by lowercase letters
[plcapi.git] / PLC / Persons.py
index 1d3059f..d35f9f7 100644 (file)
@@ -78,7 +78,7 @@ class Person(Row):
         """
         Validate email address. Stolen from Mailman.
         """
-
+        email = email.lower()
         invalid_email = PLCInvalidArgument("Invalid e-mail address")
 
         if not email: