discord-smtp-server

command module
v0.0.0-...-045d6a7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 14, 2021 License: MIT Imports: 5 Imported by: 0

README

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

  • SMTP Authentication
  • Webhook Discovery

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL