Skip to content

NullCosmos/discord-smtp-server

 
 

Repository files navigation

Discord-SMTP Server

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

Usage

Local

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

Docker

Run

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

Compose

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

Testing

$ telnet localhost 1025
EHLO localhost
AUTH PLAIN
AHVzZXJuYW1lAHBhc3N3b3Jk
MAIL FROM:<[email protected]>
RCPT TO:<[email protected]>
DATA

Hey
.

Features

  • SMTP Authentication

About

A simple SMTP-Discord Webhook relay.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 94.1%
  • Dockerfile 5.9%