Sign inSign up

whumphrey/smtp-translator

By whumphrey

•Updated over 6 years ago

An SMTP server that converts emails into Pushover notifications.

Image
1

10K+

whumphrey/smtp-translator repository overview

⁠SMTP Translator

Pushover is a fantastic service, but email notification via SMTP remains the standard for Unix daemons, Internet of Things, and embedded devices. SMTP Translator bridges the gap by receiving emails via SMTP and converting them into Pushover notifications, providing a simpler and more secure alternative to replicating your Gmail password on all of your systems.

⁠Running

docker run -it --rm -p 25:25 -e PUSHOVER_TOKEN=pushover.application.token whumphrey/smtp-translator

⁠Testing

telnet 127.0.0.1 25
EHLO
MAIL FROM:<[email protected]>
RCPT TO:<[email protected]> NOTIFY=success,failure
DATA
Subject: Simple Test
<enter>
This is a test message
.
QUIT

Tag summary

Content type

Image

Digest

Size

6.4 MB

Last updated

over 6 years ago

docker pull whumphrey/smtp-translator