Mailing list problems
Status: Inactive
Brought to you by:
jvreuls
I have had a problem replying to mailings sent on e-
groups as ecorrei appears to ignore the "Reply to"
element in received messages altogether and send the
reply to the sender rather than to the whole group as
required.
Remedied it by modifying create.php as follows...
line 258 reads "$tmpa = $hinfo->from;"
Modify to read
$tmpa = $hinfo->reply_to;
if ( $tmpa == "" ) {
$tmpa = $hinfo->from;
}
This should ensure that in the unlikely event of the
reply_to element being null the "from" element will be
used instead.
I'm posting this bug so that
a) others might benefit from the information
b) it can be considered as a fix in the next release.
Best Wishes,
Sean