4 |
- |
1 |
# -*- Mode: sh -*-
|
|
|
2 |
###########################################
|
|
|
3 |
# Zarafa autoresponder settings
|
|
|
4 |
###########################################
|
|
|
5 |
|
|
|
6 |
# Autorespond if we were only in the Cc of a message
|
|
|
7 |
AUTORESPOND_CC=0
|
|
|
8 |
|
|
|
9 |
# Autorespond if we were not in the message at all
|
|
|
10 |
AUTORESPOND_NORECIP=0
|
|
|
11 |
|
|
|
12 |
# Only send reply to same e-mail address once per 24 hours
|
|
|
13 |
TIMELIMIT=$[24*60*60]
|
|
|
14 |
|
43 |
- |
15 |
BASE_PATH=/var/lib/zarafa/autorespond
|
|
|
16 |
|
4 |
- |
17 |
# File which contains where vacation message was sent
|
43 |
- |
18 |
SENDDB=$BASE_PATH/zarafa-vacation-$USER.db
|
4 |
- |
19 |
|
|
|
20 |
# Tempfile containing message that will be send
|
43 |
- |
21 |
SENDDBTMP=$BASE_PATH/zarafa-vacation-$USER-$$.tmp
|
4 |
- |
22 |
|
|
|
23 |
# Customize your actual mail command, normally sendmail
|
|
|
24 |
# Input to this command is the message to send
|
|
|
25 |
SENDMAILCMD=/usr/sbin/sendmail
|
|
|
26 |
|
|
|
27 |
# Additional parameters for the $SENDMAILCMD
|
|
|
28 |
# The last parameter added to the $SENDMAILCMD is $FROM,
|
|
|
29 |
# so take that into account for the $SENDMAILPARAMS
|
|
|
30 |
SENDMAILPARAMS="-t -f"
|