Author |
|
bayronpantoja Newbie
Joined: 19 January 2013 Location: Colombia
Online Status: Offline Posts: 24
|
Posted: 02 May 2013 at 12:30pm | IP Logged
|
|
|
Good afternoon, I wonder if you can increase the interval the webmail saved draft messages, and it very often and writing a single message can easily save 10 drafts of it.
Thank you for your help.
Greetings, Bayron
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 02 May 2013 at 10:18pm | IP Logged
|
|
|
Locate the following code in js/mail/new-message-screen.js file (lines ~812-818):
Code:
if (WebMail.Settings.bAutoSave) {
this._iAutoSaveTimer = setInterval((function (obj) {
return function () {
obj.saveChanges(AUTO_SAVE_MODE);
};
})(this), 60000);
} |
|
|
As you can see, the interval supplied there is 60000 milliseconds, or 60 seconds, and you can certainly change it to some other value. Be sure to clear browser cache to apply changes.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
bayronpantoja Newbie
Joined: 19 January 2013 Location: Colombia
Online Status: Offline Posts: 24
|
Posted: 11 May 2013 at 7:40am | IP Logged
|
|
|
Ok, many thanks for response, was a big help for me.
--
Regards Bayron.
|
Back to Top |
|
|