Author |
|
x5000 Newbie
Joined: 24 February 2013
Online Status: Offline Posts: 1
|
Posted: 24 February 2013 at 4:02pm | IP Logged
|
|
|
Hello,
I am using After Logic Lite web mail system and I would like to remove following items:
1) How to remove "New message" and all REPLY items, i don't want to users to send email just to receive emails for information
2) How to remove "Subject" from emails received, no users will be able to see Subject at all
3) How to remove Sent, Draft folders
Any help would be welcomed.
Thank you in advance,
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 24 February 2013 at 11:14pm | IP Logged
|
|
|
Standard way of hiding interface elements in WebMail is to assign them 'wm_hide' CSS class. You'll need to check through the code, locate where the specific element is created, and modify a class assigned to it.
As for modifying default folders, there's a plugin for that, find it under example/plugins/change-default-folders directory. Copy PHP file there so that it's located at data/plugins/change-default-folders/index.php and enabl the plugin in data/settings/config.php by adding a following line to array defined there:
Code:
'plugins.change-default-folders' => true, |
|
|
Once done, modify the plugin code and supply a list of folders you require, with their matching actual names on IMAP server.
If you'd like to request developers' assistance in terms of paid consultancy service, please contact us.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|