Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update default mailer adapter
Browse files Browse the repository at this point in the history
maximegaillard committed Sep 27, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 6fdf5a9 commit ea80596
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ apiVersion: v2
name: plausible-analytics
description: A Helm Chart for Plausible Analytics - Simple, open-source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics.
type: application
version: 0.3.1
version: 0.3.2
appVersion: 2.1.1
keywords:
- web analytics
2 changes: 1 addition & 1 deletion templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -129,7 +129,7 @@ spec:
- name: MAILER_ADAPTER
value: {{ .Values.mailer.adapter | toString | quote }}
{{- end }}
{{- if eq .Values.mailer.adapter "Bamboo.SMTPAdapter" }}
{{- if eq .Values.mailer.adapter "Bamboo.Mua" }}
{{- if .Values.mailer.smtp.host }}
- name: SMTP_HOST_ADDR
value: {{ .Values.mailer.smtp.host | toString | quote }}
2 changes: 1 addition & 1 deletion templates/secret.yaml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ data:
CLICKHOUSE_DATABASE_URL: {{ .Values.clickhouseDatabaseURL | toString | b64enc }}
{{- end }}
{{- if .Values.mailer.enabled }}
{{- if eq .Values.mailer.adapter "Bamboo.SMTPAdapter" }}
{{- if eq .Values.mailer.adapter "Bamboo.Mua" }}
{{- if .Values.mailer.smtp.password }}
SMTP_USER_PWD: {{ .Values.mailer.smtp.password | toString | b64enc }}
{{- end }}
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ secret:
mailer:
enabled: false # Enable/Disable functionality
email: "" # the email address of the email sender
adapter: "" # "Bamboo.SMTPAdapter", "Bamboo.MailgunAdapter", "Bamboo.MandrillAdapter", "Bamboo.SendGridAdapter"
adapter: "" # "Bamboo.Mua", "Bamboo.MailgunAdapter", "Bamboo.MandrillAdapter", "Bamboo.SendGridAdapter"
smtp:
host: "" # The host address of your smtp server.
port: "" # The port of your smtp server.

0 comments on commit ea80596

Please sign in to comment.