I don't see anything in the Auth code that would restrict the length of
email addresses by default, and I just successfully registered and logged
into the current 'welcome' app with thisisaverylongemailaddress @
thisisaverylongdomain.com. Can you provide more detail? Does the input
field in the browser prevent you from entering more than 30 characters, or
does the form return an error from web2py upon submission? Do you have any
client-side JS that is validating form inputs?
Anthony
On Tuesday, January 3, 2012 3:56:03 AM UTC-5, thstart wrote:
>
> I defined email/password only Login.
>
> cannot enter longer emails like 30 letters.
>
> I see in auth_user
> Field('email', length=512, type='string', default='',
> label=current.T('Email')),
>
> What is wrong?
>