Skip to content

Bug in latest sendy version (bounces handling)

edited November 2012 in Troubleshooting
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);
...

Comments

  • Thanks for catching this. Hard bounced was indeed not registered after 3 soft bounces. Will be releasing an update soon.
  • BenBen
    edited November 2012
    I've added this fix to 1.1.1.4. Download the build at http://sendy.co/get-updated

    Then just replace the file /includes/campaigns/bounces.php.
This discussion has been closed.