A sendmail
that forwards incoming mail as an attachment to a single receiver, through a single relay host.
This tool is for use on systems that aren't supposed to send mail to actual users, but, where system daemons (smartmontools, cron) etc occasionally send email that an admin should see.
Many people seem to address this use case with nullmailer
/ ssmtp
/ msmtp
/ dma
.
However, I found that many relay hosts put requirements on {envelope,header}x{from,to}
.
For example, I found it tricky to impossible to configure above tools to relay through AWS SES, where the IAM user is restricted by various policies to certain sender & receiver addresses.
To comply, one would need to configure above tools to rewrite {envelope,header}x{from,to}
.
However, I found that hard or impossible to do, especially if the recipient address is restricted by the relayhost policy.
Hence, I wrote this tiny sendmail
replacement.
Deploy it to your Debian using the instructions below.
Here's how the received message look like in Mutt and Apple Mail. We use inline attachments for convenience in the GUI.
Install cargo deb
.
Then
# build debian package
cargo deb --target x86_64-unknown-linux-musl
# list built debian package's contents
dpkg-deb -c target/x86_64-unknown-linux-musl/debian/forward-as-attachment-mta_0.1.0-1_amd64.deb
Install above .deb
on your system.
The create the config file:
# /etc/forward-as-attachment-mta.config.toml
sender_email = "[email protected]"
recipient_email= "[email protected]"
smtp_host= "email-smtp.eu-central-1.amazonaws.com"
smtp_username= "..."
smtp_password= "..."
See GitHub releases.
version=0.2.1
gsed -i -E 's/^version =.*/version = "'"$version"'"/' Cargo.toml
git add Cargo.toml
git commit -m "$version"
cargo deb --target x86_64-unknown-linux-musl
gh release create v$version --generate-notes ./target/x86_64-unknown-linux-musl/debian/forward-as-attachment-mta_$version-1_amd64.deb