Skip to content

Commit

Permalink
Add SMTP message limits to values template (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
JD-Robertson authored Nov 14, 2023
1 parent 0a1eb4c commit 80f9701
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions getting-started/templates/systemlink-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
##
Expand Down

0 comments on commit 80f9701

Please sign in to comment.