smtp-gotify is a small program which listens for SMTP and sends all incoming Email messages to your Gotify server.
Say you have a software which can send Email notifications via SMTP.
You may use smtp-gotify as an SMTP server so
the notification mail can be sent to a Gotify app.
This Helm chart is used to deploy smtp-gotify with a stable configuration to Kubernetes clusters.
The upstream repository for the smtp-gotify project can be found here.
- Gotify (tested for 2.4.0+)
- Kubernetes (tested for 1.30+)
- Helm (tested for 3.15+)
To add the repository run:
helm repo add smtp-gotify https://jreiml.github.io/smtp-gotify-helmTo deploy the chart with the release name smtp-gotify run:
# The variable `URL` should be in the form `http[s]://example.com[:port]/`.
export URL=https://gotify.example.com/
export TOKEN=...
helm install smtp-gotify smtp-gotify/smtp-gotify \
--set "gotify.url=$URL" \
--set "gotify.token=$TOKEN"