Author |
|
duplo1 Newbie
Joined: 24 January 2008 Location: Canada
Online Status: Offline Posts: 2
|
Posted: 26 May 2008 at 8:25pm | IP Logged
|
|
|
Is there a possibility to leave webmail open and to retrieve new emails automatically, e.g. after 3 minutes, without having to click th CHECK MAIL button ???
Please advise.
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 27 May 2008 at 1:34am | IP Logged
|
|
|
This is not supported yet.
Best regards,
Andrew
|
Back to Top |
|
|
ash.eldritch Newbie
Joined: 02 January 2009 Location: Japan
Online Status: Offline Posts: 9
|
Posted: 07 January 2009 at 7:13pm | IP Logged
|
|
|
The easiest way to do this is to add the following line to the bottom of webmail.aspx, right after the WebMail.DataSource.Get...
setInterval(function() { WebMail.Screens[1]._checkMail.Start() }, 180000);
...This will check every three minutes. It's a bit of a hack, as there may be no guarantee that Screens[1] will always be the right screen, so it should find the right screen more intelligently. The interval should also be reset if the user checks mail manually, which would involve modifying the BuildToolBar function in screen.messages-list.js. If anyone gets around to doing this or any other improvements please post them here.
Cheers
Ash
|
Back to Top |
|
|