Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mailinabox | 12,356 | 3 days ago | 515 | cc0-1.0 | Python | |||||
Mail-in-a-Box helps individuals take back control of their email by defining a one-click, easy-to-deploy SMTP+everything else server: a mail server in a box. | ||||||||||
Mailcatcher | 6,041 | 1,518 | 16 | 10 days ago | 54 | August 04, 2023 | 41 | mit | Ruby | |
Catches mail and serves it through a dream. | ||||||||||
Mailu | 4,875 | 8 hours ago | 146 | other | Python | |||||
Insular email distribution - mail server as Docker images | ||||||||||
Maddy | 4,226 | 1 | a month ago | 42 | May 29, 2023 | 90 | gpl-3.0 | Go | ||
✉️ Composable all-in-one mail server. | ||||||||||
Go Imap | 1,835 | 32 | 142 | a month ago | 36 | July 02, 2023 | 28 | mit | Go | |
:inbox_tray: An IMAP library for clients and servers | ||||||||||
Wildduck | 1,741 | 3 | 3 | 2 days ago | 295 | August 31, 2023 | 82 | eupl-1.2 | JavaScript | |
Opinionated email server | ||||||||||
Mail Server | 1,626 | 2 days ago | 22 | agpl-3.0 | Rust | |||||
Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP) | ||||||||||
Go Smtp | 1,392 | 9 | 114 | 16 days ago | 27 | September 07, 2023 | 34 | mit | Go | |
:outbox_tray: An SMTP client & server library written in Go | ||||||||||
Inbucket | 1,313 | 1 | 13 days ago | 8 | May 04, 2021 | 30 | mit | Go | ||
Disposable webmail server (similar to Mailinator) with built in SMTP, POP3, RESTful servers; no DB required. | ||||||||||
Mailslurper | 1,290 | 4 days ago | March 14, 2018 | 56 | mit | JavaScript | ||||
Local, web-based mail server application. Slurp mails into oblivion! |
MailSlurper 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.
The 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.
$ cd ~/code/go/src/github.com
$ mkdir mailslurper
$ cd mailslurper
$ git clone https://github.com/mailslurper/mailslurper.git
$ go get github.com/mjibson/esc
$ cd mailslurper/cmd/mailslurper
$ go get
$ go generate
$ go build
# Build container image (adjust repo location as necessary)
docker build -t mailslurper 'https://github.com/mailslurper/mailslurper#master'
# Run a temporary container. Note that upon shutdown, all stored messages will be lost when using this config.
docker run -it --rm --name mailslurper -p 8080:8080 -p 8085:8085 -p 2500:2500 mailslurper
This application uses a lot of great open source libraries.
Themes by Thomas Park at Bootswatch.
The MIT License (MIT)
Copyright (c) 2013-2018 Adam Presley
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.