Hello there,
I’ve got a strange problem and I don’t know what I’m doing wrong:
I am catching mails to “@mydomain.tld” into inbox “myinbox@mydomain.tld”, so far so good, that works.
Now I’ve got a rule in the receiving account that sorts all these mails into a subdir INBOX/CatchAll, sends them to someone else to double-check them, deletes the original (at least it is supposed to do that) and stops the filter processing.
if anyof (not address :contains ["to", "cc"] "myinbox@mydomain.tld", not header :contains "X-Original-To" "myinbox@mydomain.tld") {
redirect "anotherinbox@mydomain.tld";
fileinto "INBOX/CatchAll";
discard;
stop;
}
edit: I am pretty sure it also duplicates the message w/o the discard;
- that was only an attempt to get rid of the duplicate, to no avail /edit.
All of that works as intended, apart from the annoying bit that the messages are now in the destination folder “INBOX/CatchAll” and also in “INBOX”. What am I doing wrong here?
thanks in advance,
S.