danfabi

Results 4 comments of danfabi

+1 definitely needing this option for testing with Bazel.

Having the same issue here (v1.7.22).

Ok, either my understanding of what should happen is very wrong here or `/internal/postfix/alias` resolves more than it should: According to the [`postconf` man page](https://www.postfix.org/postconf.5.html#propagate_unmatched_extensions), `propagate_unmatched_extensions` (which includes "`virtual`" by...

Yes, that's also my workaround for now. ``` require ["fileinto","regex","variables"]; if anyof (header :regex "to" "[+-]([A-z0-9]+)@", header :regex "Delivered-To" "[+-]([A-z0-9]+)@") { set "suffix" "${1}"; fileinto "${suffix}"; stop; } ```