v.1.7.6 (Free) riddled with bugs, author does note reply. Any help here?
-
So, I installed v.1.7.6 (free) to have a look.
Instantly, I faced the most basic bugs.
I will save those for later, because I worked around them.
Tried to contact the author. Days have gone by, no response.
A lesser man would have bailed entirely by now. :-/
I would be keen on buying the commercial version if only the author would have replied to my inquiries. Terrible first impression. :-(((((Outstanding bugs:
1) New subscribers do not get sent e-mail verification after registering to join list, or added manually.
2) e-mails sent from unknown addresses to list are silently sent to black hole; there are no “You’re not subscribed / verified” messages sent, with necessary “click here to register / verify your e-mail address.” links.
3) Depending on HTML vs. Text settings for recipient, messages are not sent at all. HTML recipients may see messages where entire message is juxtaposed into single line withOUT <br> / <p> where the original sender had clearly put a new line. Plain text for all seems to work best. No option to just ignore HTML capabilities and force plain text for all. Python linx to convert HTML to plain-text with visible links would do well here. :-/Bugs I fixed / worked around:
1) IMAP SSL vs. no-ssl is NOT properly passed to backend. I instrumented the code to prove that the ssl var is always evaluated to false. This breaks SSL to port 993. Further, even though ssl is evaluated as false (due to bug), even IMAP over 143 is failed because it tries to do SSL anyway. I did not find the proper resolution for why ssl=false, which is code bug a la inability to read the ssl settings, so I ended up hard-coding the value in this file:
~/www/{site}/public_html/wp-content/plugins/wp-mailing-group/template/mg_imapemailconnection.php:
$ssl = true;
(While commenting out the original $ssl handling..)
2) SMPT send is broken due to missing class dependency. There is a line in the following two files for phpmailer that needs a corresponding smtp inclusion.
The two files:mg_testmail.php mg_testmail.php
wpmg_cron_send_email.phpBoth need smtp include, next to the phpmailer include, a la:
include_once(ABSPATH . WPINC . ‘/class-smtp.php’);
Getting this far, I am very dismayed about the lack of proper handling of new subscribers; no email sent to them to verify their address, and in particular the poor handling of HTML vs. plain text, and the fact that so many messages go to a black hole with no explanation, no debug/diag as to why.
Any suggestions?
- The topic ‘v.1.7.6 (Free) riddled with bugs, author does note reply. Any help here?’ is closed to new replies.