Thanks,

I'm aware.  You can change that if you'd like, but so far from the 200 plus
sites I've done, I've never has a .museum address. It could happen; someone
does the museum sites :-)

If you want another that uses CF and allows museum, you could try the
function below... someone on the list gave me this ages ago. 

        <cffunction name="isEmail" returntype="boolean" access="public"
output="false">
                <cfargument name="email_address" type="string"
required="true" />
                <cfscript>
                        var isOK = false;
                        //supports new top level tlds
                        if (
REFindNoCase("^['_a-z0-9-]+(\.['_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.(([a
-z]{2,3})|(aero|coop|info|museum|name))$",arguments.email_address)) {
                                isOK = true;
                        }
                        return isOK;
                </cfscript>


Robert Harrison
Full Stack Developer
AIMG
[email protected]
Main Office: 704-321-1234 ext.121
Direct Line: 516-302-4345
www.aimg.com

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359969
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to