This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Graceful Email Obfuscation

Description

Hiding email addresses from spammers has a long history. There are some obvious golden goals, like making the process seamless to your visitors, and be practicable to implement. The one that often gets left out is accessibility, but in some areas this is actually a legal requirement.[1]

The method

To my knowledge, this plugin implements the best method so far devised. Credit goes to Roel Van Gils for this technique, which he calls Graceful Email Obfuscation.[2] The basic idea is actually very simple: use PHP and JS to hide the address effectively, and make sure the fallback can be used easily by blind or visually impaired users by using a text-based CAPTCHA.

The PHP code takes passed-in emails and generates simply-encoded string using alphabetic characters. It is therefore very hard to imagine what sort of spammer’s parser could possibly detect it. The only way is to load the whole DOM and jQuery to run the decryption routine. As far as we know, no bots go to those lengths, but it adds essentially no overhead if the theme or any other plugins already load jQuery; otherwise a fraction of a second might be added to page load.

Comparisons with other plugins

Amazingly, no other WordPress plugins seem to use this method, either offering very little spam protection, or not coping with JavaScript turned off (3-10% of users). Private Daddy comes closest, but falls at the last hurdle by offering an image CAPTCHA with no non-visual alternative. Clunky though my first code bash is, it seems to the best available at the moment if accessibility is really important to you (of course, if I did not think that, I would not have written this). There is a similar Drupal plugin.[3]

Comparisons with other methods

The most viable alternative methods are:

  1. Using images (cf. Visagefolio). This requires typing and is a pain for everyone.
  2. Poor “test [at] example [dot] com” style text replacements provide no protection and annoy users.
  3. Clever things like outputting “moc.elpmaxe@tset” and using CSS unicode rules to reverse it. Unfortunately these cause trouble for the blind and in some browsers make it confusing to copy and paste the link.
  4. Using XML comments or CSS display: none; to remove elements inside the link text. There is still no clickable link, which makes it hard for the blind to use.

JavaScript fallback

If there is no JavaScript, the user is taken to a page on the site using an empty content box where they are asked a simple text question to check whether they are a human. Basic sums are asked at the moment, though a wider range of questions could be added using the testCAPTCHA.com service.

References

  1. See particularly ‘508’ legislation in America.
  2. Original description on A List Apart.
  3. Drupal plugin

Further reading:

  1. GEO review by Ken Carlson
  2. Spam obfuscation comparison recommending use of this method for 508 compliance: .eduGuru article by Michael Fienen

Some notes and future details on my site

Installation

To use:

  1. Upload the folder geo-spam-prevention to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Use the shortcode [email] in your pages and posts.

Syntax & Details

The link can either be put inside the tag:

[email]test@example.com[/email]

Or, an alternate link text can be provided by using href:

[email href="anthony@example.com"]Contact Anthony[/email]

Further, any style or class attributes used on [email] get passed down to the <a> element generated, which also has the geo-address class added to it for styling your email links.

JavaScript fallback styling

The plugin grabs the frontpage and uses it to to display the CAPTCHA. The actual page layout is highly dependent on the theme, so the plugin applies a fairly standard heuristic, putting its content inside any div with id main or content, or role main. That covers pretty much all themes. If the auto-detection does not work, the whole page is replaced instead. The upshot is that it should function fine, but may mess up the style if various wrappers or complex CSS rules are used in the theme.

Reviews

September 3, 2016
I was just looking for a plugin that would allow me to properly obfuscate my email address. The plugin is very easy to use, plus it works exactly as advertised. This is a correct implemenation of the concept on A List Apart.
Read all 1 review

Contributors & Developers

“Graceful Email Obfuscation” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

0.3 potential plans

The choice of human-accessible questions could be opened up. A page scanner to avoid the use of shortcodes could be offered.

0.2

A fairly hefty change to the way the CAPTCHA is placed on the frontpage. I had made a bad assumption about how a WP hook worked, and rectifying it required engineering a vastly more fiddly piece of apparatus requiring parsing and fiddling with the document. It ought to be as close to bullet-proof as can be, much better the regular expressions.

0.1

First release