problem sending email via mantis

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
marveljojo
Posts: 5
Joined: 05 Dec 2006, 13:10

problem sending email via mantis

Post by marveljojo »

Hello, I'm using Mantis 1.0.5 with easyphp 1.8.0.1

Each time I want to sign up for a new account, the new account is create but impossible to receive the confirmation mail.
here is my config_inc.php :

<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = '';

# --- email variables -------------
$g_administrator_email = 'jojo@toto.com';
$g_webmaster_email = 'jojo@toto.com';

# the "From: " field in emails
$g_from_email = 'roreply@toto.com';

# the return address for bounced mail
$g_return_path_email = 'jojo@toto.com';

# --- file upload settings --------
# This is the master setting to disable *all* file uploading functionality
#
# The default value is ON but you must make sure file uploading is enabled
# in PHP as well. You may need to add "file_uploads = TRUE" to your php.ini.
$g_allow_file_upload = ON;
?>

Can anyone help me by telling me where is the problem ??? ??

Thank you,

Johan
jdl
Posts: 7
Joined: 05 Dec 2006, 14:20

Post by jdl »

Does mantis send out emails when it should for other scenarios? Like when a bug is created? Knowing this might help to understand as it might be a different cause if the system is sending out NO emails vs. just no emails for account create.
ed
Posts: 143
Joined: 14 Feb 2005, 02:04
Location: Sydney, Australia

Post by ed »

Did you configure php.ini to point to your mail (SMPT) server?
vivekanandan
Posts: 5
Joined: 17 Jan 2008, 07:08

how to configure php.ini with smtp

Post by vivekanandan »

hi..
I'm using bitnami mantis version in windows xp.
the email conformation is not working as i found that the smtp in php.ini not configured.
then i cahnged the php.ini in the note pad to the following.
but it's not working still..

[mail function]
;
For Win32 only.
SMTP = my ip address
smtp_port = 25

; For Win32 only.
;sendmail_from = to my mail id,

can any help to configure the smtp or any other procedures to do more than this.
thanks.
Post Reply