From 467f114890994374a4cb457c5be0d0dbb9766dd1 Mon Sep 17 00:00:00 2001 From: JD Robertson Date: Tue, 7 Nov 2023 08:43:13 -0600 Subject: [PATCH] Add SMTP message limits to values template --- getting-started/templates/systemlink-values.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/getting-started/templates/systemlink-values.yaml b/getting-started/templates/systemlink-values.yaml index 3846992c..aeb628a1 100644 --- a/getting-started/templates/systemlink-values.yaml +++ b/getting-started/templates/systemlink-values.yaml @@ -909,6 +909,18 @@ smtp: ## Optional - The timeout, in seconds, when communicating with the SMTP server. ## # timeoutSeconds: 100 + ## Settings related to individual SMTP messages + ## + messages: + ## @param maxRecipients Limit on the number of recipients a single message can be addressed to. Default is 100. + ## + maxRecipients: "100" + ## @param maxBodyBytes Limits the size of the message body. Default is 1 Megabyte. + ## + maxBodyBytes: "1048576" + ## @param maxSubjectBytes Limits the size of the subject line. Default is 10 kilobytes. + ## + maxSubjectBytes: "10240" ## Configuration for comments service. ##