Last change
on this file was
2c1b61a,
checked in by Edwin Eefting <edwin@datux.nl>, 7 years ago
|
migrated settings to new default configs
|
-
Property mode set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | # -*- Mode: sh -*- |
---|
2 | ########################################### |
---|
3 | # Autoresponder settings |
---|
4 | ########################################### |
---|
5 | |
---|
6 | # Autorespond if the recipient is in the Cc field |
---|
7 | AUTORESPOND_CC=0 |
---|
8 | |
---|
9 | # Autorespond if the recipient is in the Bcc field |
---|
10 | AUTORESPOND_BCC=0 |
---|
11 | |
---|
12 | # Autorespond if the recipient is not in any of To, Cc or Bcc |
---|
13 | # (i.e. received the message through a distribution list) |
---|
14 | AUTORESPOND_NORECIP=0 |
---|
15 | |
---|
16 | # Only send reply to same e-mail address once per 24 hours |
---|
17 | TIMELIMIT=$((24*60*60)) |
---|
18 | |
---|
19 | BASE_PATH=/var/lib/kopano/autorespond |
---|
20 | |
---|
21 | # File which contains where vacation message was sent |
---|
22 | SENDDB=$BASE_PATH/vacation-$USER.db |
---|
23 | |
---|
24 | # Tempfile containing message that will be sent |
---|
25 | SENDDBTMP=$BASE_PATH/vacation-$USER-$$.tmp |
---|
26 | |
---|
27 | # Customize your actual mail command, normally sendmail |
---|
28 | # Input to this command is the message to send |
---|
29 | SENDMAILCMD=/usr/sbin/sendmail |
---|
30 | |
---|
31 | # Additional parameters for the $SENDMAILCMD |
---|
32 | # The last parameter added to the $SENDMAILCMD is $FROM, |
---|
33 | # so take that into account for the $SENDMAILPARAMS |
---|
34 | SENDMAILPARAMS="-t -f" |
---|
Note: See
TracBrowser
for help on using the repository browser.