Crates.io | privatemail |
lib.rs | privatemail |
version | 0.2.4 |
source | src |
created_at | 2021-03-27 06:24:16.943438 |
updated_at | 2024-04-22 21:57:29.132468 |
description | Service to forward custom emails to personal email server |
homepage | https://github.com/ch3ck |
repository | https://github.com/ch3ck/privatemail |
max_upload_size | |
id | 374103 |
size | 162,374 |
Forward emails from verified domains on SES to SES verified email
.
A RUST service that uses the inbound/outbound capabilities of AWS SES to forward emails from verified domains to an SES verified
email address.
For example, if an email is sent from john@doe.example
to achu@fufu.soup
is forwarded to a verified email onions@suya.io
.
privatemail
also add capability to blacklist
certain emails from coming to you.
Example email and how the From
and Reply-To
headers are set:
From: John Doe <achu@fufu.soup>
Reply-To: john@doe.example
<html>Email body</html>
received by -- <onions@suya.io>
terraform/variables.tf
file accordingly to suit your needs.terraform/main.tf
$ cargo build
$ cargo test
$ cd terraform
$ terraform init
$ terraform validate -json
$ terraform plan
$ terraform apply
Alternately, you can run the release.sh
and it builds your code and provisions your infrastructure.
We appreciate your contributions; all PRs are welcomed. Please see CONTRIBUTING.md for more information.
$ bash release.sh
Set up the following GitHub secrets for actions worfklows to work properly
FROM_EMAIL
TF_API_TOKEN
TO_EMAIL
AWS_REGION
BLACK_LIST
All deployments occur via GitHub Actions.
The scripts and documentation in this project are released under the MIT License