fix: default groupPolicy to open

This commit is contained in:
Peter Steinberger
2026-01-12 08:51:40 +00:00
parent a8f67f0be6
commit 9554292083
3 changed files with 3 additions and 3 deletions

View File

@@ -253,7 +253,7 @@ export async function monitorWebInbox(options: {
// - "open": groups bypass allowFrom, only mention-gating applies
// - "disabled": block all group messages entirely
// - "allowlist": only allow group messages from senders in groupAllowFrom/allowFrom
const groupPolicy = account.groupPolicy ?? "allowlist";
const groupPolicy = account.groupPolicy ?? "open";
if (group && groupPolicy === "disabled") {
logVerbose(`Blocked group message (groupPolicy: disabled)`);
continue;