Menu

#16 Vacation: Please re-enable "vacation_text" config option

open
5
2007-11-01
2007-11-01
zwahri
No

Hi,

I really liked that feature, since it provided me with a sane way to set a default vacation text for all my users (including company signature ...), wich required only minimal customization from the user.

The patch is really simple, as far as I can see:
change rule.php, starting at line 112:

-------------------------------------------------
$rule['actions'][] = array('type'=>ACTION_VACATION,
'message'=>'',
'days'=>SmartSieve::getConf('vacation_days', 7),
addresses'=>array());
-------------------------------------------------

into:
-------------------------------------------------
$rule['actions'][] = array('type'=>ACTION_VACATION,
'message'=>SmartSieve::getConf('vacation_text', ''),
'days'=>SmartSieve::getConf('vacation_days', 7),
addresses'=>array());
-------------------------------------------------

Thanks a lot.

Discussion


Log in to post a comment.