Author |
|
rob Groupie
Joined: 03 September 2008 Location: Canada
Online Status: Offline Posts: 60
|
Posted: 03 September 2008 at 2:00pm | IP Logged
|
|
|
Hello,
We just purchased webmail pro and a couple of things have come up:
1) With the Contacts feature disabled in the admin control panel, we are still seeing the link to contacts after clicking into the Calendar section. The contacts is hidden for other screens, but shows up still when in the Calendar.
2) If an individual user that is logged in who has a few other additional POP accounts setup to check, can his email all be brought into a single set of folders? ie: 4 pop accounts to check, all incoming email goes into a single inbox? Instead of having to flip between boxes?
Thanks
Rob
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 04 September 2008 at 1:30am | IP Logged
|
|
|
Quote:
1) With the Contacts feature disabled in the admin control panel, we are still seeing the link to contacts after clicking into the Calendar section. The contacts is hidden for other screens, but shows up still when in the Calendar. |
|
|
Edit calendar.php, line ~73:
Code:
$hideContacts = (false) ? '' :
'<span class="wm_accountslist_contacts">
<a href="#" onclick="parent.HideCalendar(\'contacts\'); return false;">'.JS_LANG_Contacts.'</a>
</span>'; |
|
|
replace the block with:
Code:
$hideContacts = (!$wm_settings->AllowContacts) ? '' :
'<span class="wm_accountslist_contacts">
<a href="#" onclick="parent.HideCalendar(\'contacts\'); return false;">'.JS_LANG_Contacts.'</a>
</span>'; |
|
|
Quote:
2) If an individual user that is logged in who has a few other additional POP accounts setup to check, can his email all be brought into a single set of folders? ie: 4 pop accounts to check, all incoming email goes into a single inbox? Instead of having to flip between boxes? |
|
|
Receiving messages from different accounts into the same Inbox is not supported yet.
Best regards,
Andrew
|
Back to Top |
|
|