{"id":18100199,"url":"https://github.com/infertux/zeyple","last_synced_at":"2025-04-10T01:08:59.263Z","repository":{"id":4588483,"uuid":"5730714","full_name":"infertux/zeyple","owner":"infertux","description":"Postfix filter/hook to automatically encrypt outgoing emails with PGP/GPG","archived":false,"fork":false,"pushed_at":"2024-09-09T09:30:14.000Z","size":169,"stargazers_count":149,"open_issues_count":17,"forks_count":30,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-04-10T01:08:55.014Z","etag":null,"topics":["email","encryption","gpg","pgp","postfix","privacy","python"],"latest_commit_sha":null,"homepage":"https://infertux.com/labs/zeyple/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/infertux.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"patreon":"infertux","liberapay":"infertux"}},"created_at":"2012-09-08T18:00:20.000Z","updated_at":"2025-03-20T16:06:04.000Z","dependencies_parsed_at":"2024-09-09T03:54:39.483Z","dependency_job_id":"c0a1a331-24b3-4533-afcd-3eb02e1c9841","html_url":"https://github.com/infertux/zeyple","commit_stats":{"total_commits":164,"total_committers":11,"mean_commits":"14.909090909090908","dds":"0.27439024390243905","last_synced_commit":"cc125b7b44432542b227887fd7e2701f77fd8ca2"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infertux%2Fzeyple","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infertux%2Fzeyple/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infertux%2Fzeyple/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infertux%2Fzeyple/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/infertux","download_url":"https://codeload.github.com/infertux/zeyple/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248137887,"owners_count":21053775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["email","encryption","gpg","pgp","postfix","privacy","python"],"created_at":"2024-10-31T21:13:19.109Z","updated_at":"2025-04-10T01:08:59.244Z","avatar_url":"https://github.com/infertux.png","language":"Python","funding_links":["https://patreon.com/infertux","https://liberapay.com/infertux","https://liberapay.com/infertux/donate"],"categories":[],"sub_categories":[],"readme":"# ZEYPLE: Zeyple Encrypts Your Precious Log Emails\n\n[![Funding](https://img.shields.io/liberapay/patrons/infertux.svg?logo=liberapay)](https://liberapay.com/infertux/donate)\n[![Build Status](https://github.com/infertux/zeyple/actions/workflows/zeyple.yml/badge.svg)](https://github.com/infertux/zeyple/actions/workflows/zeyple.yml)\n\n**Zeyple automatically encrypts outgoing emails with GPG:**\n\n1. It catches emails from your Postfix queue\n1. Then encrypts them if it's got the recipient's GPG public key\n1. Finally it puts them back into the queue\n\n\u003cpre\u003e\n     unencrypted email   ||   encrypted email\nsender --\u003e Postfix --\u003e Zeyple --\u003e Postfix --\u003e recipient(s)\n\u003c/pre\u003e\n\n_Why should I care? If you are a sysadmin who receives emails from various monitoring tools like Logwatch, Monit, Fail2ban, Smartd, Cron, whatever - it goes without saying that those emails contain lots of information about your servers.\nInformation that may be intercepted by some malicious hacker sniffing SMTP traffic, your email provider, \u0026lt;insert your (paranoid) reason here\u0026gt;...\nWhy would you take that risk - encrypt them all!_\n\n## Install \u0026 upgrade\n\nSee [INSTALL.md](INSTALL.md) \u0026 [UPGRADE.md](UPGRADE.md).\n\n## Disable/enable Zeyple\n\nJust comment/uncomment the line `content_filter = zeyple` in your `/etc/postfix/main.cf` then `postfix reload`.\n\n## Key management\n\n* List of keys: `sudo -u zeyple gpg --homedir /var/lib/zeyple/keys --list-keys`\n* Update imported keys: `sudo -u zeyple gpg --homedir /var/lib/zeyple/keys --keyserver hkp://keys.gnupg.net --refresh-keys`\n* Import a new key: `sudo -u zeyple gpg --homedir /var/lib/zeyple/keys --keyserver hkp://keys.gnupg.net --search you@domain.tld`\n\n## Integration with other MTAs\n\nAlthough tested only with [Postfix](http://www.postfix.org/), Zeyple should integrate nicely with any MTA which provides a [filter](http://www.postfix.org/FILTER_README.html \"Postfix After-Queue Content Filter\")/hook mechanism. Please let me know if you experiment with this.\n\n## Docker\n\nA [Docker image](https://gitlab.com/nebulon42/zeyple-docker) is available for development purposes.\n\n## Vagrant\n\nA fully-setup test-environment is available to easily test your modifications.\n[Vagrant](https://www.vagrantup.com/) and a compatible virtualization environment ([VirtualBox](https://www.virtualbox.org/) for example) are required.\nVisit [zeyple-vagrant](https://github.com/Nithanim/zeyple-vagrant) for download and more information.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Kudos\n\nMany thanks to [Harry Knitter](http://www.linux-magazine.com/Issues/2013/153/Email-Encryption-with-Zeyple) for his feedback to help make Zeyple more robust.\n\n## Blog posts \u0026 articles\n\n- http://www.linux-magazine.com/Issues/2013/153/Email-Encryption-with-Zeyple\n- http://blog.infertux.com/2015/10/25/announcing-zeyple/\n- http://labs.infertux.com/zeyple/\n\n## License\n\nAGPLv3+\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfertux%2Fzeyple","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfertux%2Fzeyple","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfertux%2Fzeyple/lists"}