VARS {
    bool_0: bool;
}

REMAP {
    if inbound.req.X-Allow == "yes" {
        inbound.status = 403;
        bool_0 = true;
    }
}

SEND_RESPONSE {
    if bool_0 {
        http.status.reason = "Go Away";
    }
}
