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.
To add the repository run:
helm repo add smtp-gotify https://jreiml.github.io/smtp-gotify-helm
To 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"