Add the new options NEWSLETTER_SERVER_URL and NEWSLETTER_ID
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
nemunaire 2023-11-19 15:00:40 +01:00
commit 5199779fb2
4 changed files with 11 additions and 1 deletions

View file

@ -44,6 +44,12 @@ mail-smtp-password={{ happydomain_mail_smtp_password }}
{% if happydomain_mail_smtp_tls_no_verify is defined and happydomain_mail_smtp_tls_no_verify != "" %}
mail-smtp-tls-no-verify={{ happydomain_mail_smtp_tls_no_verify }}
{% endif %}
{% if happydomain_newsletter_server_url is defined and happydomain_newsletter_server_url != "" %}
newsletter-server-url={{ happydomain_newsletter_server_url }}
{% endif %}
{% if happydomain_newsletter_id is defined and happydomain_newsletter_id != "" %}
newsletter-id={{ happydomain_newsletter_id }}
{% endif %}
{% if happydomain_no_auth is defined and happydomain_no_auth != "" %}
no-auth={{ happydomain_no_auth }}
{% endif %}