[solved] rules into folder Hi all, I'm forwarding my e-mail from my gmx account to my own domain and trying to move it to a secified directory on the e-mail account. but this does not seem to work. here's the rule: Code: if (/^Delivered-To: GMX delivery to myemail@gmx\.net$/) { to "Maildir/.myemail"; } I've tried TONS of different paths in the "to" field, but none with success. How can I simply put it in a subfolder of the users Inbox? thanks solved!: Code: to "$DEFAULT/.yourfolder";
There is no folder named "Maildir" in a ispconfig 3 courier maildrop setup, thats why maildrop complains about the missing permissions. The to line must look like: to "$DEFAULT/.myemail/";