https://github.com/brokenpip3/k8s-fake-smtp
A fake smtp server for kubernetes
https://github.com/brokenpip3/k8s-fake-smtp
fake-smtp-server kubernetes smtp
Last synced: about 1 month ago
JSON representation
A fake smtp server for kubernetes
- Host: GitHub
- URL: https://github.com/brokenpip3/k8s-fake-smtp
- Owner: brokenpip3
- Created: 2020-04-10T22:58:37.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-03T22:32:55.000Z (over 3 years ago)
- Last Synced: 2025-02-05T18:05:22.168Z (3 months ago)
- Topics: fake-smtp-server, kubernetes, smtp
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple k8s fake smtp server
Do you have an application which needs a smtp server but you don't really care about
sending email through it?
Are you developing a new application in kubernetes and do you need a smtp
microservice to debug sending mails?This is a simple python DebuggingServer from smtplib that allows you to provide
a smtp server which always accepts mails and print them to stdout or not (see Privacy)## Install
You can find an example [here](fake-stmp.yaml)
## Privacy
By default this container logs all the incoming emails in stdout for debugging
purpose, if you prefer to avoid this behavior just set the env var `NOLOG` to value `1`.