Update of /cvsroot/popfile/engine
In directory sc8-pr-cvs1:/tmp/cvs-serv15887
Modified Files:
popfile.pl
Log Message:
The History tab button no longer forces a history cache reload greatly improving performance when no new mail has been received, the proxy modules tell the UI that the history cache is invalid through the history_invalid flag which is now set by POP3
Index: popfile.pl
===================================================================
RCS file: /cvsroot/popfile/engine/popfile.pl,v
retrieving revision 1.201
retrieving revision 1.202
diff -C2 -d -r1.201 -r1.202
*** popfile.pl 17 Feb 2003 22:18:25 -0000 1.201
--- popfile.pl 21 Feb 2003 18:36:23 -0000 1.202
***************
*** 293,300 ****
}
! # All proxies need access to the classifier
foreach my $name (keys %{$components{proxy}}) {
$components{proxy}{$name}->{classifier} = $components{classifier}{classifier};
}
--- 293,301 ----
}
! # All proxies need access to the classifier and the UI
foreach my $name (keys %{$components{proxy}}) {
$components{proxy}{$name}->{classifier} = $components{classifier}{classifier};
+ $components{proxy}{$name}->{ui} = $components{ui}{html};
}
|