fix: set get_max_smtp_rcpt_to for chatmail to the actual limit of 1000 instead of unlimited.#7432
Merged
Simon-Laux merged 3 commits intomainfrom Nov 13, 2025
Merged
Conversation
instead of unlimited.
iequidoo
approved these changes
Nov 12, 2025
iequidoo
approved these changes
Nov 12, 2025
Contributor
|
including or excluding SELF? always guaranteed also on future changes? to play safe, and as i would not trust my code myself wrt off-by-one, i would have used 999 :) just saying, a bit joking :) the PR is probably fine, maybe there is a test for the 50, at least it happens more often, so one would notice off-by-one already in larger groups and having an explicit limit rather than implicit is in any case an improvement thanks for taking care❤️ |
r10s
approved these changes
Nov 12, 2025
Collaborator
|
Everything is fine, the code calling |
link2xt
approved these changes
Nov 13, 2025
Hocuri
approved these changes
Nov 13, 2025
Co-authored-by: Hocuri <hocuri@gmx.de>
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.
adb brought this up in an internal discussion.
With the recent introduction of channels it becomes easier to hit the limit
and it becomes impossible to send messages to a channel with more than 1000 members, this pr fixes that.