SF.net SVN: postfixadmin:[1613] trunk
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2013-12-26 14:35:09
|
Revision: 1613 http://sourceforge.net/p/postfixadmin/code/1613 Author: christian_boltz Date: 2013-12-26 14:35:02 +0000 (Thu, 26 Dec 2013) Log Message: ----------- config.inc.php: - remove unused config options: - $CONF['vacation_replytype_control'] - $CONF['vacation_allow_user_reply']; - $CONF['vacation_autoreplydelay_default'] - $CONF['vacation_intervaldelay_default'] CHANGELOG.TXT - update with vacation changes Modified Paths: -------------- trunk/CHANGELOG.TXT trunk/config.inc.php Modified: trunk/CHANGELOG.TXT =================================================================== --- trunk/CHANGELOG.TXT 2013-12-26 14:27:45 UTC (rev 1612) +++ trunk/CHANGELOG.TXT 2013-12-26 14:35:02 UTC (rev 1613) @@ -9,7 +9,6 @@ # Last update: # $Id$ -# (last real update was in r1166 - the above Id: was a minor change) Version ***svn*** - 2013/12/09 - SVN r*** ----------------------------------- @@ -40,8 +39,7 @@ - at least 2 characters - at least 2 digits - $CONF['*_struct_hook'] - make $struct in the *Handler classes customizeable - - $CONF['vacation_replytype_control'] - allow selecting vacation reply interval -******* and various other options related to this feature *********** + - $CONF['vacation_choice_of_reply'] - list of reply interval options - $CONF[domain_quota] - total quota per domain - $CONF['theme_custom_css'] - to add some custom CSS without editing the default CSS file @@ -203,48 +201,17 @@ VacationHandler: - rewrite based on PFAHandler (not useable yet) - - ------------------------------------------------------------------------ - - vacation: - - add ability to choose activation date, end date and reply interval for - vacation message -*** reply interval needs rework, -*** http://sourceforge.net/p/postfixadmin/patches/111/ + vacation message - http://sourceforge.net/p/postfixadmin/patches/111/ - vacation.pl - - encode subject - https://sourceforge.net/p/postfixadmin/bugs/272/ + vacation.pl: + - encode subject - https://sourceforge.net/p/postfixadmin/bugs/272/ , https://sourceforge.net/p/postfixadmin/patches/119/ - - - - - r1373 | GingerDog | 2012-04-19 23:55:36 +0200 (Do, 19. Apr 2012) | 1 Zeile - M /trunk/VIRTUAL_VACATION/vacation.pl - M /trunk/config.inc.php - M /trunk/model/VacationHandler.php - M /trunk/templates/vacation.tpl - M /trunk/upgrade.php - M /trunk/vacation.php - - Merge jan-kruis's vacation interval reply behaviour - see - http://sourceforge.net/p/postfixadmin/patches/111/ - - M /trunk/VIRTUAL_VACATION/vacation.pl - - add a friendly from address to vacation messages ("Vacation Service"); - probably needs more work to beautify it though...; - - change error handling if we cannot - send the reply to be hopefully more robust - + - add a friendly from address to vacation messages ($friendly_from) + - make error handling if we cannot send the reply more robust - add $smtp_client config option to specify the helo name - - added custom noreply detection + - added custom noreply detection ($noreply_pattern, $custom_noreply_pattern) - ------------------------------------------------------------------------ - Config.php - new class to store $CONF - also used to store $PALANG texts (Config::Lang()) Modified: trunk/config.inc.php =================================================================== --- trunk/config.inc.php 2013-12-26 14:27:45 UTC (rev 1612) +++ trunk/config.inc.php 2013-12-26 14:35:02 UTC (rev 1613) @@ -324,17 +324,6 @@ // 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 checked in ./templates/vacation.tpl -// YES means it show the reply option, everything else means it will not show -$CONF['vacation_replytype_control'] = 'YES'; - -// AllowUser Reply -// You can Allow or Disable User control over Reply Type -// This variable will be checked in ./templates/vacation.tpl -// YES means it show the reply option, anything else means it will not show -$CONF['vacation_allow_user_reply'] = 'YES'; - // ReplyType options // If you want to define additional reply options put them in array below. // The array has the format seconds between replies => $PALANG text @@ -348,16 +337,6 @@ 60*60 *24*7 => 'reply_once_per_week' // Reply if last autoreply was at least a week ago ); -// 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['vacation_autoreplydelay_default'] = '10'; - -// Replydelay default -// You should define default replydelay time here time in in seconds. -$CONF['vacation_intervaldelay_default'] = '86400'; // is 1 day = 60 sec * 60 min * 24 hours - // // End Vacation Stuff. // This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |