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.

WP PGP Encrypted Emails

Description

WP PGP Encrypted Emails can automatically sign and encrypt any email that WordPress sends to your site’s admin email address or your users’s email addresses. You give it a copy of the recipient’s OpenPGP public key and/or their S/MIME certificate, and it does the rest. You can even automatically generate an OpenPGP signing keypair for your site to use.

Encrypting outgoing emails protects your user’s privacy by ensuring that emails intended for them can be read only by them, and them alone. Moreover, signing those emails helps your users verify that email they receive purporting to be from your site was actually sent by your server, and not some imposter. If you’re a plugin or theme developer, you can encrypt and/or sign arbitrary data using this plugin’s OpenPGP and S/MIME APIs, which are both built with familiar, standard WordPress filter hooks. This enables you to develop highly secure communication and publishing tools fully integrated with your WordPress install. See the README.markdown file for details on cryptographic implementation and API usage.

Donations for this and my other free software plugins make up a chunk of my income. If you continue to enjoy this plugin, please consider making a donation. ?? Thank you for your support!

Plugin features:

  • Processes all email your site generates, automatically and transparently.
  • Configure outbound signing: sign email sent to all recipients, or just savvy ones.
  • Per-user encryption keys and certificates; user manages their own OpenPGP keys and S/MIME certificates.
  • Compatible with thousands (yes, thousands) of third-party contact form plugins.
  • Full interoperability with all standards-compliant OpenPGP and S/MIME implementations.
  • Options to enforce further privacy best practices (e.g., removing Subject lines).
  • Fully multisite compatible, out of the box. No additional configuration for large networks!
  • No binaries to install or configure; everything you need is in the plugin itself.
  • Bells and whistles included! For instance, visitors can encrypt comments on posts so only the author can read them.
  • Built-in, customizable integration with popular third-party plugins, such as WooCommerce.
  • Always FREE. Replaces paid email encryption “upgrades,” and gets rid of yearly subscription fees. (Donations appreciated!)
  • And more, of course. ??

The plugin works transparently for all email your site generates, and will also sign and encrypt outgoing email generated by other plugins (such as contact form plugins) or the built-in WordPress notification emails. All you have to do is add one or more OpenPGP keys or an S/MIME certificate to the Email Encryption screen (WordPress Admin Dashboard → Settings → Email Encryption). Each user can opt to also remove envelope information such as email subject lines, which encryption schemes cannot protect. With this plugin, there’s no longer any need to pay for the “pro” version of your favorite contact form plugin to get the benefit of email privacy.

Each of your site’s users can supply their own, personal OpenPGP public key and/or X.509 S/MIME certificate for their own email address to have WordPress automatically encrypt any email destined for them. (They merely need to update their user profile.) They can choose which encryption method to use. Once set up, all future emails WordPress sends to that user will be encrypted using the standards-based OpenPGP or S/MIME technologies.

The OpenPGP-encrypted emails can be decrypted by any OpenPGP-compatible mail client, such as MacGPG (macOS), GPG4Win (Windows), Enigmail (cross-platform), OpenKeychain (Android), or iPGMail (iPhone/iOS). For more information on reading encrypted emails, generating keys, and other uses for OpenPGP-compatible encryption, consult any (or all!) of the following guides:

The S/MIME-encrypted emails can be decrypted by any S/MIME-compatible mail client. These include Apple’s Mail on macOS and iOS for iPhone and iPad, Microsoft Outlook, Claws Mail for GNU/Linux, and more.

For developers, WP PGP Encrypted Emails provides an easy to use API to both OpenPGP and S/MIME encryption, decryption, and integrity validation operations through the familiar WordPress plugin API so you can use this plugin’s simple filter hooks to build custom OpenPGP- or S/MIME-based encryption functionality into your own plugins and themes.

Security Disclaimer

Security is a process, not a product. Using WP PGP Encrypted Emails does not guarantee that your site’s outgoing messages are invulnerable to every attacker, in every possible scenario, at all times. No single security measure, in isolation, can do that.

Do not rely solely on this plugin for the security or privacy of your webserver. See the Frequently Asked Questions for more security advice and for more information about the rationale for this plugin.
If you like this plugin, please consider making a donation for your use of the plugin or, better yet, contributing directly to my Cyberbusking fund. Your support is appreciated!

Themeing

Theme authors can use the following code snippets to integrate a WordPress theme with this plugin.

  • To link to a site’s OpenPGP signing public key: <?php print admin_url( 'admin-ajax.php?action=download_pgp_signing_public_key' ); ?>

Plugin hooks

This plugin offers additional functionality intended for other plugin developers or theme authors to make use of. This functionality is documented here.

Filters

`wp_user_encryption_method`

Gets the user’s preferred encryption method (either pgp or smime), if they have provided both an OpenPGP public key and an S/MIME certificate.

  • Optional arguments:
    • WP_User $user – The WordPress user object. Defaults to the current user.

`wp_openpgp_user_key`

Gets the user’s saved OpenPGP public key from their WordPress profile data, immediately usable in other openpgp_* filters.

  • Optional arguments:
    • WP_User $user – The WordPress user object. Defaults to the current user.

`openpgp_enarmor`

Gets an ASCII-armored representation of an OpenPGP data structure (like a key, or an encrypted message).

  • Required parameters:
    • string $data – The data to be armored.
  • Optional parameters:
    • string $marker – The marker of the block (the text that follows -----BEGIN). Defaults to MESSAGE, but you should set this to a more appropriate value. If you are armoring a PGP public key, for instance, set this to PGP PUBLIC KEY BLOCK.
    • string[] $headers – An array of strings to apply as headers to the ASCII-armored block, usually used to insert comments or identify the OpenPGP client used. Defaults to array() (no headers).

Example: ASCII-armor a binary public key.

$ascii_key = apply_filters('openpgp_enarmor', $public_key, 'PGP PUBLIC KEY BLOCK');

`openpgp_key`

Gets a binary OpenPGP public key for use in later PGP operations from an ASCII-armored representation of that key.

  • Required parameters:
    • string $key – The ASCII-armored PGP public key block.

Example: Get a key saved as an ASCII string in the WordPress database option my_plugin_pgp_public_key.

$key = apply_filters('openpgp_key', get_option('my_plugin_pgp_public_key'));

`openpgp_sign`

Clearsigns a message using a given private key.

  • Required parameters:
    • string $data – The message data to sign.
    • OpenPGP_SecretKeyPacket $signing_key – The signing key to use, obtained by passing the ASCII-armored private key through the openpgp_key filter.

Example: Sign a short string.

$message = 'This is a message to sign.';
$signing_key = apply_filters('openpgp_key', $ascii_key);
$signed_message = apply_filters('openpgp_sign', $message, $signing_key);
// $signed_message is now a clearsigned message

`openpgp_encrypt`

Encrypts data to one or more PGP public keys or passphrases.

  • Required arguments:
    • string $data – Data to encrypt.
    • array|string $keys – Passphrases or keys to use to encrypt the data.

Example: Encrypt the content of a blog post.

// First, get the PGP public key(s) of the recipient(s)
$ascii_key = '-----BEGIN PGP PUBLIC KEY BLOCK-----
[...snipped for length...]
-----END PGP PUBLIC KEY BLOCK-----';
$encryption_key = apply_filters('openpgp_key', $ascii_key);
$encrypted_post = apply_filters('openpgp_encrypt', $post->post_content, $encryption_key);
// Now you can safely send or display $encrypted_post anywhere you like and only
// those who control the corresponding private key(s) can decrypt it.

`openpgp_sign`

Signs a message (arbitrary data) with the given private key.

Note that if your plugin uses the built-in WordPress core wp_mail() function and this plugin is active, your plugin’s outgoing emails are already automatically signed so you do not need to do anything. This filter is intended for use by plugin developers who want to create custom, trusted communiques between WordPress and some other system.

  • Required arguments:
    • string $data – The data to sign.
  • Optional arguments:
    • OpenPGP_SecretKeyPacket $privatekey – The private key used for signing the message. The default is to use the private key automatically generated during plugin activation. The automatically generated keypair is intended to be a low-trust, single-purpose keypair for your website itself, so you probably do not need or want to use this argument yourself.

Example: Send a signed, encrypted JSON payload to a remote, insecure server.

$comment_data = get_comment(2); // get a WP_Comment object with comment ID 2
// Create JSON payload
$json = array('success' => true, 'action' => 'new_comment', 'data' => $comment_data);
$url = 'https://insecure.example.com/';
$response = wp_safe_remote_post($url, array(
));

`openpgp_sign_and_encrypt`

A convenience filter that applies openpgp_sign and then openpgp_encrypt to the result.

  • Required arguments:
    • string $data – The data to sign and encrypt.
    • string $signing_key – The signing key to use.
    • array|string $recipient_keys_and_passphrases – Public key(s) of the recipient(s), or passphrases to encrypt to.

`wp_openpgp_user_key`

Gets the user’s saved S/MIME public certificate from their WordPress profile data, immediately usable in other smime_* filters.

  • Optional arguments:
    • WP_User $user – The WordPress user object. Defaults to the current user.

`smime_certificate`

Gets a PHP resource handle to an X.509 Certificate.

  • Required arguments:
    • mixed $cert – The certificate, either as a string to a file, or raw PEM-encoded certificate data.

`smime_certificate_pem_encode`

Encodes (“exports”) a given X.509 certificate as PEM format.

  • Required arguments:
    • resource $cert

`smime_encrypt`

Encrypts a message as an S/MIME email given a public certificate.

  • Required arguments:
    • string $message – The message contents to encrypt.
    • string|string[] $headers – The message headers for the encrypted part.
    • resource|array $certificates – The recipient’s certificate, or an array of recipient certificates.

This filter returns an array with two keys, headers and message, wherein the message is encrypted.

Example: send an encrypted email via wp_mail(). (You do not need to do this if the recipient is registered as your site’s user, because this plugin does that automatically. Only do this if you need to send S/MIME encrypted email to an address not stored in WordPress’s own database.)

$cert = apply_filters( 'smime_certificate', get_option( 'my_plugin_smime_certificate' ) );
$body = 'This is a test email message body.';
$head = array(
    'From' => get_option( 'admin_email' ),
);
$smime_data = apply_filters( 'smime_encrypt', $body, $head, $cert );
if ( $smime_data ) {
    wp_mail(
        '[email protected]',
        'Test message.',
        $smime_data['message'], // message is sent encrypted
        $smime_data['headers']
    );
}

Screenshots

  • Paste the plain text version of your OpenPGP public key into the “PGP Public Key” field in your profile, then click “Save changes” at the bottom of the page. (There is a similar field for the WordPress admin email in the General Settings screen accessible to Administrator users.)

  • If the plugin detects a problem with your OpenPGP public key, you will get a notice like the one shown here.

  • Authors who add an OpenPGP public key to their profile also let readers leave semi-private comments on their posts. These are comments that are automatically encrypted to the author’s public key upon submission. Commenters who want to send a “Private” comment simply write their comment normally and ensure the encryption checkbox is enabled when they submit their comment.

  • Administrators can generate an OpenPGP signing keypair with which to automatically sign outgoing emails. This helps recipients verify that email they receive actually came from your website. Admins can regenerate the keypair automatically by clicking the “Regenerate keypair” button, or they can manually paste an ASCII-armored keypair for the site to use. For security, the private key part of the site’s signing key will only be transmitted over a secure (HTTPS) connection, so you will see a prompt to switch to a secure connection if you try to view it insecurely. You can still (re)generate a keypair, including the private key part, over an insecure connection because the key is generated on the server itself.

Installation

WP PGP Encrypted Emails can be installed automatically from the WordPress plugin repository by searching for “PGP Encrypted Emails” in the “Add new plugin” screen of your WordPress admin site and clicking the “Install now” button.

Minimum requirements:

  • PHP version 5.4 or later.
  • S/MIME support requires the OpenSSL PHP extension. (This is almost certainly already installed for you.)

The plugin will automatically de-activate itself, or automatically disable certain features, if these requirements are not met. If you do not see a given feature in the user interface, ensure your server (and your web hosting provider) meet the above requirements!

WP PGP Encrypted Emails can also be installed manually by following these instructions:

  1. Download the latest plugin code from the WordPress plugin repository.
  2. Upload the unzipped wp-pgp-encrypted-emails folder to the /wp-content/plugins/ directory of your WordPress installation.
  3. Activate the plugin through the “Plugins” menu in WordPress.

Once activated, each user who wants to receive encrypted emails must add their OpenPGP public key or S/MIME public certificate to their profile, and optionally choose the type of encryption they prefer messages addressed to them will use.

See the screenshots for a brief walkthrough of how to configure WP PGP Encrypted Emails after it is installed.

If a user does not have an OpenPGP public key already, they need to use an OpenPGP-compatible client to generate one themselves. (Learn more about OpenPGP-compatible clients.) Users will need to have the private key corresponding to the public key saved in their WordPress profile in order to be able to decrypt the email they receive. To learn more about generating keys and decrypting email, consult one (or more) of the following guides:

I have also found the following articles useful, but can not personally vouch for their accuracy:

If you found a good guide to using PGP/GPG that I haven’t listed here, please share it in the WP PGP Encrypted Emails plugin support forum.

Similarly, if a user doesn’t already have one, they will need to obtain an S/MIME certificate from a Certificate Authority (such as a public CA or their employer), or generate a self-signed one themselves. Learn more about getting an S/MIME certificate.

To view a list of known issues with this plugin or to report a bug, please use the project’s issue tracker.

FAQ

What is an OpenPGP-compatible client and where can I get one?

An OpenPGP-compatible client is simply an app that can read, write, and verify messages encrypted or signed using PGP technology. There are great, free apps for every major platform, including Windows, Mac, Linux, Android, iPhones, iPads, and more. Which app you choose depends largely on which device you already have, and then a bit about your personal tastes.

Since there are so many OpenPGP-compatible apps to choose from, I recommend sticking to the ones listed on the PRISM-Break.org website. (Note that PRISM-Break calls it “GPG” instead of “PGP,” but the two terms are generally synonymous.) Once you choose an OpenPGP-compatible app for your platform, consider seeking out its help and support documentation to get started using it, or check out some of the generic PGP/GPG guides listed at the end of this plugin’s Installation page.

I can’t decrypt messages addressed to my admin email address!

If you have registered a WordPress user account with the same email address as your site’s admin email address (in the Settings → General screen), then WP PGP Encrypted Emails will first check for a public key or certificate in the administrative Email Encryption settings (Settings → Email Encryption) before looking at your user’s profile settings. If an encryption key or certificate exists in the administrative settings, that key will be used instead of the key or certificate in the user’s profile. To resolve this issue, either ensure that you enter encryption keys in only one location (the administrative screen or the user’s profile), or ensure these keys are the same.

If you still cannot decrypt messages, make absolutely certain you have the matching private key or certificate corresponding to the public key or certificate that was used to encrypt the message. Unfortunately, it is highly infeasible that anyone on Earth will be able to decrypt messages encrypted to a public key or certificate that you do not have the associated private key for. That is, of course, the whole point of this software.

How do I read an encrypted comment?

If you have received a “Private” comment, you will need to use an OpenPGP-compatible PGP client to decrypt and read it. There are many free apps that do this. Which one you choose depends on what kind of computer you are already using. If you use Windows, I suggest installing and using GPG4Win since it provides the most features. For Mac OS X users, I suggest MacGPG for the same reason, and Linux users should check their distro’s package repository for compatible options. (For Ubuntu users, the Seahorse-Nautilus plugin is popular.)

I might also add support for an in-browser client based on OpenPGP.js at some point, but for now you will still need an external program to read encrypted comments. Please consider donating to help resource me work on this if that is a feature you’d like to see.

Why are emails from [other-plugin-here] not being encrypted?

Make sure the emails the other plugin sends are being addressed to an email account that WordPress knows about and that WordPress knows which OpenPGP public key or S/MIME certificate to use when encrypting email destined for that address.

More specifically, this means the TO: field of the outgoing email needs to match either your WordPress’s “admin email” address or the email address of one of your WordPress user accounts, and you need to provide the OpenPGP public key or S/MIME public certificate you want WordPress to use when encrypting the message and sending email to that address. In many contact form plugins, you can supply an arbitrary email address to send those emails to, but if that email address is not the address of a user on your site, WP PGP Encrypted Emails won’t know which OpenPGP public key or S/MIME public certificate to use for encryption.

As a workaround, simply create an unprivileged (“Subscriber” role) new WordPress user account with that email address and enter the OpenPGP public key or S/MIME certificate in that user’s profile. (Either accept the automatically generated password, or supply a new very strong passphrase, since you will not need to remember it because you will never need to log in with that user account.)

Why are my emails appearing strangely in my email client?

Issues with character sets, accented characters, different human languages, or content types not appearing correctly are almost always the result of a misconfiguration in the email-sending plugin you are using. Many contact form plugins, for example, allow you to supply custom email headers. WP PGP Encrypted Emails takes great care not to corrupt the email message sent by the underlying plugin that generated the email in the first place. However, this also means that if you do not set up your contact form or email-sending plugin correctly, this plugin won’t fix the error.

Most often, this is simply a matter of setting the correct Content-Type header in your contact form or email-sending plugin’s settings.

Is this plugin *really* secure?

Against the NSA? No, probably not. Against a nosy co-worker? Yes, probably.

The “realness” of security cannot “really” be measured in abstract, imprecise terms, but rather only based on what real threats you are likely to face and what risks you are vulnerable to if those threats materialize in reality. You have a much better sense of the answers to these things than I do for your situation, because I am not you. Security professionals call this process “threat modeling,” and if you are “really” concerned for your security (I encourage you to be!) then learning how to conduct a threat assessment for yourself is a good idea. Learn more about threat modeling from the EFF’s Surveillance Self-Defense Guide.

If this plugin isn’t secure against the NSA, what good is it?

TL;DR: Don’t let perfect be the enemy of good.

First of all, not everyone’s security needs are the same. (See “threat modeling,” discussed in the previous question.)

  • Against an opportunistic attacker, your security measures merely need to be better than your neighbor’s in order to be sufficient to deter attacks. This is “good enough” security for most users of WordPress, especially on shared hosting accounts (which are generally closer to the unsafe side of the security spectrum no matter what plugins you install anyway).
  • Against a well-resourced, determined adversary who has specifically singled you out, however, what matters is that your ability to secure yourself exceeds your adversary’s ability to compromise the specific security precautions you’ve put in place. Your relative security as compared with your neighbor’s doesn’t matter. In this case, it is better to do anything and everything you reasonably can do for your protection, even if no specific security measure will be enough on its own. This is known as “defense in depth” and is analogous to the way a medival castle had a moat that surrounded an outer wall which itself surrounded an inner wall protecting a keep. These concentric rings of security provide redundancy and serve to slow an attacker’s intrusion. This plugin can be considered one small part of a larger defense-in-depth security approach for your website.

Read Bruce Schneier’s “Lessons from the Sony Hack” for a brief, real-life case study in understanding this important nuance between opportunistic and focused attackers.

Further, security is largely a matter of operational practice, not theoretics. If you never use PGP/GPG because the only tools you have access to are not perfect, then you will not have the experience you need to know how to use PGP/GPG when you actually get access to it, because you never even practiced using it. By way of analogy, if you want to learn swordfighting but all you have is sticks you picked up in the forest, you are better off picking up those sticks and practicing with them than waiting and not practicing at all until you get your hands on steel swords.

Can I use a “strong” key for my user account?

Yes. You can use any OpenPGP public key you generate from any OpenPGP-compatible client.

How strong is the signing key the plugin generates?

When generating an OpenPGP signing keypair for your WordPress site, this plugin will create a 2,048-bit RSA OpenPGP keypair. This is considered “okay” (but not “great”) by 2018 standards. Unfortunately, many hosts will not allow the plugin to create a stronger keypair because of the computation required. Then again, this key is used only for signing, not encryption. Your own OpenPGP public key is always used for encryption, and you are of course encouraged to make that key as strong as you want.

If you want to use a stronger signing keypair, you can generate one yourself (offline), though you will need to load the key into your WordPress database yourself to use it with this plugin. I consider this extra step “paranoid,” but you are of course welcome to be as careful as you feel is appropriate. ??

Reviews

June 16, 2022
It works great! I just had to stop using Fluent Forms because I found no way to make it sending emails in plain text. No plain text, no working PGP encryption. Native Kadence’s form block and Contact Form 7 they both work out-of-the-box with WP PGP Encrypted Emails plugin. I’ve done a donation to the dev, and so I will for each site I will use this plugin on.
March 1, 2022
The plugin works very well and does exactly what it claims to. There are two changes that would be very useful though: 1. It would be nice if it allowed you to specify the admin email address. It has worpress@site hard coded, so it won’t work with sites that have changed the admin address. 2. It would be really nice if it were set up to work with Woocommerce, which typically has a separate outbound address than the Wordpress outbound email.
November 14, 2021 1 reply
I have successfully implemented this plugin both for PGP and S/MIME encryption and it does the job just like it should. I can use the keys that I am already using for various email accounts and thus safely transmit any emails, including those from contact forms. It is not understandable to me how so few people are implementing this plugin, since GDPR is necessitating protection of user data – and that certainly includes contact form entries. Anyways, keep up the good work & please keep updating the plugin if ever PHP development should require it ?? I’ll see to it that you receive a good donation for your work within a few months. Cheers!
March 4, 2021
Works fine in my configuration and provides a good solution to send encrypted contact form messages to the wordpress’ admin e-mail. There are some array acces issues with php 7.4 or higher (Trying to access array offset on value of type bool), but I just switched back to php 7.2 and everthing works fine. Even though this issue can be fixed easily in the code, I decided to keep the original files and receive updates automatically.
June 25, 2020
We, a group of specialists, are developing the IT infrastructure of a new socio-economic formation, the basis of which is the knowledge economy. KNOWLEDGE is the Main processing elements (blocks of information) that need to be registered, verified and protected. It is also necessary to provide access to the open and closed parts of information about the processed Knowledge. Unfortunately, our attempts to create the required tool on our own did not lead to anything … When we found and tested this plugin, we as Archimedes said “Eureka!” We are grateful to the author of the Maymay plugin for his highly professional work. Moreover, thanks to the documentation for the plugin, we have solved several serious problems. For two years, the plugin has been working on our site and there have been no complaints about it. Since our project is non-profit, in spirit and essence, it is close to the Maymay author’s life principles, we look forward to working with him in the future. We put 5 stars.
Read all 16 reviews

Contributors & Developers

“WP PGP Encrypted Emails” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

0.8.0

  • Maintenance: Drop support for PHP versions earlier than 7.4, add experimental support for PHP 8.x.

0.7.6

  • Maintenance: Update dependencies.
    • phpseclib is updated to version 2.0.31 and addresses a moderate severity security vulnerability.

0.7.5

  • Maintenance: Update dependencies. Note also that this version officially drops support for PHP versions earlier than the current WordPress recommendations, which at the time of this writing is PHP v7.4. If you are still running WordPress in a “legacy” environment (using PHP 5.x), you must update or push your hosting provider to update your version of PHP to 7.4 or greater to continue using this plugin.

0.7.4

  • Security: Always use the AES-256 cipher in CBC mode when encrypting S/MIME emails. This change drops support for PHP versions less than 5.4.
  • Security: Improved shredding of temporary files needed for S/MIME encryption with 3-pass overwrite and explicit filesystem write buffer flushing.
  • Enhancement: Improve S/MIME compatibility with some email clients, notably Roundcube. Props @githubuserx.
  • Bugfix: Conflict where admin email without encryption keys matching user email no longer results in unencrypted email being sent.
  • Minor code cleanup and documentation improvements.

0.7.3

  • Bugfix: Messages with Content-Type: text/html headers that were also S/MIME encrypted now render properly. Props @githubuserx.
  • Bugfix: Ensure MIME subtypes in Content-Type mail headers are retained.
  • Bugfix: Do not enqueue admin-area stylesheet on site front-end.

0.7.2

  • Bugfix: Fixes a problem where S/MIME email sending fails due to a web hoster restriction.

0.7.1

  • Enhancement: Offer a simple “Send me a test email” button to let inexperienced users easily test their encryption setup.

0.7

  • Feature: WooCommerce integration. Customers can add their own OpenPGP keys or S/MIME certificates on their “My Account” front-end supplied by WooCommerce. By default, emails sent to Customers are not signed with the site’s PGP signing key, though individual customers can opt-in to receive either encrypted and signed or just signed emails as they wish.
  • Developer: Theme authors can override the plugin’s default WooCommerce integration file by adding a woocommerce-functions.php file to their theme. Please only do this if you know what you are doing.
  • Update OpenPGP-PHP libraries to current released version.

0.6.3

  • Bugfix: Fix compatiblity with third-party contact form plugins (namely Contact Form 7).
  • Bugfix: Fix issue with uninstallation.

0.6.2

  • Feature: New S/MIME API filter, smime_pem_to_der.
    • This supports certain applications that need certificate data in DER format.

0.6.1

  • Bugfix: Fix comment filter call.

0.6.0

  • Feature: S/MIME support! ??
    • Three new API filter hooks are provided to offer S/MIME encryption. These are smime_certificate, smime_certificate_pem_encode and smime_encrypt. See S/MIME API for details.

0.5.0

  • Feature: Configure whether email destined for addresses that are not associated with user accounts are automatically PGP-signed.
  • Feature: A “delete PGP signing keypair on uninstall” option has been added. When enabled and the plugin is uninstalled, the site’s PGP signing keypair is deleted from the WordPress database.
  • Minor bugfixes.

0.4.4

  • Bugfix: Generate signing key that can be used to create a revocation certificate.

0.4.3

  • Site signing key is generated with correct OpenPGP key flags (shown as S for signing and C for certification in GnuPG).
  • Update openpgp-php library and dependencies.

0.4.2

  • Bugfix: Improve compatibility with some third-party plugins.

0.4.1

  • Bugfix: Plugins that call wp_mail() with an array no longer cause PHP warnings.
  • Bugfix: Fix syntax error when running on PHP 5.3 or earlier.

0.4.0

  • Feature: Admins can now generate a PGP signing keypair for the blog itself. If a signing keypair exists, outgoing emails will be automatically signed.
    • This keypair is intended only for signing outgoing emails from WordPress itself. It is not intended to be used for any other purpose. Do not use this keypair for emails you send from your own mail client. Do not use this keypair as your personal PGP key. Do not export this key for use in any other system. This keypair should be treated as a low-trust, single-purpose keypair reserved exclusively for your website itself.
    • After adding a PGP signing keypair, users can download the site’s public key part from their profile pages.
    • Theme authors can always link to a site’s PGP signing public key with the following code: print admin_url('admin-ajax.php?action=download_pgp_signing_public_key')
  • Developer: New filter hooks. These are documented on the Other Notes page.
    • openpgp_enarmor filter for ASCII-armoring arbitrary OpenPGP data.
    • openpgp_sign filter for (clear)signing an arbitrary message.

0.3.0

  • Feature: Authors with a PGP public key set in their profile can now receive “private” comments. Readers write their comment as normal, and can then enable the “Private” checkbox next to the comment submit button. This will automatically encrypt the comment to the post author’s PGP public key and saves the comment in the WordPress database as an ASCII-armored string.
    • This feature is not secure against eavesdropping, other network attackers, or malicious web host. It does not prevent server administrators from reading the contents of your comment. Rather, it prevents other readers or unprivileged users of the blog from reading your comment after it has been sent to the author. This is useful if, for instance, you want to communicate semi-privately with the author in an otherwise public forum (the comment thread) but do not know the author’s email address, perhaps because the author themselves wish to remain pseudonymous (and thus do not provide a valid email address associated with their PGP key).

0.2.0

  • Developer: Added two new filters, openpgp_key and openpgp_encrypt so plugin developers and theme authors can encrypt arbitrary data, too.

0.1.2

0.1.1

  • Bugfix: Fix Fatal error in cases where the public key is set to false.

0.1

  • Initial release.
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17