Gossamer Forum
Home : Products : Others : Gossamer Community :

Signup monitor

Quote Reply
Signup monitor
In comm signup monitor I've setup EMAIL LIKE "HOTMAIL.COM" TO REJECT to reject all users that come from @hotmail.com domain.

Now, when user try to signup with email something@hotmailing.com, he also is rejected.

If I put to reject mail EXACT "HOTMAIL.COM" then all users from hotmail are allowed because script is looking for exact match of whole email address, not just domain.

How to set it the way I want it?

Regards.

UnReal Network
Quote Reply
Re: [DeadMan] Signup monitor In reply to
Not sure, but you tried:

EMAIL LIKE "HOTMAIL\.COM"

Basically, it looks like the . is matching the "ing" in the example you gave.

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Signup monitor In reply to
Nope. It doesn't work...

UnReal Network
Quote Reply
Re: [DeadMan] Signup monitor In reply to
No idea I'm afraid then :( Maybe tomorrow , when my brains had a rest =-) Been a bit of a long day

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Signup monitor In reply to
Any new thoughts about this? Brewt?

This really gives me headache and frustrated users!

Regards.

UnReal Network
Quote Reply
Re: [DeadMan] Signup monitor In reply to
The LIKE condition uses a regular expression to perform the check, so that means you can use regex syntax in the field. To make that match, you should use:

Email LIKE \@hotmail\.com$

Adrian
Quote Reply
Re: [brewt] Signup monitor In reply to
Oh. Cool. It's workig. Thanks!

Regards.

UnReal Network