Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/psarna/edgemail
https://github.com/psarna/edgemail
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/psarna/edgemail
- Owner: psarna
- License: mit
- Created: 2023-02-28T10:42:43.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-02T10:31:58.000Z (6 months ago)
- Last Synced: 2024-12-29T10:02:28.629Z (13 days ago)
- Language: Rust
- Size: 166 KB
- Stars: 278
- Watchers: 6
- Forks: 18
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# edgemail
A professional, production-grade SMTP server! No it's not.
This demo project implements a very simple temporary e-mail, capable of receiving e-mails and storing them in [libSQL](https://github.com/libsql/libsql) (locally), [sqld](https://github.com/libsql/sqld), or [Turso](https://chiselstrike.com).Tutorial: [Write your own email server in Rust](https://blog.turso.tech/write-your-own-email-server-in-rust-36f4ff5b1956)
Example deployment: https://sorry.idont.date/
In order to get it to work, run it on a machine with public IP, port `25` exposed, and add all appropriate DNS entries - an `MX` entry and its corresponding `A` entry that points to the IP address where `edgemail` is deployed.
## client
edgemail has a client you can run as a static webpage. Find all the files in client/ directory. The only thing that needs to be changed is the database URL and the `readonly_token` used to authenticate for read-only access.