{"id":13687545,"url":"https://github.com/mailslurper/mailslurper","last_synced_at":"2025-05-14T23:05:12.113Z","repository":{"id":23506211,"uuid":"26871979","full_name":"mailslurper/mailslurper","owner":"mailslurper","description":"Local, web-based mail server application. Slurp mails into oblivion!","archived":false,"fork":false,"pushed_at":"2023-09-23T17:32:48.000Z","size":18059,"stargazers_count":1453,"open_issues_count":64,"forks_count":189,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-04-13T19:50:00.067Z","etag":null,"topics":["bootstrap","development-tools","go","javascript","mail","mailserver","mailslurper","smtp","smtp-server"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mailslurper.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":"2014-11-19T17:05:37.000Z","updated_at":"2025-04-02T02:27:55.000Z","dependencies_parsed_at":"2024-06-20T12:58:33.497Z","dependency_job_id":"3a233ac6-ffe8-4458-8963-8725f7ce1682","html_url":"https://github.com/mailslurper/mailslurper","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mailslurper%2Fmailslurper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mailslurper%2Fmailslurper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mailslurper%2Fmailslurper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mailslurper%2Fmailslurper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mailslurper","download_url":"https://codeload.github.com/mailslurper/mailslurper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254243358,"owners_count":22038046,"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":["bootstrap","development-tools","go","javascript","mail","mailserver","mailslurper","smtp","smtp-server"],"created_at":"2024-08-02T15:00:56.341Z","updated_at":"2025-05-14T23:05:07.084Z","avatar_url":"https://github.com/mailslurper.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"logo/horizontal.png\" alt=\"mailslurper\" height=\"100px\"\u003e\u003c/p\u003e\n\nMailSlurper\n===========\n\nMailSlurper is a small SMTP mail server that slurps mail into oblivion! MailSlurper is perfect for individual developers or small teams writing mail-enabled applications that wish to test email functionality without the risk or hassle of installing and configuring a full blown email server. It's simple to use! Simply setup MailSlurper, configure your code and/or application server to send mail through the address where MailSlurper is running, and start sending emails! MailSlurper will capture those emails into a database for you to view at your leisure.\n\nCompiling\n---------\nThe following are general instructions for compiling MailSlurper. Your details may vary a bit here and there. The below example is based on a Unix-style system, such as Ubuntu or OSX. Furthermore for instructional purposes it is assumed that your GOPATH is set to *~/code/go*, and that you have a folder in your source directory called **github.com**. Your setup may vary. The instructions below also assume you have the following already installed.\n\n* Go 1.10 (or higher)\n* Git\n\n```bash\n$ cd ~/code/go/src/github.com\n$ mkdir mailslurper\n$ cd mailslurper\n$ git clone https://github.com/mailslurper/mailslurper.git\n$ go get github.com/mjibson/esc\n$ cd mailslurper/cmd/mailslurper\n$ go get\n$ go generate\n$ go build\n```\n\nQuickstart With Docker\n----------------------\n\n```bash\n# Build container image (adjust repo location as necessary)\ndocker build -t mailslurper 'https://github.com/mailslurper/mailslurper#master'\n# Run a temporary container. Note that upon shutdown, all stored messages will be lost when using this config.\ndocker run -it --rm --name mailslurper -p 8080:8080 -p 8085:8085 -p 2500:2500 mailslurper\n```\n\nLibrary and Framework Credits\n-----------------------------\nThis application uses a lot of great open source libraries.\n\n* [BlockUI](http://jquery.malsup.com/block/) - MIT\n* [bluemonday](https://github.com/microcosm-cc/bluemonday) - BSD 3-Clause\n* [Bootstrap](http://getbootstrap.com/) - MIT\n* [bootstrap-dialog](https://github.com/nakupanda/bootstrap3-dialog) - MIT\n* [bootstrap-growl](https://github.com/ifightcrime/bootstrap-growl) - MIT\n* [Date Range Picker for Bootstrap](http://www.daterangepicker.com) - MIT\n* [Gorilla Context](https://github.com/gorilla/context) - BSD 3-Clause\n* [Gorilla Secure Cookie](https://github.com/gorilla/securecookie) - BSD 3-Clause\n* [Gorilla Sessions](https://github.com/gorilla/sessions) - BSD 3-Clause\n* [Copier](https://github.com/jinzhu/copier) - MIT\n* [Echo](https://github.com/labstack/echo) - MIT\n* [errors](https://github.com/pkg/errors) - BSD 2-Clause\n* [esc](https://github.com/mjibson/esc) - MIT\n* [Font Awesome](http://fortawesome.github.io/Font-Awesome/) - Fonts under OFL License, CSS under MIT license\n* [GoUUID](https://github.com/nu7hatch/gouuid) - MIT\n* [go-cache](https://github.com/patrickmn/go-cache) - MIT\n* [go-mssqldb](https://github.com/denisenkom/go-mssqldb) - BSD 3-Clause\n* [Go-MySQL-Driver](https://github.com/go-sql-driver/mysql) - Mozilla Public License Version 2.0\n* [go-sqlite3](https://github.com/mattn/go-sqlite3) - MIT\n* [Handlebars](http://handlebarsjs.com) - MIT\n* [jQuery](http://jquery.com/) - MIT\n* [jwt-go](https://github.com/dgrijalva/jwt-go) - MIT\n* [lightbox2](http://lokeshdhakar.com/projects/lightbox2/) - MIT\n* [Logrus](https://github.com/sirupsen/logrus) - MIT\n* [Moment.js](http://momentjs.com) - MIT\n* [NPO](https://github.com/getify/native-promise-only) - MIT\n* [open](https://github.com/skratchdot/open-golang) - MIT\n\nThemes by Thomas Park at [Bootswatch](http://bootswatch.com/).\n\nLicense\n-------\nThe MIT License (MIT)\n\nCopyright (c) 2013-2018 Adam Presley\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","funding_links":[],"categories":["Repositories","Email Testing","JavaScript","go"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmailslurper%2Fmailslurper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmailslurper%2Fmailslurper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmailslurper%2Fmailslurper/lists"}