https://github.com/jcomo/smtpd
An implementation of SMTP in go
https://github.com/jcomo/smtpd
Last synced: about 2 months ago
JSON representation
An implementation of SMTP in go
- Host: GitHub
- URL: https://github.com/jcomo/smtpd
- Owner: jcomo
- Created: 2017-09-09T23:33:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-07T22:03:22.000Z (over 8 years ago)
- Last Synced: 2025-03-02T22:19:26.695Z (over 1 year ago)
- Language: Go
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
smtpd
An RFC 851 compliant implementation of SMTP written in golang
### Getting started
The package is not available in any repositories at the moment, so you will have to build from source.
After running `go install`, you can run it to see the available options.
```
smtpd --help
```
### What is this?
This is not production ready. It is a compliant implementation of RFC 851 that is meant to be used for debugging purposes.
I am also using this project as a learning tool and reference for others wanting to learn how to implement common protocols.
As of now, I plan on making a tool similar to [mailcatcher](https://mailcatcher.me/).