├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── bot.py ├── config_template.py ├── doc ├── _layouts │ └── default.html ├── _plugins │ └── layout.rb ├── css │ ├── cryptobot.css │ └── markdown.css ├── encrypting_email │ ├── index.md │ ├── linux.md │ ├── osx.md │ ├── tails.md │ └── windows.md ├── getting_started │ ├── gmail.md │ ├── index.md │ ├── linux.md │ ├── osx.md │ ├── tails.md │ └── windows.md ├── images │ ├── cryptobot-large.png │ ├── cryptobot-small.png │ ├── dirty-shade.png │ ├── gmail │ │ ├── imap.png │ │ └── settings.png │ ├── linux │ │ ├── thunderbird1.png │ │ ├── thunderbird10.png │ │ ├── thunderbird11.png │ │ ├── thunderbird12.png │ │ ├── thunderbird2.png │ │ ├── thunderbird3.png │ │ ├── thunderbird4.png │ │ ├── thunderbird5.png │ │ ├── thunderbird6.png │ │ ├── thunderbird7.png │ │ ├── thunderbird8.png │ │ └── thunderbird9.png │ ├── osx │ │ ├── applemail1.png │ │ ├── applemail2.png │ │ ├── applemail3.png │ │ ├── enigmail1.png │ │ ├── gpgtools1.png │ │ ├── gpgtools2.png │ │ ├── gpgtools3.png │ │ ├── gpgtools4.png │ │ ├── gpgtools5.png │ │ ├── thunderbird1.png │ │ ├── thunderbird2.png │ │ ├── thunderbird3.png │ │ ├── thunderbird4.png │ │ ├── thunderbird5.png │ │ ├── thunderbird6.png │ │ ├── thunderbird7.png │ │ └── thunderbird8.png │ └── para.png ├── including_pubkey │ ├── index.md │ ├── linux.md │ ├── osx.md │ ├── tails.md │ └── windows.md ├── index.md └── signing_email │ ├── index.md │ ├── linux.md │ ├── osx.md │ ├── tails.md │ └── windows.md ├── requirements.txt ├── sphinx ├── Makefile ├── api.rst ├── changelog.rst ├── conf.py ├── configuration.rst ├── cryptobot-large.png ├── index.rst ├── installation.rst ├── make.bat └── usage.rst ├── templates ├── email_template.html ├── email_template.txt └── unsubscribe.html ├── test.py ├── test ├── emails │ ├── encrypted_correctly │ ├── encrypted_pubkey_attached_application-pgpkeys │ ├── encrypted_pubkey_attached_text-plain │ ├── encrypted_pubkey_inline │ ├── encrypted_signed_pgp_mime │ ├── encrypted_to_wrong_key │ ├── pubkey_attached_application-pgpkeys │ ├── pubkey_attached_text-plain │ ├── pubkey_inline │ ├── signed │ └── unencrypted_thunderbird └── keys │ ├── private.key │ ├── public.key │ ├── rms.asc │ ├── test_decrypt_invalid.asc │ └── test_decrypt_valid.asc └── unsubscribe.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/bot.py -------------------------------------------------------------------------------- /config_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/config_template.py -------------------------------------------------------------------------------- /doc/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/_layouts/default.html -------------------------------------------------------------------------------- /doc/_plugins/layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/_plugins/layout.rb -------------------------------------------------------------------------------- /doc/css/cryptobot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/css/cryptobot.css -------------------------------------------------------------------------------- /doc/css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/css/markdown.css -------------------------------------------------------------------------------- /doc/encrypting_email/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/encrypting_email/index.md -------------------------------------------------------------------------------- /doc/encrypting_email/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/encrypting_email/linux.md -------------------------------------------------------------------------------- /doc/encrypting_email/osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/encrypting_email/osx.md -------------------------------------------------------------------------------- /doc/encrypting_email/tails.md: -------------------------------------------------------------------------------- 1 | # How to Encrypt an Email in Tails 2 | 3 | Coming soon. 4 | -------------------------------------------------------------------------------- /doc/encrypting_email/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/encrypting_email/windows.md -------------------------------------------------------------------------------- /doc/getting_started/gmail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/getting_started/gmail.md -------------------------------------------------------------------------------- /doc/getting_started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/getting_started/index.md -------------------------------------------------------------------------------- /doc/getting_started/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/getting_started/linux.md -------------------------------------------------------------------------------- /doc/getting_started/osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/getting_started/osx.md -------------------------------------------------------------------------------- /doc/getting_started/tails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/getting_started/tails.md -------------------------------------------------------------------------------- /doc/getting_started/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/getting_started/windows.md -------------------------------------------------------------------------------- /doc/images/cryptobot-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/cryptobot-large.png -------------------------------------------------------------------------------- /doc/images/cryptobot-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/cryptobot-small.png -------------------------------------------------------------------------------- /doc/images/dirty-shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/dirty-shade.png -------------------------------------------------------------------------------- /doc/images/gmail/imap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/gmail/imap.png -------------------------------------------------------------------------------- /doc/images/gmail/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/gmail/settings.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird1.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird10.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird11.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird12.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird2.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird3.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird4.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird5.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird6.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird7.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird8.png -------------------------------------------------------------------------------- /doc/images/linux/thunderbird9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/linux/thunderbird9.png -------------------------------------------------------------------------------- /doc/images/osx/applemail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/applemail1.png -------------------------------------------------------------------------------- /doc/images/osx/applemail2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/applemail2.png -------------------------------------------------------------------------------- /doc/images/osx/applemail3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/applemail3.png -------------------------------------------------------------------------------- /doc/images/osx/enigmail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/enigmail1.png -------------------------------------------------------------------------------- /doc/images/osx/gpgtools1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/gpgtools1.png -------------------------------------------------------------------------------- /doc/images/osx/gpgtools2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/gpgtools2.png -------------------------------------------------------------------------------- /doc/images/osx/gpgtools3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/gpgtools3.png -------------------------------------------------------------------------------- /doc/images/osx/gpgtools4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/gpgtools4.png -------------------------------------------------------------------------------- /doc/images/osx/gpgtools5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/gpgtools5.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird1.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird2.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird3.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird4.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird5.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird6.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird7.png -------------------------------------------------------------------------------- /doc/images/osx/thunderbird8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/osx/thunderbird8.png -------------------------------------------------------------------------------- /doc/images/para.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/images/para.png -------------------------------------------------------------------------------- /doc/including_pubkey/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/including_pubkey/index.md -------------------------------------------------------------------------------- /doc/including_pubkey/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/including_pubkey/linux.md -------------------------------------------------------------------------------- /doc/including_pubkey/osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/including_pubkey/osx.md -------------------------------------------------------------------------------- /doc/including_pubkey/tails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/including_pubkey/tails.md -------------------------------------------------------------------------------- /doc/including_pubkey/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/including_pubkey/windows.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/signing_email/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/signing_email/index.md -------------------------------------------------------------------------------- /doc/signing_email/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/signing_email/linux.md -------------------------------------------------------------------------------- /doc/signing_email/osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/signing_email/osx.md -------------------------------------------------------------------------------- /doc/signing_email/tails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/signing_email/tails.md -------------------------------------------------------------------------------- /doc/signing_email/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/doc/signing_email/windows.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/requirements.txt -------------------------------------------------------------------------------- /sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/Makefile -------------------------------------------------------------------------------- /sphinx/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/api.rst -------------------------------------------------------------------------------- /sphinx/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/changelog.rst -------------------------------------------------------------------------------- /sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/conf.py -------------------------------------------------------------------------------- /sphinx/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/configuration.rst -------------------------------------------------------------------------------- /sphinx/cryptobot-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/cryptobot-large.png -------------------------------------------------------------------------------- /sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/index.rst -------------------------------------------------------------------------------- /sphinx/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/installation.rst -------------------------------------------------------------------------------- /sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/make.bat -------------------------------------------------------------------------------- /sphinx/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/sphinx/usage.rst -------------------------------------------------------------------------------- /templates/email_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/templates/email_template.html -------------------------------------------------------------------------------- /templates/email_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/templates/email_template.txt -------------------------------------------------------------------------------- /templates/unsubscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/templates/unsubscribe.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test.py -------------------------------------------------------------------------------- /test/emails/encrypted_correctly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/encrypted_correctly -------------------------------------------------------------------------------- /test/emails/encrypted_pubkey_attached_application-pgpkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/encrypted_pubkey_attached_application-pgpkeys -------------------------------------------------------------------------------- /test/emails/encrypted_pubkey_attached_text-plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/encrypted_pubkey_attached_text-plain -------------------------------------------------------------------------------- /test/emails/encrypted_pubkey_inline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/encrypted_pubkey_inline -------------------------------------------------------------------------------- /test/emails/encrypted_signed_pgp_mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/encrypted_signed_pgp_mime -------------------------------------------------------------------------------- /test/emails/encrypted_to_wrong_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/encrypted_to_wrong_key -------------------------------------------------------------------------------- /test/emails/pubkey_attached_application-pgpkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/pubkey_attached_application-pgpkeys -------------------------------------------------------------------------------- /test/emails/pubkey_attached_text-plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/pubkey_attached_text-plain -------------------------------------------------------------------------------- /test/emails/pubkey_inline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/pubkey_inline -------------------------------------------------------------------------------- /test/emails/signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/signed -------------------------------------------------------------------------------- /test/emails/unencrypted_thunderbird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/emails/unencrypted_thunderbird -------------------------------------------------------------------------------- /test/keys/private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/keys/private.key -------------------------------------------------------------------------------- /test/keys/public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/keys/public.key -------------------------------------------------------------------------------- /test/keys/rms.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/keys/rms.asc -------------------------------------------------------------------------------- /test/keys/test_decrypt_invalid.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/keys/test_decrypt_invalid.asc -------------------------------------------------------------------------------- /test/keys/test_decrypt_valid.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/test/keys/test_decrypt_valid.asc -------------------------------------------------------------------------------- /unsubscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFForg/cryptobot-email/HEAD/unsubscribe.py --------------------------------------------------------------------------------