autorespond 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # -*- Mode: sh -*-
  2. ###########################################
  3. # Autoresponder settings
  4. ###########################################
  5. # Autorespond if the recipient is in the Cc field
  6. AUTORESPOND_CC=0
  7. # Autorespond if the recipient is in the Bcc field
  8. AUTORESPOND_BCC=0
  9. # Autorespond if the recipient is not in any of To, Cc or Bcc
  10. # (i.e. received the message through a distribution list)
  11. AUTORESPOND_NORECIP=0
  12. # Only send reply to same e-mail address once per 24 hours
  13. TIMELIMIT=$[24*60*60]
  14. BASE_PATH=/var/lib/kopano/autorespond
  15. # File which contains where vacation message was sent
  16. SENDDB=$BASE_PATH/vacation-$USER.db
  17. # Tempfile containing message that will be send
  18. SENDDBTMP=$BASE_PATH/vacation-$USER-$$.tmp
  19. # Customize your actual mail command, normally sendmail
  20. # Input to this command is the message to send
  21. SENDMAILCMD=/usr/sbin/sendmail
  22. # Additional parameters for the $SENDMAILCMD
  23. # The last parameter added to the $SENDMAILCMD is $FROM,
  24. # so take that into account for the $SENDMAILPARAMS
  25. SENDMAILPARAMS="-t -f"