{"id":13563242,"url":"https://github.com/inbucket/inbucket","last_synced_at":"2025-05-14T05:10:36.734Z","repository":{"id":4950310,"uuid":"6107632","full_name":"inbucket/inbucket","owner":"inbucket","description":"Disposable webmail server (similar to Mailinator) with built in SMTP, POP3, RESTful servers; no DB required.","archived":false,"fork":false,"pushed_at":"2025-05-05T19:36:37.000Z","size":4620,"stargazers_count":1820,"open_issues_count":34,"forks_count":176,"subscribers_count":28,"default_branch":"main","last_synced_at":"2025-05-06T23:44:20.685Z","etag":null,"topics":["go","golang","integration-testing","linux","mail","mailserver","osx","pop","pop3","smtp","smtp-server","webmail","windows"],"latest_commit_sha":null,"homepage":"https://inbucket.org/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"npm/ansible-percona","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/inbucket.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2012-10-06T23:09:56.000Z","updated_at":"2025-05-06T22:27:43.000Z","dependencies_parsed_at":"2023-10-22T00:23:27.782Z","dependency_job_id":"c8256477-c9a5-45c6-a054-63899645dd60","html_url":"https://github.com/inbucket/inbucket","commit_stats":{"total_commits":891,"total_committers":29,"mean_commits":"30.724137931034484","dds":0.07407407407407407,"last_synced_commit":"bd51662ce8a13ed66b8b3b66bd3089cf337981e9"},"previous_names":["jhillyerd/inbucket"],"tags_count":34,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inbucket%2Finbucket","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inbucket%2Finbucket/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inbucket%2Finbucket/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inbucket%2Finbucket/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inbucket","download_url":"https://codeload.github.com/inbucket/inbucket/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254076849,"owners_count":22010611,"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":["go","golang","integration-testing","linux","mail","mailserver","osx","pop","pop3","smtp","smtp-server","webmail","windows"],"created_at":"2024-08-01T13:01:16.768Z","updated_at":"2025-05-14T05:10:36.708Z","avatar_url":"https://github.com/inbucket.png","language":"Go","readme":"![Build Status](https://github.com/inbucket/inbucket/actions/workflows/build-and-test.yml/badge.svg)\n![Docker Image](https://github.com/inbucket/inbucket/actions/workflows/docker-build.yml/badge.svg)\n\n# Inbucket\n\nInbucket is an email testing service; it will accept messages for any email\naddress and make them available via web, REST and POP3 interfaces.  Once\ncompiled, Inbucket does not have any external dependencies - HTTP, SMTP, POP3\nand storage are all built in.\n\nA Go client for the REST API is available in\n`github.com/inbucket/inbucket/pkg/rest/client` - [Go API docs]\n\nRead more at the [Inbucket Website]\n\n![Screenshot](http://www.inbucket.org/images/inbucket-ss1.png \"Viewing a message\")\n\n\n## Development Status\n\nInbucket is currently production quality: it is being used for real work.\n\nPlease see the [Change Log] and [Issues List] for more details.  If you'd like\nto contribute code to the project check out [CONTRIBUTING.md].\n\n\n## Docker\n\nInbucket has automated [Docker Image] builds via Docker Hub.  The `latest` tag\ntracks our tagged releases, and `edge` tracks our potentially unstable\n`main` branch.\n\nStart the docker image by running:\n\n```\ndocker run -d --name inbucket -p 9000:9000 -p 2500:2500 -p 1100:1100 inbucket/inbucket\n```\n\nThen point your browser to [localhost:9000](http://localhost:9000/)\n\n## Building from Source\n\nYou will need functioning [Go] and [Node.js] installations for this to work.\n\n```sh\ngit clone https://github.com/inbucket/inbucket.git\ncd inbucket/ui\nyarn install\nyarn build\ncd ..\ngo build ./cmd/inbucket\n```\n\nFor more information on building and development flows, check out the\n[Development Quickstart] page of our wiki.\n\n### Configure and Launch\n\nInbucket reads its configuration from environment variables, but comes with\nreasonable defaults built-in.  It should work on most Unix and OS X machines as\nis.  Launch the daemon:\n\n```sh\n./inbucket\n```\n\nBy default the SMTP server will be listening on localhost port 2500 and\nthe web interface will be available at [localhost:9000](http://localhost:9000/).\n\nSee doc/[config.md] for more information on configuring Inbucket, but you will\nlikely find the [Configurator] tool the easiest way to generate a configuration.\n\n\n## About\n\nInbucket is written in [Go] and [Elm].\n\nInbucket is open source software released under the MIT License.  The latest\nversion can be found at https://github.com/inbucket/inbucket\n\n[Build Status]:           https://travis-ci.org/inbucket/inbucket\n[Change Log]:             https://github.com/inbucket/inbucket/blob/main/CHANGELOG.md\n[config.md]:              https://github.com/inbucket/inbucket/blob/main/doc/config.md\n[Configurator]:           https://www.inbucket.org/configurator/\n[CONTRIBUTING.md]:        https://github.com/inbucket/inbucket/blob/main/CONTRIBUTING.md\n[Development Quickstart]: https://github.com/inbucket/inbucket/wiki/Development-Quickstart\n[Docker Image]:           https://inbucket.org/packages/docker.html\n[Elm]:                    https://elm-lang.org/\n[From Source]:            https://www.inbucket.org/installation/from-source.html\n[Go]:                     https://golang.org/\n[Go API docs]:            https://pkg.go.dev/github.com/inbucket/inbucket/pkg/rest/client\n[Homebrew]:               http://brew.sh/\n[Homebrew Tap]:           https://github.com/inbucket/homebrew-inbucket\n[Inbucket Website]:       https://www.inbucket.org/\n[Issues List]:            https://github.com/inbucket/inbucket/issues?state=open\n[Node.js]:                https://nodejs.org/en/\n","funding_links":[],"categories":["Go","Sending","golang","Repositories"],"sub_categories":["Email Testing Application"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finbucket%2Finbucket","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finbucket%2Finbucket","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finbucket%2Finbucket/lists"}