HI All,
I do have PhpList ( version 3.0.10 ). I could able to see number of views but bounce rate remains zero always. I implemented following things to resolve issue but still it is not showing the bounce rates.
1 ) Added Plugin
Name : phplist-plugin-bounces-master
Enabled it in config.php ( define("PLUGIN_ROOTDIR","path/to/admin/plugin")
2) Added rules in for bouncing in front end ( Through regular expression )
Enabled it in config.php ( define('USE_ADVANCED_BOUNCEHANDLING',1) )
3 ) Process Bounces
Configured mail server in config.php file
$bounce_mailbox_host = 'pop.gmail.com';
$bounce_mailbox_user = 'username';
$bounce_mailbox_password = 'pwd';
$bounce_mailbox_port = "995/pop3/notls";
#$bounce_mailbox_port = "110/pop3";
$bounce_mailbox_port = "995/pop3/ssl/novalidate-cert";
# when the protocol is mbox specify this one
# it needs to be a local file in mbox format, accessible to your webserver user
$bounce_mailbox = '/var/mail/listbounces';
Could anyone provide me the solution to resolve this issue?
Thanks
Clara