Author |
|
MLH Newbie
Joined: 25 February 2009 Location: United States
Online Status: Offline Posts: 4
|
Posted: 10 March 2009 at 12:40pm | IP Logged
|
|
|
I am currently evaluating the Pro version.
The biggest problem I'm having is that it
doesn't show the users how much of their quota
they are using. Is there something I'm
missing? I'm using this on a cPanel server
where the email accounts are already created.
I have DWmail running and it displays the
quota but their support is horrible and I
would like to switch!
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 11 March 2009 at 7:59am | IP Logged
|
|
|
Apparently, you mean displaying quota in user list in admin area. This is not supported yet, but we can implement it for you in terms of a custom project. If you're interested in this, please submit your request through this form.
Best regards,
Andrew
|
Back to Top |
|
|
MLH Newbie
Joined: 25 February 2009 Location: United States
Online Status: Offline Posts: 4
|
Posted: 11 March 2009 at 9:52am | IP Logged
|
|
|
Hi Andrew and thanks for the reply.
Nope, I meant on the user's side in the
webmail. No where does a used amount of quota
display.
|
Back to Top |
|
|
MLH Newbie
Joined: 25 February 2009 Location: United States
Online Status: Offline Posts: 4
|
Posted: 11 March 2009 at 4:31pm | IP Logged
|
|
|
I'm a little closer now. I see that I can enable quotas within the admin section, then modify each individual user's quota according to what I have it set in cPanel.
It would be nice if it could read the cPanel settings automatically.
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 12 March 2009 at 6:40am | IP Logged
|
|
|
Thanks for the suggestion. We're planning to implement cPanel integration module in subsequent releases of the product and your opinion in this regard is very important for us.
Best regards,
Andrew
|
Back to Top |
|
|
maxxiv1 Newbie
Joined: 28 April 2017 Location: Poland
Online Status: Offline Posts: 26
|
Posted: 01 May 2017 at 10:41am | IP Logged
|
|
|
Does this option already work?
In my account the total disk capacity of the server is displayed.
In cPanel this account is limited to 500 MB
Please help.
Best regards!
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 02 May 2017 at 2:16am | IP Logged
|
|
|
Problem with cPanel is that IMAP server there returns multiple quota values, while WebMail expects just one.
We've created a workaround for this kind of situations. In libraries/MailSo/Imap/ImapClient.php file, locate the lines:
Code:
...
&& 'STORAGE' === \strtoupper($oImapResponse->ResponseList[3][0])
&& \is_numeric($oImapResponse->ResponseList[3][1])
&& \is_numeric($oImapResponse->ResponseList[3][2]) |
|
|
and insert right after those:
Code:
&& (($aReturn[0]==0)&&($aReturn[1]==0)) |
|
|
This code will ensure that, if multiple quota responses are returned by IMAP server, the first non-zero one will be used.
Hope this helps.
Note that, even though we consider this situation a non-standard one, we will probably be including the patch to future releases at some point.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
maxxiv1 Newbie
Joined: 28 April 2017 Location: Poland
Online Status: Offline Posts: 26
|
Posted: 04 May 2017 at 11:10pm | IP Logged
|
|
|
It works!
Thank You very very very much!
Best regards!
|
Back to Top |
|
|