libucl icon indicating copy to clipboard operation
libucl copied to clipboard

Why is the inner "default" block needed here?

Open mconigliaro opened this issue 5 years ago • 0 comments

I ran into this issue while trying to disable outbound email scanning for authenticated users in rspamd. Without the inner default block, the symbols_enabled = [] line doesn't seem to do anything. Credit goes to "notkoos" on Freenode for figuring out this workaround.

authenticated {
    priority = high;
    authenticated = yes;
    apply {
        default {
            symbols_enabled = [];
        }
    }
}

mconigliaro avatar May 20 '20 19:05 mconigliaro