kylegrantlucas / discord-smtp-server

A simple SMTP-Discord Webhook relay.
MIT License
2 stars 2 forks source link

Discord-SMTP Server

GitHub Workflow Status (branch) Docker Image Version (latest by date) Docker Pulls GitHub

A simple relay that accepts SMTP messages and forwards them to a Discord webhook.

Usage

Local

env DISCORD_TOKEN=xxxxxxxxxxxx SMTP_USERNAME=username SMTP_PASSWORD=password go run main.go

Docker

Run

docker run -t discord-smtp \
           -e PORT=25 \
           -e DISCORD_TOKEN=xxxxxxxxxxxx \
           -e SMTP_USERNAME=username \
           -e SMTP_PASSWORD=password \
           kylegrantlucas/discord-smtp-server

Compose

discord-smtp:
  image: kylegrantlucas/discord-smtp-server
  container_name: discord-smtp
  env:
    - PORT=25
    - DISCORD_TOKEN=xxxxxxxxxxxx
    - SMTP_USERNAME=username
    - SMTP_PASSWORD=password
  restart: always

Testing

$ telnet localhost 1025
EHLO localhost
AUTH PLAIN
AHVzZXJuYW1lAHBhc3N3b3Jk
MAIL FROM:<test@test.com>
RCPT TO:<smtp@alert.karenplankton>
DATA
Hey
.

Features