Ok, then try following:
In "includes.php" locate "function uddeIMsendmail...".
Before
[code:1] if ($config->mailsystem==1) { // mosMail
$ret = uddeIMmosMail($frommail, $fromname, $tomail, $subject, $message, false, NULL, NULL, NULL, $replyto, NULL);
} else { //php mail
$header .= "Reply-To: ".$replyto."\n";
$ret = @mail($tomail,$subject,$message,$header);
}
[/code:1]
add following lines
[code:1]var_dump($frommail);
var_dump($fromname);
var_dump($tomail);
var_dump($subject);
var_dump($replyto);
var_dump($header);
exit;
[/code:1]
When uddeIM tries to send an email it will stop here and the message headers are displayed.
So you can check if uddeIM tries to send a message and which data is used.
I am 100% sure that it is not uddeIM.
uddeIM & uddePF Development
CB Language Workgroup
CB 3rd Party Developer