1 nureac Jun 01, 2013 15:45
3 nureac Jun 01, 2013 16:51
Wow, thanks for the instant reply!
Is it correct that I have to add the parameter twice in /inc/_core/_misc.funcs.php?
// SEND MESSAGE:
if( $debug > 1 )
{ // We agree to die for debugging...
if( ! mail( $to, $subject, $message, $headerstring, "-f name@domain.de" ) )
{
debug_die( 'Sending mail from «'.htmlspecialchars($from).'» to «'.htmlspecialchars($to).'», Subject «'.htmlspecialchars($subject).'» FAILED.' );
}
}
else
{ // Soft debugging only....
if( ! @mail( $to, $subject, $message, $headerstring, "-f name@domain.de" ) )
{
$Debuglog->add( 'Sending mail from «'.htmlspecialchars($from).'» to «'.htmlspecialchars($to).'», Subject «'.htmlspecialchars($subject).'» FAILED.', 'error' );
return false;
}
}
Of cause using a real e-mail instead of name@domain.de.
It's in /inc/_core/_misc.funcs.php