1

I need to set an autoresponder that will send a message like "We got You mail! We will get back to you ASAP". The problem is that the sender of customer email is not customer itself (i.e. customer@privatemail.com), but some global mail (i.e. customerservice@marketplace.com) that contains customer private mail in the header section [Reply-to].

This is a hosted server with installed RoundCube. I can only use Sieve filters to create an autoresponder.

rule:[Autoresponder]
if allof (
header :contains "from" "@marketplace.pl", 

{
    vacation text:
    We got You mail! We will get back to you ASAP!
.
;
}

I need to read the value of the header [Reply-To] section, set the recipient of autoresponder mail to that value and send a VACATION message. Only in Sieve language.

Krystian
  • 66
  • 1
  • 9
  • Do you know which Sieve extensions are installed on the server, or which Sieve implementation the server is using? –  Sep 16 '19 at 17:26
  • No. I now that is using RoundCube and DirectAdmin. I have no data about mail server nor sieve version – Krystian Oct 01 '19 at 11:12

0 Answers0