In reply to:
Any help here possible?
Those who would have configured PHP List?Mirror this site:
Update the config.php file
61 # Message envelope. This is the email that system messages come from
62 # it is useful to make this one where you can process the bounces on
63 # you will probably get a X-Authentication-Warning in your message
64 # when using this with sendmail
65 # NOTE: this is *very* different from the From: line in a message
66 # to use this feature, uncomment the following line, and change the email address
67 # to some existing account on your system
68 # requires PHP version > "4.0.5" and "4.3.1+" without safe_mode
69 # $message_envelope = 'listbounces@yourdomain';
Because later on in the sendMail() function:
292 if ($this->message_envelope) {
293 $header = rtrim($header);
294 if ($header)
295 $header .= "\n";
296 $header .= "Errors-To: ".$this->message_envelope;
297 if (!$parameters || !ereg("-f".$this->message_envelope)) {
298 $parameters = '-f'.$this->message_envelope;
299 }
300 }So if $message_envelope is set to 'postmaster@example.com' then $parameters is set to '-fpostmaster@example.com' and gets passed to mail() ... sound familiar?
Customer since 2000
openvein.org