Change default --match-from to all @cheogram.com JIDs #9
Loading…
Reference in a new issue
No description provided.
Delete branch "jch/cheogram-any-jid"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem: The default
--match-frompattern (^\+[0-9]+@cheogram\.com$) only matched phone-number JIDs like+1234@cheogram.com. Third-party services sending messages from other address formats (e.g.386732;phone-context=...@cheogram.com) were silently dropped by the bridge.Fix: Changed the default pattern to
^.+\@cheogram\.com$— any JID ending in@cheogram.comwith at least one character before the@. This routes all Cheogram-originated XMPP messages through the bridge.Unchanged: The
--match-fromCLI flag still allows overriding this default if needed.Pull request closed