{"id":23619506,"url":"https://github.com/manuellr/notmail_bot","last_synced_at":"2025-08-30T22:30:26.361Z","repository":{"id":86235370,"uuid":"105465425","full_name":"ManuelLR/Notmail_Bot","owner":"ManuelLR","description":"Telegram bot that acts as an email client","archived":false,"fork":false,"pushed_at":"2018-01-27T11:37:40.000Z","size":213,"stargazers_count":24,"open_issues_count":10,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-01T07:02:39.289Z","etag":null,"topics":["bot","docker","docker-compose","email","imap-client","notmail-bot","python","telegram-bot"],"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/ManuelLR.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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-01T18:48:34.000Z","updated_at":"2025-02-18T23:01:29.000Z","dependencies_parsed_at":"2023-03-13T08:45:51.317Z","dependency_job_id":null,"html_url":"https://github.com/ManuelLR/Notmail_Bot","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ManuelLR/Notmail_Bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManuelLR%2FNotmail_Bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManuelLR%2FNotmail_Bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManuelLR%2FNotmail_Bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManuelLR%2FNotmail_Bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ManuelLR","download_url":"https://codeload.github.com/ManuelLR/Notmail_Bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManuelLR%2FNotmail_Bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272917686,"owners_count":25014933,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["bot","docker","docker-compose","email","imap-client","notmail-bot","python","telegram-bot"],"created_at":"2024-12-27T19:51:44.179Z","updated_at":"2025-08-30T22:30:26.356Z","avatar_url":"https://github.com/ManuelLR.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notmail Bot\n\u003cimg src=\"./img/notmail_bot.png\" width=\"160px\"\u003e\n\n\u003e Telegram bot that acts as an email client.\n\n**V.0.1.0**\n\n# Usage Preview\n_Work in progress_\n\n# Features\n\n- Auto check email account and notify news.\n- Friendly interface.\n- Multiple email accounts.\n- Compatible with IMAP protocol. (More in the future).\n- Read email on Telegram, mark as read/unread, archive/delete and much more.\n\n# Basic configuration\nFirst of all, we need to know our `username` and the `bot_token`. The `username` could be configure in your Telegram app settings (also known as `alias`). To get the`bot_token` is necessary to speak with the [@BotFather](https://telegram.me/BotFather) and introduce the `/newbot` command. It will ask all necesary data and finally, it will give to you the `bot_token` also called `API Token`.\n\n# Launch\nWe can launch in several ways:\n- [Docker Compose](./README.md#docker-compose) **(recomended)**\n- [Docker](./README.md#docker)\n- [Python](./README.md#python)\n\n### Docker Compose\nTo use [docker-compose](https://docs.docker.com/compose/overview/) you need to install on your computer [Docker-CE](https://docs.docker.com/) and [Docker-compose](https://docs.docker.com/compose/install/). \n\nBefore running it you need to enter the variables in the new file called `.env`.\n\n```\ncp .example.env .env\nnano .env\n```\n\nFinally, we execute the next command and can start to talk with the bot:\n\n```\ndocker-compose up -d\n```\n\nIf we update the code, you only need to update it (`git pull`) and relaunch docker compose with the following command:\n\n```\ngit pull\ndocker-compose up -d --build\n```\n\n### Docker\n\n```bash\nsudo docker build -t notmail_bot .\nsudo docker run -d --name Notmail_bot \\\n    --restart always \\\n    --env-file .env \\\n    manuellr/notmail_bot\n```\n\n\n### Python\n```bash\npip install -r requirements.txt\npython notmail_bot.py --config_path my-config/my_config.ini\n```\n\n\n# License\n- The main code is licensed under [GPLv3](./LICENSE)\n- The logo of Notmail is licensed under [Free Art License v1.3](./img/notmail_bot_license.txt)\n\nYou can consult the contributors in the [AUTHORS file](./AUTHORS) or see the contributors of a specific file executing the next script:\n```bash\ngit blame -C -C -M -- FILE_TO_CONSULT | \\\n    sed -e 's/[^(]*(\\([^0-9]*\\).*/\\1/' -e 's/[\\t ]*$//' | \\\n    sort | uniq -c | sort -nr\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuellr%2Fnotmail_bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanuellr%2Fnotmail_bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuellr%2Fnotmail_bot/lists"}