savannah-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Savannah-hackers] No project registration e-mail messages are being


From: Guillaume Morin
Subject: Re: [Savannah-hackers] No project registration e-mail messages are being sent
Date: Sun, 4 Aug 2002 23:03:56 +0200
User-agent: Mutt/1.4i

Dans un message du 04 aoû à 22:46, Guillaume Morin écrivait :
> 2002-08-04 07:00:55 17bJ83-0005RQ-00 **
> address@hidden@gnu.org R=lookuphost T=remote_smtp: SMTP error
> from remote mailer after RCPT TO:<address@hidden@gnu.org>:
> host mail.gnu.org [199.232.76.166]: 550 Unknown local part
> address@hidden in <address@hidden@gnu.org> 

It turns out the problem was in register/confirmation.php :

line 185 :

mail($GLOBALS['sys_email_adress'],
$GLOBALS['sys_default_domain'].": submission of $form_full_name",
$message_admin, "From: $user_email\nReply-To: $user_email");

with $GLOBALS['sys_email_adress'] = "address@hidden".

This was triggering the error. Exim added the second @gnu.org.

Since I guess, the antislash is there for a good reason. I've fixed the
problem with :

mail($GLOBALS['sys_email_adress'],
$GLOBALS['sys_default_domain'].": submission of $form_full_name",
$message_admin, "From: $user_email\nReply-To: $user_email");

I've not registered a test project but it is a trivial change. 

Regards,

-- 
Guillaume Morin <address@hidden>

         Do you worry that you're not liked ? How long till you break ?
                                (Our Lady Peace)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]