[ postfixadmin-Patches-3181465 ] vacation and autoreply
Brought to you by:
christian_boltz,
gingerdog
|
From: SourceForge.net <no...@so...> - 2011-02-15 00:11:55
|
Patches item #3181465, was opened at 2011-02-15 01:07 Message generated for change (Comment added) made by jan-kruis You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=3181465&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: J.Kruis (jan-kruis) Assigned to: Nobody/Anonymous (nobody) Summary: vacation and autoreply Initial Comment: This patch allow the admin to select three type of vacation message one reply reply after delay time autoreply The admin of a domain can give the users of that domain the right to change the setting of the vacation type or not. If this function is used is set by $conf [allow_user_reply] other default setting are put in config.inc.php or config.local.php ---------------------------------------------------------------------- >Comment By: J.Kruis (jan-kruis) Date: 2011-02-15 01:11 Message: // Vacation Control // If you want users to take control of vacation set this to 'YES'. $CONF['vacation_control'] ='YES'; // Vacation Control for admins // Set to 'YES' if your domain admins should be able to edit user vacation. $CONF['vacation_control_admin'] = 'YES'; // Alllow ReplyType Control // This varible will be check in ./templates/vacation.tpl if it should enable this option // YES mains it show the reply option everthing els mains it will not show $CONF['replytype_control'] = 'YES'; // AllowUser Reply // You can Allow or Disable User to contole over Reply Type // This varible will be check in ./templates/vacation.tpl if it should enable this option // YES mains it show the reply option everthing els mains it will not show $CONF['allow_user_reply'] = 'YES'; // RepleyType options // If you want to define additional reply options put them in array below. $CONF['choice_of_reply'] = array ( 'One Reply', // Sends only Once the message during Out of Office 'Auto Reply', // Reply on every email but not within autoreplydelay 'Interval Reply' // Reply on every email but not within repldelay_default ); // ReplyType default // You should define default replytype. It must be in array above. $CONF['replytype_default'] = 'One Reply'; // autoreplydelay // You should define autodefaultdelay is seconds // if a new message comes in within this delay it most likely that that the sender is // autoreplying on our autoreply message. $CONF['autoreplydelay_default'] = '100'; // Replydelay default // You should define default replydelay time here time in in seconds. $CONF['intervaldelay_default'] = '86400'; // is 1 day = 60 sec * 60 min * 24 hours ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937966&aid=3181465&group_id=191583 |