Code review: fix critical login bug, install script improvements, docs accuracy #3
Loading…
Reference in a new issue
No description provided.
Delete branch "jason/code-review-fixes"
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?
Code review identified and fixed 5 issues across the codebase:
Critical
xmpp-email-bridge.py:254: Fixedserver.login(bridge_jid.user, password)→server.login(credentials['jid'], password). The.userattribute access causedAttributeErrorbecause credentials['jid'] is a string, not an slixmpp JID object. This blocked XMPP→Email forwarding.Medium
--config-pathCLI flag toinstall.sh:32(parallel to existing--domain). Fixed AGENTS.md install docs from broken sudo env var syntax (sudo DOMAIN=x ...) to proper CLI flags.install.sh:192-202: previously wiped ALL transport_maps withpostconf -e "transport_maps =". Now filters out only the bridge entry, preserving other configured transports.Low
README.md:204-207: Clarified Reply-To description to "sender's Cheogram JID" (code always sets Reply-To to from_jid at line 265).README.md:101: Changed "ending in cheogram.com" to "matching cheogram.com" for Postfix domain matching precision.