Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toowoxx/go-devenv-mailserver
Mailserver for local development
https://github.com/toowoxx/go-devenv-mailserver
Last synced: 11 days ago
JSON representation
Mailserver for local development
- Host: GitHub
- URL: https://github.com/toowoxx/go-devenv-mailserver
- Owner: toowoxx
- License: mit
- Created: 2021-03-15T11:49:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-10T08:13:56.000Z (over 2 years ago)
- Last Synced: 2024-11-07T14:13:49.660Z (2 months ago)
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mailserver for local development
Written in Go, as simple as it can get.
This starts a local mailserver which you can use to send mails to via SMTP when
doing local development. This mailserver will save the mails to a temporary directory
and open them up in your browser.## Usage
Install this app using Go:
```
go install github.com/toowoxx/go-devenv-mailserver@latest
```And run it using the command `go-devenv-mailserver`.
Alternatively, you can also clone the repository and use `go run .`.
## License
```
The MIT License (MIT)Copyright (c) 2020-2021 Toowoxx IT GmbH
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.
```