@mxraven/mail - v0.2.0
    Preparing search index...

    Interface RoutingDecision

    The final routing outcome for an inbound message.

    interface RoutingDecision {
        matched_rule_id?: string;
        terminal_action: TerminalAction;
        used_listener_default: boolean;
    }
    Index
    matched_rule_id?: string

    The rule that selected the terminal action, when one matched.

    terminal_action: TerminalAction

    The final terminal action. Values are the mxRaven worker enum names.

    used_listener_default: boolean

    Whether the listener default was used because no rule produced a terminal action.