{"id":20571578,"url":"https://github.com/circl/imap-proxy","last_synced_at":"2025-07-04T11:05:42.750Z","repository":{"id":139221412,"uuid":"138567583","full_name":"CIRCL/IMAP-Proxy","owner":"CIRCL","description":"Modular IMAP proxy (including PyCIRCLeanMail and MISP forward modules)","archived":false,"fork":false,"pushed_at":"2018-07-13T14:36:29.000Z","size":8209,"stargazers_count":30,"open_issues_count":0,"forks_count":12,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-06-30T14:54:44.061Z","etag":null,"topics":["circlean","imap","imap-protocol","imap-proxy","proxy","security"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CIRCL.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"zenodo":null}},"created_at":"2018-06-25T08:46:08.000Z","updated_at":"2025-03-20T12:05:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"910f7c1f-7d09-4d1e-98ed-4f5ac6288aba","html_url":"https://github.com/CIRCL/IMAP-Proxy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CIRCL/IMAP-Proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CIRCL%2FIMAP-Proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CIRCL%2FIMAP-Proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CIRCL%2FIMAP-Proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CIRCL%2FIMAP-Proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CIRCL","download_url":"https://codeload.github.com/CIRCL/IMAP-Proxy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CIRCL%2FIMAP-Proxy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263499193,"owners_count":23476021,"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":["circlean","imap","imap-protocol","imap-proxy","proxy","security"],"created_at":"2024-11-16T05:16:36.828Z","updated_at":"2025-07-04T11:05:42.739Z","avatar_url":"https://github.com/CIRCL.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Modular Python IMAP proxy\n\n[![Build Status](https://travis-ci.org/CIRCL/IMAP-Proxy.svg?branch=master)](https://travis-ci.org/CIRCL/IMAP-Proxy)\n\n## Features\n\n* Support IPv6 and TLS/SSL for both client and server connections\n* Works with email applications as [Thunderbird](https://www.mozilla.org/en-US/thunderbird/) or [Outlook](https://outlook.live.com/owa/)\n* Extensions: [UIDPLUS](https://rfc-editor.org/rfc/rfc4315.txt), [MOVE](https://rfc-editor.org/rfc/rfc6851.txt), [ID](https://rfc-editor.org/rfc/rfc2971.txt), [UNSELECT](https://rfc-editor.org/rfc/rfc3691.txt), [CHILDREN](https://rfc-editor.org/rfc/rfc3348.txt) and [NAMESPACE](https://rfc-editor.org/rfc/rfc2342.txt)\n\n### Integrated modules\n\nModules are easy to integrate and to remove (just remove their calls in the proxy.py file).\n\n* Sanitize emails and keep a copy in a Quarantine folder using the [PyCIRCLeanMail](https://github.com/CIRCL/PyCIRCLeanMail)\n* Forward emails to [MISP](https://github.com/misp)\n\n## Installation and run\n\n![Demonstration with PyCIRCLeanMail](demo.gif)\n\n### Installation\n\n```\ngit clone https://github.com/CIRCL/IMAP-Proxy.git\ncd IMAP-Proxy\npython3 setup.py install\npip3 install -r requirements.txt\n```\n\n### Run the proxy\n\nIt can be started by adding arguments to the command line:\n```\nstart_cl.py -h\n```\n\nOr it can be started with the configuration file *imapproxy.conf*:\n```\nstart_conf.py\n```\n\n### Run with Thunderbird\n\nFirst, open [Thunderbird](https://www.mozilla.org/en-US/thunderbird/), right-click on your email address and select *\"Settings\"*. In *\"Server Settings\"*, modify the *\"Server Name\"* by the IP address of the proxy (or localhost).\n\n## How to contribute\n\nAny help is welcome via pull requests and Issues or by contacting contributors of this project. Thank you !\n\n## License\n\n```\n    Copyright (C) 2018 Xavier Schul\n    Copyright (C) 2018 CIRCL - Computer Incident Response Center Luxembourg (c/o smile, security made in Lëtzebuerg, Groupement d'Intérêt Economique)\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcircl%2Fimap-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcircl%2Fimap-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcircl%2Fimap-proxy/lists"}