Bug in latest sendy version (bounces handling)
Hi,
in latest version is bug in includes/campaigns/bounces.php. Bounces from amazon are handled only on soft level (e-mail is never bounced in sendy, only bounce notice is incremented).
But fix is very simple, correct variable name on line 83:
$q = 'UPDATE subscribers SET bounced = 1, timestamp = '.$time.' WHERE email = "'.$problem_email.'"';
$r3 = @mysql_query($q3);
....
to
$q3 = 'UPDATE subscribers SET bounced = 1, timestamp = '.$time.' WHERE email = "'.$problem_email.'"';
$r3 = @mysql_query($q3);
...
in latest version is bug in includes/campaigns/bounces.php. Bounces from amazon are handled only on soft level (e-mail is never bounced in sendy, only bounce notice is incremented).
But fix is very simple, correct variable name on line 83:
$q = 'UPDATE subscribers SET bounced = 1, timestamp = '.$time.' WHERE email = "'.$problem_email.'"';
$r3 = @mysql_query($q3);
....
to
$q3 = 'UPDATE subscribers SET bounced = 1, timestamp = '.$time.' WHERE email = "'.$problem_email.'"';
$r3 = @mysql_query($q3);
...
This discussion has been closed.
Comments
Then just replace the file
/includes/campaigns/bounces.php
.