Hello, Haw I can make a custom rule for forwarding emails received from specific addresses to other address? ISPCONFIG 3 on Ubuntu 12.04 Thank you. Bogdan
Please see ispconfig faq: http://www.faqforge.com/linux/contr...-copys-of-incoming-emails-to-other-mailboxes/
no info there about this Thank you. I don't see there how it can be done.It is only for forward all emails arrived. I need to forward only emails arrived from specific address. Thank you. Bogdan
The filter syntax is sieve, so you can use any sieve based filter rule that you find on the net. Google for sieve filter tutorials to get a better overview about its capabilities.
got it if address :is "from" ["[email protected]", "[email protected]"] { redirect "[email protected]"; redirect "[email protected]"; } Thank you