[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] & sign in email addresses and usernames
- Subject: Re: [cobalt-users] & sign in email addresses and usernames
- From: "Steven Werby" <steven-lists@xxxxxxxxxxxx>
- Date: Fri Apr 7 07:21:58 2000
Randall Clark <wz297@xxxxxxxxxxxxxx> wrote:
> If I wanted to edit the siteUserEmail.cgi file, what would I change???
According to Paul Schreiber:
> > /usr/admserv/cgi-bin/.cobalt/siteUserEmail/siteUserEmail.cgi
> > 86 if( $alias !~ /^[a-z0-9\.\-\_\@]+$/o ) { $badAlias=1; }
Looks like you could modify line 86 as follows:
if( $alias !~ /^[a-z0-9\.\-\_\&\@]+$/o ) { $badAlias=1; }
But I suspect there may be a reason this reg. expression doesn't allow "&".
Maybe email addresses with "&" in them break other perl modules used in the GUI.
So you can do what Paul suggested and manually edit virtusertable and play with
the GUI and see if it breaks anything. You can also make the above modification
and see. As always, make good backups first.
Steven Werby {steven-lists@xxxxxxxxxxxx}