Vacation Message AutoReply only worked 1 time?

konijntje

New member
Joined
Aug 20, 2013
Messages
4
Hi all,

I've set a "Vacation Message" for [email protected] in my DA controlpanel.

When I compose an e-mail message from my Gmail (or Hotmail, Yahoo, etc.) and send it to my [email protected],
I don't receive any Auto-Reply in my inbox.
So far, I've only received 1 time a Auto-Reply from [email protected] in my Gmail inbox.
I've also checked my Gmail, Hotmail and Yahoo's spambox.
Btw. My system's date/time is correct and I've also set the correct "Vacation Start" and "Vacation End".

ps. I'm using CentOS6 with the latest DA.

Can someone help me fixing this problem?
Thanks in advance!
 
Hello,

The auto replies are not supposed to be sent every time to the same sender.

There's a throttling to avoid loopings, it's controlled by your /etc/exim.conf "once_repeat" directive:

Code:
uservacation:
 ...
  once_repeat = 2d
  
userautoreply:
...
  once_repeat = 2d
 
Hello,

The auto replies are not supposed to be sent every time to the same sender.

There's a throttling to avoid loopings, it's controlled by your /etc/exim.conf "once_repeat" directive:

Code:
uservacation:
 ...
  once_repeat = 2d
  
userautoreply:
...
  once_repeat = 2d

So I have to change "once_repeat = 2d" to "once_repeat = 1d" ?

d stands for Days right?
 
Yes, you can control the auto reply rate changing this directive.

There are one for auto replies and another for vacation messages.

d stands for day, h for hours, m for minutes...
 
Back
Top