Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update default mailer adapter #21

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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