Actual mailboxes + catch-all for all other addresses #4594
-
|
I set up 3 mailboxes: And added a catch-all to John's mailbox: However, this results in ALL mail ending up in John's mailbox (including Frank's and Paul's mail). Going by this post, I must also add aliases for all the actual mailboxes too because aliases take precedence over accounts. However, DMS is not letting me: So I ended up editing the I have tested this configuration and it seems to work correctly. Is this an unsupported use-case, of could I have achieved the same using DMS |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Correct. This is something Postfix does which we cannot control.
It's intentionally prevented due to issues reported in the past related to the conflicting use of an address by both mailbox and alias. We have an open issue about this I think, notably for the catch-all use-case where we advise manually managing via A recent issue someone ran into with a catch-all was it broke subaddressing for use with Dovecot sieve, to make that work consistently, the solution was to use regexp aliases which are less pleasant to manage (@audioscavenger you might be interested in knowing about this caveat/workaround for your management GUI). For more info on the sub-address resolution queries by Postfix see:
There was also this alternative solution I provided that avoided the regexp aliases (but still required the equivalent
It is unsupported. You may subscribe to this issue to be updated should it be resolved in future. |
Beta Was this translation helpful? Give feedback.
Correct. This is something Postfix does which we cannot control.
It's intentionally prevented due to issues reported in the past related to the conflicting use of an address by both mailbox and alias.
We have an open issue about this I think, notably for the catch-all use-case where we advise manually managing via
postfix-virtual.cfas a workaround when you know what you're doing and we'll allow that as you've discovered.A recent issue someone ran into with a catch-all was it broke subaddressing for use with Dovecot sieve, to make that work consisten…