source: npl/mailserver/kopano_conf/root/etc/kopano/autorespond

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
7AUTORESPOND_CC=0
8
9# Autorespond if the recipient is in the Bcc field
10AUTORESPOND_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)
14AUTORESPOND_NORECIP=0
15
16# Only send reply to same e-mail address once per 24 hours
17TIMELIMIT=$((24*60*60))
18
19BASE_PATH=/var/lib/kopano/autorespond
20
21# File which contains where vacation message was sent
22SENDDB=$BASE_PATH/vacation-$USER.db
23
24# Tempfile containing message that will be sent
25SENDDBTMP=$BASE_PATH/vacation-$USER-$$.tmp
26
27# Customize your actual mail command, normally sendmail
28# Input to this command is the message to send
29SENDMAILCMD=/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
34SENDMAILPARAMS="-t -f"
Note: See TracBrowser for help on using the repository browser.