Crates.io | mailboar_backend |
lib.rs | mailboar_backend |
version | 0.3.4 |
source | src |
created_at | 2024-07-30 10:00:27.69853 |
updated_at | 2024-07-31 10:23:21.831666 |
description | A web interface for Tiny MailCatcher, a MailCatcher clone |
homepage | https://github.com/aeyoll/mailboar |
repository | https://github.com/aeyoll/mailboar |
max_upload_size | |
id | 1319627 |
size | 46,115 |
Tiny MailCatcher is a tiny (<6 MB) drop-in MailCatcher replacement optimized for size and speed. It's meant to be run in a resource constrained environment, such as a CI system, or as part of an automated test suite.
Some features that the original MailCatcher has were omitted: Tiny MailCatcher does not have an HTML + JavaScript UI and it does not publish a WebSocket endpoint at /messages (yet). If you need either of these features I strongly recommend installing the original MailCatcher.
When Tiny MailCatcher is running any emails sent to port 1025 (configurable) can be accessed and analysed via a REST API. This is useful in a test suite when asserting that certain emails are or are not sent.
The documentation at https://mailcatcher.me/ also applies to Tiny MailCatcher.
In short:
GET/DELETE http://localhost:1080/messages
retrieves/deletes all messagesGET http://localhost:1080/messages/:id.json
retrieve a single message in JSON formatGET http://localhost:1080/messages/:id.source
retrieve the message sourceGET http://localhost:1080/messages/:id.html
retrieve the HTML version of this messageGET http://localhost:1080/messages/:id.eml
retrieve the EML version of this messageGET http://localhost:1080/messages/:id.plain
retrieve the text/plain version of this messageDELETE http://localhost:1080/messages/:id
delete a messageGET http://localhost:1080/messages/:id/parts/:cid
retrieve attachments by content IDUsing Cargo:
cargo install tiny-mailcatcher
There is also a tiny (~5MB) Docker image available:
docker run -d -p 1080:80 -p 1025:25 pevdh/tiny-mailcatcher:latest
USAGE:
tiny-mailcatcher [OPTIONS]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
--http-port <http-port> [default: 1080]
--ip <ip> [default: 127.0.0.1]
--smtp-port <smtp-port> [default: 1025]