diff options
author | timcooijmans <timcooijmans@gmail.com> | 2019-08-09 21:51:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-09 21:51:40 +0200 |
commit | e7d2507c474aa11ddd616398c2575900dada940e (patch) | |
tree | 2ec7170d3f81891a1e3606fd7224ba2f86f059b0 /README.md | |
parent | Merge pull request #119 from dbradley771/patch-1 (diff) | |
download | YubiKey-Guide-e7d2507c474aa11ddd616398c2575900dada940e.tar.gz |
Add description on how to enable mailvelope
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -1863,6 +1863,39 @@ YubiKey will blink when it is waiting for a touch. GPG keys on YubiKey can be used with ease to encrypt and/or sign emails and attachments using [Thunderbird](https://www.thunderbird.net/) and [Enigmail](https://www.enigmail.net). Thunderbird supports OAuth 2 authentication and can be used with Gmail. See [this guide](https://ssd.eff.org/en/module/how-use-pgp-linux) from EFF for detailed instructions. +## mailvelope on MacOS + +[Mailvelope](https://www.mailvelope.com/en) allows GPG keys on YubiKey to be used with Gmail and others. + +On MacOS install gpgme using homebrew: +```console +$ brew install gpgme +``` + +To allow Chrome to run gpgme: +```console +$ nano ~/Library/Application\ Support/Google/Chrome/NativeMessagingHosts/gpgmejson.json +``` +and paste: +```json +{ + "name": "gpgmejson", + "description": "Integration with GnuPG", + "path": "/usr/local/bin/gpgme-json", + "type": "stdio", + "allowed_origins": [ + "chrome-extension://kajibbejlbohfaggdiogboambcijhkke/" + ] +} +``` + +Edit the default path to allow Chrome to find gpg: +```sudo launchctl config user path /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin``` + +Close Chrome if it is running and reboot your Mac. + +Finally install the [mailvelope extension](https://chrome.google.com/webstore/detail/mailvelope/kajibbejlbohfaggdiogboambcijhkke) from the Chrome app store. + # Reset If PIN attempts are exceeded, the card is locked and must be [reset](https://developers.yubico.com/ykneo-openpgp/ResetApplet.html) and set up again using the encrypted backup. |