Members with email addresses as usernames

Discussion in 'Member and Staff Management' started by Soliloquy, Jun 22, 2009.

  1. Soliloquy

    Soliloquy Regular Member

    Joined:
    Jun 3, 2009
    Messages:
    2,402
    Likes Received:
    66
    Location:
    New York City
    Many online stores and other sites that require registration have begun using email addresses as the login name, which I appreciate because it isn't always easy to remember every single login name you have. I think that's what's been contributing to the phenomenon of people registering with their email addresses as their username. I always send the person a PM asking if they were really sure they wanted to do that, but so far only one has realized their mistake and asked for a name change. How do you handle members that do this?
     
  2. MJB23

    MJB23 Addict

    Joined:
    Jun 21, 2009
    Messages:
    69
    Likes Received:
    6
    It's their choice what they want their username to be. They should realize it's probably not the best idea but I'm not going to go and tell them to change their names.

    If they realize it's stupid and ask me to change their name then I will but I'm not gonna go to them and tell them to do it.
     
  3. Boss

    Boss Resident Silly Man

    Joined:
    May 23, 2009
    Messages:
    941
    Likes Received:
    23
    Location:
    California
    First Name:
    Alex
    Never had this problem. I think there are modifications for vB and IPB to not allow this. Or you can just put it in the ban list for usernames.
     
  4. Soliloquy

    Soliloquy Regular Member

    Joined:
    Jun 3, 2009
    Messages:
    2,402
    Likes Received:
    66
    Location:
    New York City
    Put what in the ban list for usernames, the @ at sign?
     
  5. MJB23

    MJB23 Addict

    Joined:
    Jun 21, 2009
    Messages:
    69
    Likes Received:
    6
    I think he means put words like @yahoo.com, @gmail, etc that way they make a username with those words in it.
     
  6. Nick

    Nick Regular Member

    Joined:
    Jul 27, 2008
    Messages:
    7,441
    Likes Received:
    218
    Or you can use a regular expression (PCRE).

    I don't really like the idea of members' usernames being e-mail addresses... because then they get spammed and blame it on me.

    This is why I wish vBulletin had "display names" so that users can register and login with their e-mail address (and never have to worry about remembering/forgetting usernames) and then have a display name/alias like with IP.Board.
     
  7. Tyler

    Tyler The Badministrator

    Joined:
    Dec 23, 2007
    Messages:
    3,079
    Likes Received:
    63
    Location:
    Long Island, NY
    First Name:
    Tyler
    Me too - I want this so bad. I would love to have people register with their e-mail, get a unique ID, and be able to change their display name whenever they'd like. And so it's not confusing, their ID number can be shown in their postbit like on IPB. And the URL to their profile would use the ID.

    I'm getting something like this coded on my upcoming forum.
     
  8. Wayne Luke

    Wayne Luke Regular Member

    Joined:
    Apr 2, 2009
    Messages:
    991
    Likes Received:
    276
    I don't allow the @ or period in usernames so it wouldn't happen.
     
  9. gnatster

    gnatster Regular Member

    Joined:
    May 31, 2009
    Messages:
    717
    Likes Received:
    98
    Location:
    Down the hall
    First Name:
    Nathan
    My advertisers like to use name@businessname for their user ID's. Sorta precludes me from killing the @ so I send a note to the few that do it now and again.
     
  10. Jim McClain

    Jim McClain Regular Member

    Joined:
    May 31, 2009
    Messages:
    61
    Likes Received:
    9
    Location:
    The REAL Northern California
    I would like to do this as well. Can you tell us how you did it and where?

    Thanks,

    Jim
     
  11. Wayne Luke

    Wayne Luke Regular Member

    Joined:
    Apr 2, 2009
    Messages:
    991
    Likes Received:
    276
    Well in vBulletin there are two ways...

    vBulletin Options -> vBulletin Options -> User Registration Options -> Illegal User Names

    Enter @ . (separated by spaces).

    I used the second option though which is applying a regular expression. You can do this on the same page.

    vBulletin Options -> vBulletin Options -> User Registration Options -> Username Regular Expression

    The value I have entered is ^[A-Z0-9 ]+$ which restricts the user to A-Z, a-z, and 0-9 and the space character. If you click on the inline help icon to the right of the option, vBulletin will provide several other examples. Or you can go to regexlib.com and find hundreds more.
     
    2 people like this.
  12. Jim McClain

    Jim McClain Regular Member

    Joined:
    May 31, 2009
    Messages:
    61
    Likes Received:
    9
    Location:
    The REAL Northern California
    Thanks, Wayne. I considered the Illegal User Names category, but hesitated because neither charcater is a "name." I also like the second option better, but I wonder what problems might occur if there are already user names with characters I do not allow.

    R'gards,

    Jim
     
  13. Nick

    Nick Regular Member

    Joined:
    Jul 27, 2008
    Messages:
    7,441
    Likes Received:
    218
    It is not retroactive, so usernames that don't match the new expression won't be bothered; only new registrations are affected. :)
     
  14. Jim McClain

    Jim McClain Regular Member

    Joined:
    May 31, 2009
    Messages:
    61
    Likes Received:
    9
    Location:
    The REAL Northern California
    Would that include the maintenance task Update Counters > Update User Names? Will they be ignored, or will I be warned of any illegal names at that time? Will it actually remove those characters from user names without any notice? That could cause some upset users, especially in my little corner of the ether where the average age of my members is in their 50s and computer skills near the bottom of the scale. :confused:

    Thanks,

    Jim
     
  15. Imperial

    Imperial Adept

    Joined:
    May 20, 2009
    Messages:
    184
    Likes Received:
    8
    Thanks for that post Wayne. As I was configuring the option for my newest forum, I had completely glossed right over that option. I generally never want to see a username as an email, if only to prevent members from being spammed (even though most email clients have spam filters now). Its still a privacy issue though.
     
  16. Paul M

    Paul M Dr Pepper Addict

    Joined:
    Jun 16, 2009
    Messages:
    449
    Likes Received:
    136
    Location:
    Nottingham, UK
    We discourage it, and usually PM the member asking them to change their username.
     
  17. Nick

    Nick Regular Member

    Joined:
    Jul 27, 2008
    Messages:
    7,441
    Likes Received:
    218
    I'm 99% sure they are not affected by updating the counters, even. It would be a huge drawback (in terms of vB functionality) if they were. It's a big change, so I would await Wayne's confirmation before doing it though.
     
  18. BananaQueen

    BananaQueen Grand Master

    Joined:
    Oct 23, 2009
    Messages:
    554
    Likes Received:
    24
    First Name:
    not telling anyone ;)
    i would not allow a member to join with their username as their email adress, cause i do not allow email adresses to be posted on the forum (if they wish to tell someone their email adress they can pm them, or they can set it so other members can send them emails through the forum)

    if someone did i would pm them asking them if they would like to change their username, and explain to them that having their email adress as a username leaves them open to spammers and emails from strange people they dont know
     

Share This Page