// Matrix plugin module implements setup dm policy behavior. import type { DmPolicy } from "openclaw/plugin-sdk/config-contracts"; import { addWildcardAllowFrom, normalizeAllowFromEntries } from "openclaw/plugin-sdk/setup"; import type { MatrixConfig } from "./types.js"; type MatrixDmAllowFrom = NonNullable["allowFrom"]; export function resolveMatrixSetupDmAllowFrom( policy: DmPolicy, allowFrom: MatrixDmAllowFrom, ): string[] { if (policy === "open") { return addWildcardAllowFrom(allowFrom); } return normalizeAllowFromEntries(allowFrom ?? []).filter((entry) => entry !== "*"); }