Page 1 of 1

Invalid email

Posted: 05 Feb 2007, 09:12
by texier
After intalling Mantis 1.0.6, I have the following error when I want to create a new user :

-----------------------
APPLICATION ERROR #1200

Invalid email.
-----------------------

The testing mail - mail() send successful with the Mantis Administration check page, but it takes a very long time (near 3 minutes)

Is someone have already get this PB, or get an idea to resolved it ?

I have found a work-arround by setting the $g_validate_email = OFF but account creation is very long.

Any idea ?
Thanks for help

Posted: 06 Feb 2007, 15:44
by torsten.fleischmann
i don't know an answer, but i think that you might have a problem with your smtp server...if you're using one.

try to ping the e-mail servers ip (from the mantis server of course) and try also to ping the servername...maybe it's a problem with the dns server adress resolution...maybe :)

otherwise...forget what i've said

Posted: 07 Feb 2007, 05:30
by vboctor
You might want to revise the settings for the following options:

Code: Select all

	# set to OFF to disable email check
	$g_validate_email		= ( substr( php_uname(), 0, 7 ) == 'Windows' ) ? OFF : ON;
	$g_check_mx_record		= OFF;	# Not supported under Windows.

	# if ON, allow the user to omit an email field
	# note if you allow users to create their own accounts, they
	#  must specify an email at that point, no matter what the value
	#  of this option is.  Otherwise they wouldn't get their passwords.
	$g_allow_blank_email	= OFF;

	# Only allow and send email to addresses in the given domain
	# For example:
	# $g_limit_email_domain		= 'users.sourceforge.net';
	$g_limit_email_domain	= OFF;