> Is there a per user option to turn off
message preview?
No.
> I have a user that does not want the
first message to be automatically
> previewed. Instead they would like to
be able to click the message to
> display in the preview
window.
You can change it globally so that it doesn't load the first
message automatically by editing the msgsum.html file. Find this JS function at
about line 369:
function myLoad(){
// reset
reload count, because user is obviously
active
parent.refreshCount=0
if(parent.previewFrame){
<!--IMAIL.BeginIfMsgCount.EQ
0-->
parent.previewFrame.location.href="readfail.html?blank=yes"
<!--IMAIL.ElseBeginIfMsgCount-->
parent.previewFrame.location.href="rmail.<!--IMAIL.Number-->.cgi?mbx="+MailboxLink+"&msgsort="+z
<!--IMAIL.EndBeginIfMsgCount-->
}
}
and comment-out the preview loading by changing it to this:
function myLoad(){
//
reset reload count, because user is obviously
active
parent.refreshCount=0
if(parent.previewFrame){
<!--IMAIL.BeginIfMsgCount.EQ
0-->
parent.previewFrame.location.href="readfail.html?blank=yes"
<!--IMAIL.ElseBeginIfMsgCount-->
//parent.previewFrame.location.href="rmail.<!--IMAIL.Number-->.cgi?mbx="+MailboxLink+"&msgsort="+z
<!--IMAIL.EndBeginIfMsgCount-->
}
}
-Ron
