Author |
|
xyzvisual Newbie
Joined: 22 October 2010
Online Status: Offline Posts: 10
|
Posted: 27 July 2011 at 8:27am | IP Logged
|
|
|
I'm programming from another application that moves messages and let me know if I can refresh the message list when you click a folder.
The emails are well motivated.
If I order the messages appear new messages moved by the third application.
Thank you very much in advance and sorry for my English.
Jabier.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 28 July 2011 at 12:46am | IP Logged
|
|
|
Is my understanding correct that this is about clicking the current folder in folders list? And if yes, please confirm whether this is about ASP.NET or PHP version of WebMail Pro 6. I don't promise anything but I'll check with the developers, maybe there's an easy fix.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 28 July 2011 at 1:31am | IP Logged
|
|
|
By the way, I believe the effect you are speaking of is achieved by clicking Check Mail button. Is there any reason why that doesn't suit you?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
xyzvisual Newbie
Joined: 22 October 2010
Online Status: Offline Posts: 10
|
Posted: 28 July 2011 at 1:56am | IP Logged
|
|
|
Thank you very much for the quick response.
I am using the ASP version.
The function of checking the mail does not refresh the list and not the moved items are programatically.
Thanks again, Jabier.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 28 July 2011 at 2:09am | IP Logged
|
|
|
Quote:
I am using the ASP version. |
|
|
ASP.NET version, maybe? We don't have ASP version for a long while.
Anyway, I'm not sure I understand the problem. Are you saying that checking mail does not refresh the folder? And if you log out and then log in, or just press Ctrl-R or Ctrl-F5, is the folder refreshed properly?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
xyzvisual Newbie
Joined: 22 October 2010
Online Status: Offline Posts: 10
|
Posted: 28 July 2011 at 2:18am | IP Logged
|
|
|
Yes, sorry, was the ASP.NET version.
When I enter again or refresh the page, the messages appear. Also when I order a folder.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 28 July 2011 at 2:29am | IP Logged
|
|
|
Thanks for the clarification. We'd like to have this investigated, and we need some more information for this:
1. Please confirm this is about current 6.2.* release, you can check the product version number as shown here.
2. Please confirm this was a fresh install, not the upgrade from previous versions.
3. If you navigate to some other folder, and then get back - is the folder contents updated?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
xyzvisual Newbie
Joined: 22 October 2010
Online Status: Offline Posts: 10
|
Posted: 28 July 2011 at 2:36am | IP Logged
|
|
|
I answer
1 .- my webmail version is the lite
2 .- It is a clean installation
3 .- And no, not cool when I change folder and back again
Thank you very much again.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 28 July 2011 at 2:47am | IP Logged
|
|
|
Quote:
my webmail version is the lite |
|
|
The thread is created in wrong section then. We'd highly appreciate if you check whether the issue occurs in Pro version as well.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
xyzvisual Newbie
Joined: 22 October 2010
Online Status: Offline Posts: 10
|
Posted: 28 July 2011 at 3:23am | IP Logged
|
|
|
I do not think it's a isue, it is something specific work derived from my external webmail.
The webmail works fine, but I wish I could do what I mention as an "extra" to the core
I do not know if I explain it, apologize for having posted in the wrong forum.
Try what I say is possible in the latest version. At runtime you move a message folder, for example the Sent Items folder 8 to 10 Backup and disrupts the message in the database to point to the new folder. Once done you can coprobar refreshments in the webmail folders.
I'll check as soon as possible.
Greetings, Jabier.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 28 July 2011 at 3:35am | IP Logged
|
|
|
Just wanted to let you know that in current WebMail Pro release, messages are not synced with a database, Direct Mode is used. In Lite, however, other options are still available. Anyway, we certainly allow the source code modifications so you can modify the product to make sure it works as you expect it to. And if you're interested in commercial-level support, consider using WebMail Pro instead.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
xyzvisual Newbie
Joined: 22 October 2010
Online Status: Offline Posts: 10
|
Posted: 28 July 2011 at 5:21am | IP Logged
|
|
|
Thanks very much Igor.
|
Back to Top |
|
|
xyzvisual Newbie
Joined: 22 October 2010
Online Status: Offline Posts: 10
|
Posted: 29 July 2011 at 7:19am | IP Logged
|
|
|
Y find a workarround.
iN FILE /js/mail/message-list-prototype in the function CreateFolderClickFunc near line 45 put this:
Code:
function CreateFolderClickFunc(id, fullName, obj, element) {
return function() {
obj.FolderClick(id, fullName, element);
var xmlStr = '<param name="id_acct" value="'+WebMail._idAcct+'"/><param name="page" value="1"/><folder id="'+id+'"><full_name><![CDATA['+fullName+']]></full_name></folder><look_for fields="0"><![CDATA[]]></look_for>';
var Loader = new CNetLoader;
RequestHandler("get","messages", xmlStr);
return false;
};
} |
|
|
|
Back to Top |
|
|