Do you run a mail list with phpmailer and want to enable a reply-to path on your email messages while leaving the from address tagged to a bounce handeling email box?
Heres how we cracked it..
Modification to PHPlist, version 2.10.2
open config/config.php and add to the end:
<php/>
<br /> # START web engineer mod<br /> define("DEFAULT_REPLY_TO","mailbox@domain.com"); // your email address here<br /> # END web engineer mod<br />
Then open admin/sendemaillib.php and insert on line 534 after the following VERBOSE bit:
<php/>
<br /> if (VERBOSE)<br /> output("Sending text only to $domaincheck");<br /> }<br /> # START web engineer mod<br /> $mail->AddReplyTo(DEFAULT_REPLY_TO); // hard coded replyto<br /> }<br /> # END web engineer mod<br />
Thats it – should function correctly.
Incidently – we use phpmailer and qmail.



