Skip to content

Commit

Permalink
chore: update default mailer adapter (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegaillard authored Oct 7, 2024
1 parent 6fdf5a9 commit 121f923
Show file tree
Hide file tree
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
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 121f923

Please sign in to comment.