mailboar

Crates.iomailboar
lib.rsmailboar
version0.3.4
sourcesrc
created_at2022-01-14 07:40:53.280774
updated_at2024-07-31 10:24:00.153562
descriptionA web interface for Tiny MailCatcher, a MailCatcher clone
homepagehttps://github.com/aeyoll/mailboar
repositoryhttps://github.com/aeyoll/mailboar
max_upload_size
id513758
size60,245
Jean-Philippe Bidegain (aeyoll)

documentation

https://github.com/aeyoll/mailboar

README

Mailboar

GitHub Actions workflow status Conventional Commits Minimum rustc version License

Mailboar provides a web interface for Tiny MailCatcher, a MailCatcher clone written in Rust.

Installation

Using Cargo, Git and Yarn

First, install mailboar using Cargo:

cargo install mailboar

Then, clone this repository, and build the static assets using https://yarnpkg.com/. Node >= 20 is required.

cd crates/frontend
yarn # Install dependencies
yarn run build # Build static assets

This will create a static repository with all the assets.

Finally, launch mailboar from the cloned repository:

mailboar --ip 127.0.0.1 --smtp-port=1025 --api-port=1080 --http-port=8025 --assets-path=crates/frontend/static # default values

Using Docker

There is also a small Docker image available, with all batteries included:

docker run --rm --init -t -p 1080:1080 -p 1025:1025 -p 8025:8025 aeyoll/mailboar:latest

Development

For easier development, use https://github.com/watchexec/cargo-watch to auto-compile on change:

cargo watch -x 'run'

Auto-compile static assets:

yarn run start

Rust version requirements

1.71.0+

Commit count: 0

cargo fmt