Page 1 of 1
email message on adding a new user
Posted: Mon Jun 05, 2006 11:44 am
by donorr
We have setup the In/Out Board and have it working for the first user. However, attempting to add a new user results in the following message after clicking Submit:
Email is not accepted.
The user is not added.
We have version 6.03.0.1201 running on a SBS 2003 system accessed.
Posted: Mon Jun 05, 2006 4:01 pm
by davidyin
Could you post your email address, please?
posted
Posted: Tue Jun 06, 2006 6:18 am
by donorr
I have updated my profile with my email address.
dashes not accepted in email addresses
Posted: Tue Jun 06, 2006 7:17 am
by donorr
I was adding users using our domain. Our domain has a dash in it. That is the problem.
Further, an email address with a dash in it is accepted when creating the first user in the setup.
Posted: Tue Jun 06, 2006 10:22 am
by davidyin
Please make following changes.
Open admin_user_a.asp by a text editor.
Go to line 218, find
regExemail.Pattern = "^[a-zA-Z_\.]+@[a-zA-Z_]+?\.[a-zA-Z]{2,4}$"
Replaced by
regExemail.Pattern = "^[a-zA-Z_\.]+@[a-zA-Z_-]+?\.[a-zA-Z]{2,4}$"
Open admin_user_ed.asp
Go to line 209, find
regExemail.Pattern = "^[a-zA-Z_\.]+@[a-zA-Z_]+?\.[a-zA-Z]{2,4}$"
replaced by
regExemail.Pattern = "^[a-zA-Z_\.]+@[a-zA-Z_-]+?\.[a-zA-Z]{2,4}$"
THANKS
Posted: Tue Jun 06, 2006 12:48 pm
by donorr
That did it. Thank you.