https://github.com/bararchy/servo
Mail server in Crystal
https://github.com/bararchy/servo
crystal email mailserver smtp
Last synced: 9 months ago
JSON representation
Mail server in Crystal
- Host: GitHub
- URL: https://github.com/bararchy/servo
- Owner: bararchy
- License: mit
- Created: 2017-06-03T12:05:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T08:33:25.000Z (over 8 years ago)
- Last Synced: 2025-05-12T23:09:52.059Z (9 months ago)
- Topics: crystal, email, mailserver, smtp
- Language: Crystal
- Size: 14.6 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# servo
Full Fledged mail server inspired by https://github.com/tijn/devmail
## Installation
Right now you can play with it by building the main bin:
```bash
crystal build src/servo.cr
sudo ./servo # This is using port 25 by default right now (which means root privs)
```
## Development
- [ ] Add more protocols
- [x] Add databse to store mails, users, etc.. (mariaDB ? maybe PG ? )
- [ ] Add more functionallity to the Storage class
- [ ] Add support for openssl\STARTLS
- [ ] Add SMTP client \ forwarder under the delivery folder
- [ ] Add validation using RFC 2822
- [ ] Add support for authentication
## Contributing
1. Fork it ( https://github.com/bararchy/servo/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
## Contributors
- [bararchy](https://github.com/bararchy) - creator, maintainer