{"id":15017930,"url":"https://github.com/mikkun/imap-email-notifier","last_synced_at":"2026-02-20T00:02:05.844Z","repository":{"id":194814155,"uuid":"691640782","full_name":"mikkun/imap-email-notifier","owner":"mikkun","description":"Email notifier for IMAP mailboxes","archived":false,"fork":false,"pushed_at":"2024-12-18T15:35:16.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T00:41:28.232Z","etag":null,"topics":["email","imap","perl","perl-script","smtp"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"artistic-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mikkun.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}},"created_at":"2023-09-14T15:25:01.000Z","updated_at":"2024-12-18T15:35:21.000Z","dependencies_parsed_at":"2025-01-19T17:33:20.626Z","dependency_job_id":"b459309e-ed4e-460c-a600-d284b0891d3c","html_url":"https://github.com/mikkun/imap-email-notifier","commit_stats":{"total_commits":1,"total_committers":1,"mean_commits":1.0,"dds":0.0,"last_synced_commit":"fbf2bb66b504b4cb7e4b20dda0c4ccb255f7b308"},"previous_names":["mikkun/imap-email-notifier"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mikkun/imap-email-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikkun%2Fimap-email-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikkun%2Fimap-email-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikkun%2Fimap-email-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikkun%2Fimap-email-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikkun","download_url":"https://codeload.github.com/mikkun/imap-email-notifier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikkun%2Fimap-email-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278981512,"owners_count":26079640,"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-10-08T02:00:06.501Z","response_time":56,"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":["email","imap","perl","perl-script","smtp"],"created_at":"2024-09-24T19:51:12.537Z","updated_at":"2025-10-08T16:56:46.103Z","avatar_url":"https://github.com/mikkun.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# imap-email-notifier\n\n![GitHub top language](https://img.shields.io/github/languages/top/mikkun/imap-email-notifier)\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/mikkun/imap-email-notifier)\n![GitHub license](https://img.shields.io/github/license/mikkun/imap-email-notifier)\n\n\u003e :mailbox: Email notifier for IMAP mailboxes\n\n## Description\n\nThis script connects to an IMAP server, retrieves unread messages from specified folders, and sends notification emails about new unread messages via an SMTP server.\n\n## Requirements\n\n- [Perl](https://www.perl.org/) (\u0026gt;= 5.12.0)\n- [cpanm](https://github.com/miyagawa/cpanminus)\n- [Carton](https://github.com/perl-carton/carton)\n- [OpenSSL](https://www.openssl.org/)/[LibreSSL](https://www.libressl.org/) headers\n- [zlib](https://zlib.net/) headers\n\n## Installation\n\n### Install the build dependencies\n\n```shell\n# Debian-based distributions\nsudo apt install build-essential\nsudo apt install libssl-dev zlib1g-dev\n\n# Fedora-based distributions\nsudo dnf groupinstall \"Development Tools\" \"Development Libraries\"\nsudo dnf install openssl-devel zlib-devel\n\n# Arch-based distributions\nsudo pacman -S base-devel\nsudo pacman -S openssl zlib\n```\n\n### Install cpanm\n\n```shell\n# Debian-based distributions\nsudo apt install cpanminus\n\n# Fedora-based distributions\nsudo dnf install cpanminus\n\n# Arch-based distributions\nsudo pacman -S cpanminus\n```\n\n### Install Carton\n\n```shell\nsudo cpanm Carton\n```\n\n### Clone the repository\n\n```shell\ngit clone https://github.com/mikkun/imap-email-notifier.git\n```\n\n### Install dependent modules\n\n```shell\ncd imap-email-notifier\ncarton install --deployment\n```\n\n## Usage\n\n```shell\n./imap-email-notifier.pl\n```\n\n## Options\n\nThere are no command-line options for this script. Configuration should be done within the script.\n\n## Configuration\n\nThe configuration information is stored in the `$CONFIG` hash within the script.\n\n## License\n\n[Artistic License 2.0](./LICENSE)\n\n## Author\n\n[KUSANAGI Mitsuhisa](https://github.com/mikkun)\n\n## References\n\n- [Mail::IMAPClient](https://metacpan.org/pod/Mail::IMAPClient)\n- [Net::SMTP](https://metacpan.org/pod/Net::SMTP)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikkun%2Fimap-email-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikkun%2Fimap-email-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikkun%2Fimap-email-notifier/lists"}