]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/plugins/contrib/imailhide.mdwn
ikiwiki (3.20130711) unstable; urgency=low
[git.ikiwiki.info.git] / doc / plugins / contrib / imailhide.mdwn
1 [[!template id=plugin name=imailhide author="Peter_Vizi"]]
2 [[!tag type/widget type/html]]
4 # Mailhide Plugin for Ikiwiki
6 This plugin provides the directive mailhide, that uses the [Mailhide
7 API][1] to protect email addresses from spammers.
9 ## Dependencies
11 The [Captcha::reCAPTCHA::Mailhide][2] perl module is required for this
12 plugin.
14 ## Download
16 You can get the source code from [github][3].
18 ## Installation
20 Copy `imailhide.pm` to `/usr/share/perl/5.10.0/IkiWiki/Plugin` or
21 `~/.ikiwiki/IkiWiki/Plugin`, and enable it in your `.setup` file
23     add_plugins => [qw{goodstuff imailhide ....}],
24     mailhide_public_key => "8s99vSA99fF11mao193LWdpa==",
25     mailhide_private_key => "6b5e4545326b5e4545326b5e45453223",
26     mailhide_default_style => "short",
28 ## Configuration
30 ### `mailhide_public_key`
32 This is your personal public key that you can get at [Google][4].
34 ### `mailhide_private_key`
36 This is your personal private key that you can get at [Google][4].
38 ### `mailhide_default_style`
40 As per the recommendation of the [Mailhide API documentation][5], you
41 can define this as `short` or `long`. The `short` parameter will
42 result in `<a href="...">john</a>` links, while the `long` parameter
43 will result in `joh<a href="...">...</a>@example.com`.
45 ## Parameters
47 ### `email`
49 *Required.* This is the email addres that you want to hide.
51 ### `style`
53 *Optional.* You can set the style parameter individually for each
54  `mailhide` call. See `mailhide_default_style` for details.
56 ## Known Issues
58 1. [opening new window when displaying email address][6]
60 [1]: http://www.google.com/recaptcha/mailhide/
61 [2]: http://search.cpan.org/perldoc?Captcha::reCAPTCHA::Mailhide
62 [3]: http://github.com/petervizi/imailhide
63 [4]: http://www.google.com/recaptcha/mailhide/apikey
64 [5]: http://code.google.com/apis/recaptcha/docs/mailhideapi.html
65 [6]: http://github.com/petervizi/imailhide/issues#issue/1