PDA

View Full Version : Administrative and Maintenance Tools - Email Rules - Require that users' email addresses match a regular expression


Analogpoint
10-14-2007, 10:00 PM
This modification simply requires a user's email address to match a regular expression (http://www.php.net/manual-lookup.php?function=preg-match) that you specify in the admin control panel options. vBulletin already has an email banning function where you can ban different emails and email providers. This mod lets you do the opposite-- require a certain type of email address. For example you could require that all users have a .edu address.

Requested here (https://vborg.vbsupport.ru/showthread.php?t=160298).

Installation: Unzip the attached file and import the .XML file in the Product Manager in the Admin Control Panel. Then visit the 'Email Rules' options page in vBulletin Options to set up your regular expression.

This mod add two plugins, that's it.

SMO
10-15-2007, 11:17 PM
wow...this is a very good idea. Making it easy for users to register from a certain "realm"

I was trying to think on how to do this with making a military only forum.

yoyoyoyo
10-15-2007, 11:31 PM
can you specify more than one rule?

Analogpoint
10-16-2007, 08:02 PM
can you specify more than one rule?
Yes, you specify just one regular expression, but you can have unlimited rules within it. If you need help with a regular expression, just post here explaining what you're trying to accomplish, and I'll try to help.

Also, this website will help get you up to speed on regexes http://www.regular-expressions.info/

Crazy Serb
01-28-2008, 06:10 PM
ok, so if I want to add a few email addresses into the regex field, how would I do it?

let's say, I only want to allow gmail.com, hotmail.com and yahoo.com as valid emails... how do I write that out?

Crazy Serb
02-29-2008, 03:48 PM
ok, so I put the following in the rules field:

\hotmail.com|gmail.com|yahoo.com$

and some users who tried to register with hotmail.com emails still can't get past the script and keep getting error messages... how?! what's wrong here?

MISTER2
05-23-2008, 06:35 PM
Awesome, installed on 3.7.0 tested and it works great!
(Tested with single domain restriction)

biome.pat
09-19-2008, 05:29 AM
Alright, so I think I've found a bug.

If you run a board where you want to prevent users from changing their email, either by editing the modifypassword template or by cutting things out of the profile.php file (tried many things, like changing $show['edit_email_field'] to false whether user was on ban list or not, and commenting out whole sections). Anyhow, regardless of how I tried to work it, I couldn't remove the email input fields, because when users tried to change their passwords, they'd be redirected to error pages saying they needed to enter their email (when those spaces didn't exist).

And when I disabled Email Rules, everything worked fine.

Any ideas? Suggestion would be muchly appreciated! :)

biome.pat
09-19-2008, 05:32 AM
Ah... and I'm an idiot. If anyone else has this problem, just hack out the fields any way you please, and turn off the plugin at the profile_updatepassword_complete hook... Who needs that when there isn't any way to change it...

Grrr...

Well, so long as others can learn from my mistakes!

IDEASBANK2009
07-24-2009, 07:02 PM
HOW SWEET IS THAT!!!! :D
Great job and thanks again!
IDEASBANK2009

ilanyon
07-23-2011, 01:38 AM
Hi, has anyone tried this with vB 4?

Or know of anything that does work with such???

Much appreciated,

Ian

bbi
07-29-2011, 02:51 AM
I am also curious - does this work with VB 4?
Thanks

BirdOPrey5
10-29-2011, 06:04 PM
It works for me on VB 4.1.7. :up:

oldlock
02-06-2012, 12:15 PM
Anyone have any insights how one could use this like :

allow any .gov address, but also overseas .gov, like .gov.uk, .gov.ie etc. Basically to ensure that there has to be .gov somewhere in the address ???

BirdOPrey5
02-06-2012, 01:00 PM
this should do it:
\.gov[.\w]*$

moneymakervn
05-03-2013, 12:26 PM
Awesome mod, thanks a lot!!!