spambotEmailProtector not using 'jsLocation'

3 posts by 2 authors in: Forums > CMS Builder: Plugins & Add-ons
Last Post: July 9, 2013   (RSS)

By gregThomas - July 8, 2013

Hi -aev-

I have the same problem with Windows 7 and Thunderbird. Would it be possible to fill out a second level support request for me? Then I can take a closer look at how to resolve the issue. You can find the form here:

https://www.interactivetools.com/support/email_support_form.php

Thanks

Greg

Greg Thomas







PHP Programmer - interactivetools.com

By gregThomas - July 9, 2013

Hi -aev-,

I've fixed the issue with the plugin, the problem was that spam bot e-mail protector was adding both comment and tags to the e-mail addresses, which a lot of browsers don't filter out, I've switched off a couple of the encoding features which aren't supported by modern browsers. The encoding options now look as follows:

// Encoding Options - to disable an encoding method set to false;
$GLOBALS['SEP_ENCODING_METHODS']['decEntity'] = true;
$GLOBALS['SEP_ENCODING_METHODS']['hexEntity'] = true;
$GLOBALS['SEP_ENCODING_METHODS']['urlEncoding'] = true;
$GLOBALS['SEP_ENCODING_METHODS']['jsUnicode'] = true;
$GLOBALS['SEP_ENCODING_METHODS']['bdo'] = false;
$GLOBALS['SEP_ENCODING_METHODS']['comments'] = false;
$GLOBALS['SEP_ENCODING_METHODS']['tags'] = false;
$GLOBALS['SEP_ENCODING_METHODS']['jsLocation'] = true;


These changes have also been saved to the development copy of the plugin, so on the next release these will be the default settings.

Cheers!

Greg

Greg Thomas







PHP Programmer - interactivetools.com