This gem adds GPG/MIME encryption capabilities to the Ruby Mail Library
For maximum interoperability the gem also supports decryption of messages using the non-standard 'PGP-Inline' method as for example supported in the Mozilla Enigmail OpenPGP plugin.
There may still be GPG encrypted messages that can not be handled by the library, as there are some legacy formats used in the wild as described in this Know your PGP implementation blog.
Add this line to your application's Gemfile:
gem 'mail-gpg'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mail-gpg
Construct your Mail object as usual and specify you want it to be encrypted with the gpg method:
Mail.new do
to '[email protected]'
from '[email protected]'
subject 'gpg test'
body "encrypt me!"
add_file "some_attachment.zip"
# encrypt message, no signing
gpg encrypt: true
# encrypt and sign message with sender's private key, using the given
# passphrase to decrypt the key
gpg encrypt: true, sign: true, password: 'secret'
# encrypt and sign message using a different key
gpg encrypt: true, sign_as: '[email protected]', password: 'secret'
# encrypt and sign message and use a callback function to provide the
# passphrase.
gpg encrypt: true, sign_as: '[email protected]',
passphrase_callback: ->(obj, uid_hint, passphrase_info, prev_was_bad, fd){puts "Enter passphrase for #{passphrase_info}: "; (IO.for_fd(fd, 'w') << readline.chomp).flush }
end.deliver
Make sure all recipients' public keys are present in your local gpg keychain.
You will get errors in case encryption is not possible due to missing keys.
If you collect public key data from your users, you can specify the ascii
armored key data for recipients using the :keys
option like this:
johns_key = <<-END
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.12 (GNU/Linux)
mQGiBEk39msRBADw1ExmrLD1OUMdfvA7cnVVYTC7CyqfNvHUVuuBDhV7azs
....
END
Mail.new do
to '[email protected]'
gpg encrypt: true, keys: { '[email protected]' => johns_key }
end
The key will then be imported before actually trying to encrypt/send the mail. In theory you only need to specify the key once like that, however doing it every time does not hurt as gpg is clever enough to recognize known keys, only updating it's db when necessary.
Note: Mail-Gpg in version 0.4 and up is more strict regarding the keys option:
if it is present, only key material from there (either given as key data like
above, or as key id, key fingerprint or GPGMe::Key
object if they have been
imported before) will be used. Keys already present in the local keychain for
any of the recipients that are not explicitly mentioned in the keys
hash will
be ignored.
You may also want to have a look at the GPGME docs and code base for more info on the various options, especially regarding the passphrase_callback
arguments.
Receive the mail as usual. Check if it is encrypted using the encrypted?
method. Get a decrypted version of the mail with the decrypt
method:
mail = Mail.first
mail.subject # subject is never encrypted
if mail.encrypted?
# decrypt using your private key, protected by the given passphrase
plaintext_mail = mail.decrypt(:password => 'abc')
# the plaintext_mail, is a full Mail::Message object, just decrypted
end
Set the :verify
option to true
when calling decrypt
to decrypt and verify signatures.
A GPGME::Error::BadPassphrase
will be raised if the password for the private key is incorrect.
A EncodingError
will be raised if the encrypted mails is not encoded correctly as a RFC 3156 message.
Please note that in case of a multipart/alternative-message where both parts are inline-encrypted, the HTML-part will be dropped during decryption. Handling the HTML-part would require parsing HTML and guessing about the decrypted contents, which is brittle and out of the scope of this library. If you need the HTML-part of multipart/alternative-messages, use pgp/mime-encryption.
Just leave the :encrypt
option out or pass encrypt: false
, i.e.
Mail.new do
to '[email protected]'
gpg sign: true
end.deliver
Receive the mail as usual. Check if it is signed using the signed?
method. Check the signature of the mail with the signature_valid?
method:
mail = Mail.first
if !mail.encrypted? && mail.signed?
verified = mail.verify
puts "signature(s) valid: #{verified.signature_valid?}"
puts "message signed by: #{verified.signatures.map{|sig|sig.from}.join("\n")}"
end
Note that for encrypted mails the signatures can not be checked using these
methods. For encrypted mails the :verify
option for the decrypt
operation
must be used instead:
if mail.encrypted?
decrypted = mail.decrypt(verify: true, password: 's3cr3t')
puts "signature(s) valid: #{decrypted.signature_valid?}"
puts "message signed by: #{decrypted.signatures.map{|sig|sig.from}.join("\n")}"
end
It's important to actually use the information contained in the signatures
array to check if the message really has been signed by the person that you (or
your users) think is the sender - usually by comparing the key id of the
signature with the key id of the expected sender.
The Hkp class can be used to lookup and import public keys from public key servers. You can specify the keyserver url when initializing the class:
hkp = Hkp.new("hkp://my-key-server.de")
Or, if you want to override how ssl certificates should be treated in case of
TLS-secured keyservers (the default is VERIFY_PEER
):
hkp = Hkp.new(keyserver: "hkps://another.key-server.com",
ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE)
If no port is specified in hkp or hkps URIs (as in the examples above), port
11371 will be used for hkp and port 443 for hkps URIs. Standard http
or
https
URIs with or without explicitly set ports work as well.
If no url is given, this gem will try to determine the default keyserver
url from the system's gpg config (using gpgconf
if available or by
parsing the gpg.conf
file). As a last resort, the server-pool at
http://pool.sks-keyservers.net:11371
will be used.
Lookup key ids by searching the keyserver for an email address
hkp.search('[email protected]')
You can lookup (and import) a specific key by its id:
key = hkp.fetch(id)
GPGME::Key.import(key)
# or do both in one step
hkp.fetch_and_import(id)
class MyMailer < ActionMailer::Base
default from: '[email protected]'
def some_mail
mail to: '[email protected]', subject: 'subject!', gpg: { encrypt: true }
end
end
The gpg option takes the same arguments as outlined above for the Mail::Message#gpg method.
GnuPG versions >= 2.x require the use of gpg-agent for key-handling. That's a problem for using password-protected keys non-interactively, because gpg-agent doesn't read from file-descriptors (which is the usual way to non-interactively provide passwords with GnuPG 1.x).
With GnuPG 2.x you have two options to provide passwords to gpg-agent:
- Implement a pinentry-kind-of program that speaks the assuan-protocol and configure gpg-agent to use it.
- Run gpg-preset-passphrase and allow gpg-agent to read preset passwords.
The second options is somewhat easier and is described below.
Note: You don't need this if your key is not protected with a password.
To feed a password into gpg-agent run this code early in your program:
# The next two lines need adaption, obviously.
fpr = fingerprint_of_key_to_unlock
passphrase = gpg_passphrase_for_key
# You may copy&paste the rest of this block unchanged. Maybe you want to change the error-handling, though.
ENV['GPG_AGENT_INFO'] = `eval $(gpg-agent --allow-preset-passphrase --daemon) && echo $GPG_AGENT_INFO`
`gpgconf --list-dir`.match(/libexecdir:(.*)/)
gppbin = File.join($1, 'gpg-preset-passphrase')
Open3.popen3(gppbin, '--preset', fpr) do |stdin, stdout, stderr|
stdin.puts passphrase
err = stderr.readlines
$stderr.puts err if ! err.to_s.empty?
end
# Hook to kill our gpg-agent when script finishes.
Signal.trap(0, proc { Process.kill('TERM', ENV['GPG_AGENT_INFO'].split(':')[1]) })
bundle exec rake
Test cases use a mock gpghome located in test/gpghome
in order to not mess
around with your personal gpg keychain.
Password for the test PGP private keys is abc
- signature verification for received mails with inline PGP
- on the fly import of recipients' keys from public key servers based on email address or key id
- handle encryption errors due to missing keys - maybe return a list of failed recipients
- add some setup code to help initialize a basic keychain directory with public/private keypair.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Thanks to:
- Planio GmbH for sponsoring the ongoing maintenance and development of this library
- morten-andersen for implementing decryption support for PGP/MIME and inline encrypted messages
- FewKinG for implementing the sign only feature and keyserver url lookup
- Fup Duck for various tweaks and fixes