In command_delete_old.pl you can
try changing the line:
my $deldate = $in{DELETEDATE};
to
my ($ss,$mi,$hh,$dd,$mm,$yy,$wd,$yd,$dst) = localtime(time+$localtime_offset);
$month = &LZ($mm+1);
$year = $yy+1900;
$date = &LZ($dd);
$current_date = $year.$month.$date;
my $deldate = $in{DELETEDATE} | | $current_date;
This forum adds a space between | |. Make sure you remove that added space.
This is untested so use at your own risk. Always keep a backup or original files.
Dan O.
------------------