I got version 1.0.5 of mantis.. I configured it properly but it doesn't let anyone to create its USER ID and also it doesn't send any email message to the user and gives this ERROR:
PROBLEMS SENDING MAIL TO: test123@hotmail.com
Mailer Error: Could not instantiate mail function.
Please tell me what to do now?
V1.0.5 Doesn't let me to create user and doesn't send email.
Moderators: Developer, Contributor
I had the same error but if you hit your back button, you'll see that the user has been created but that they have no password yet; I'm not sure if these emails are stored in a table in the database somewhere but if they are, you can probably fetch the URL from the message body and email it to someone manually for now. This link takes the new user to a registration/activation page where they can choose their password and then log in.
As for the actual error, it sounds like you don't have SMTP/mail configured on your server where Mantis is installed. This in itself is not trivial (there's relaying issues, etc.) and requires you to be somewhat familiar with your OS and system admin in general.
I'd suggest going to http://www.linuxquestions.org and asking them how to set up a mail server. Once you can send mail on your server, Mantis mail functionality should work.
As for the actual error, it sounds like you don't have SMTP/mail configured on your server where Mantis is installed. This in itself is not trivial (there's relaying issues, etc.) and requires you to be somewhat familiar with your OS and system admin in general.
I'd suggest going to http://www.linuxquestions.org and asking them how to set up a mail server. Once you can send mail on your server, Mantis mail functionality should work.
In Mantis 1.1, such emails will be queued in the database and will be sent once the email settings works or the SMTP becomes available.
Regards,
Victor
http://www.futureware.biz/mantisconnect/
Regards,
Victor
http://www.futureware.biz/mantisconnect/
And if you want to disable the password reset process (new users will be created with a blank password), copy the following from config_defaults_inc.php to config_inc.php, near line 150. Set this to "OFF":
I think we're talking to ourselves here, but hopefully somebody else will find this useful. ;)
Code: Select all
# if ON users will be sent their password when reset.
# if OFF the password will be set to blank. If set to ON, mail settings must be
# correctly configured.
$g_send_reset_password = ON;
Last edited by gravyface on 17 Aug 2006, 12:49, edited 1 time in total.