Support sending emails by Swoosh#393
Merged
DougReeder merged 1 commit intoMar 10, 2026
Merged
Conversation
What: Updates the Reticulum mailer configuration in the hcce.yam template file to use the variable name "relay" as well as "server" for the SMTP server. Why: Swoosh expects "relay" not "server", and it's passed in directly so there isn't a chance to change it in Reticulum before it's passed to Swoosh. Notes: The old server variable is kept around so that this doesn't break Reticulum images that use Bamboo. This is mainly for debugging/comparison purposes. Users shouldn't need to change anything in input-values.yaml, but will need to regenerate their hcce.yaml and redeploy their instance with the new configuration.
DougReeder
approved these changes
Mar 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What?
Updates the Reticulum mailer configuration in the hcce.yam template file to use the variable name "relay" as well as "server" for the SMTP server.
Why?
Swoosh expects "relay" not "server", and it's passed in directly so there isn't a chance to change it in Reticulum before it's passed to Swoosh.
Examples
N/A
How to test
kubectl delete --all deployment -n hcce; kubectl delete --all pods -n hcce; npm run applyDocumentation of functionality
No functionality is changed, so no documentation update is needed.
Limitations
None.
Alternative implementations considered
Renaming the "server" variable to "relay" was considered, but this would be a hard breaking change that would potentially make debugging more difficult and it would potentially be detrimental to people with custom code.
Open questions
None.
Additional details or related context
The old server variable is kept around so that this doesn't break Reticulum images that use Bamboo. This is mainly for debugging/comparison purposes.
Users shouldn't need to change anything in input-values.yaml, but will need to regenerate their hcce.yaml and redeploy their instance with the new configuration.
reticulum companion PR: #750