Author |
|
sbparker31 Newbie
Joined: 31 January 2011 Location: United States
Online Status: Offline Posts: 13
|
Posted: 31 January 2011 at 8:23am | IP Logged
|
|
|
Is it possible to hide the settings/logout links in the upper right of the WebMail screen? I am running WebMail within another web app, and I don't want users to have access to these functions.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 31 January 2011 at 8:27am | IP Logged
|
|
|
I could possibly provide some guidelines on this, but I need to know the exact version number
you're running, and whether this is PHP or ASP.NET one.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
sbparker31 Newbie
Joined: 31 January 2011 Location: United States
Online Status: Offline Posts: 13
|
Posted: 31 January 2011 at 9:12am | IP Logged
|
|
|
Oh, sorry.
I am running ASP.net , version 5.0
Steve
|
Back to Top |
|
|
sbparker31 Newbie
Joined: 31 January 2011 Location: United States
Online Status: Offline Posts: 13
|
Posted: 31 January 2011 at 9:15am | IP Logged
|
|
|
Also, I should ask, since I will be disallowing users from settings, where do I hardcode the settings -- I am aware you can't set the settings at the admin level.
Steve
|
Back to Top |
|
|
sbparker31 Newbie
Joined: 31 January 2011 Location: United States
Online Status: Offline Posts: 13
|
Posted: 31 January 2011 at 4:48pm | IP Logged
|
|
|
Sorry again, I am running ASP.NET latest version, 5.1.4
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 01 February 2011 at 5:16am | IP Logged
|
|
|
You'll need to make a couple of simple modifications in js/common/webmail.js file.
1. Line 679:
Code:
this._settingsTab.className = (window.Seporated) ? 'wm_hide' : 'wm_accountslist_settings'; |
|
|
should be modified as follows:
Code:
this._settingsTab.className = 'wm_hide'; |
|
|
2. Line 1534:
Code:
div.className = (window.Seporated) ? 'wm_hide' : 'wm_accountslist_logout'; |
|
|
modified as follows:
Code:
div.className = 'wm_hide'; |
|
|
The bigger part of default account settings is defined in App_Code/Account.cs file, it actively
uses default values supplied in App_Data/settings/settings.xml file. And if you're looking for
default synchronization mode used for folders, see App_Code/Folder.cs file.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
sbparker31 Newbie
Joined: 31 January 2011 Location: United States
Online Status: Offline Posts: 13
|
Posted: 01 February 2011 at 3:27pm | IP Logged
|
|
|
That worked like a charm. Thanks Igor!
Steve
|
Back to Top |
|
|
wmprofan Newbie
Joined: 24 August 2010
Online Status: Offline Posts: 20
|
Posted: 01 February 2011 at 3:40pm | IP Logged
|
|
|
Igor wrote:
The bigger part of default account settings is defined in App_Code/Account.cs file, it actively uses default values supplied in App_Data/settings/settings.xml file. And if you're looking for
default synchronization mode used for folders, see App_Code/Folder.cs file.
|
|
|
What are the equivalents of these files in the PHP version 5?
When do you think version 6 will be out?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 02 February 2011 at 1:40am | IP Logged
|
|
|
Quote:
What are the equivalents of these files in the PHP version 5? |
|
|
For PHP version, you'll only need common/class_account.php, default folder sync is defined in
GetDefaultFolderSync function there.
Quote:
When do you think version 6 will be out? |
|
|
I believe we're all set to release it within next few hours.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 02 February 2011 at 7:31am | IP Logged
|
|
|
...And it's out!
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
wmprofan Newbie
Joined: 24 August 2010
Online Status: Offline Posts: 20
|
Posted: 02 February 2011 at 3:15pm | IP Logged
|
|
|
Nice new features like Save and Print, but a bit rough on the edges at this time. Calendar don't seem to be loading (at least for me - and yes, it is enabled in domain settings), Print needs a bit more work to simulate exactly what's on screen, Switch to full reply mode is not carrying over the message details being replied to... I will keep testing while still using v5 on the production server.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 02 February 2011 at 10:20pm | IP Logged
|
|
|
Quote:
Calendar don't seem to be loading (at least for me - and yes, it is enabled in domain settings) |
|
|
The first thing to try is cleaning web browser cache. Does it help? If it doesn't, could you please describe in
more detail what exactly isn't working?
What browser do you use? Is there anything relevant in error log file?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
wmprofan Newbie
Joined: 24 August 2010
Online Status: Offline Posts: 20
|
Posted: 03 February 2011 at 4:35am | IP Logged
|
|
|
Calendar working fine now, thanks.
Are there no mail filters / rules in v6?
Creating and managing additional identities per user also seem to have been removed from both the adminpanel and user's settings in webmail.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 03 February 2011 at 7:16am | IP Logged
|
|
|
Quote:
Are there no mail filters / rules in v6? |
|
|
They're there for POP only.
Quote:
Creating and managing additional identities per user also seem to have been removed from both the adminpanel and
user's settings in webmail. |
|
|
Check if you have Allow users to add external mailboxes option ticked for the domain under WebMail settings tab.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
toofewacres Newbie
Joined: 15 February 2011 Location: United States
Online Status: Offline Posts: 4
|
Posted: 17 February 2011 at 9:16am | IP Logged
|
|
|
I have the same question about "Allow users to add external mailboxes". I have the
option turned on, but I do not find a way to add the external source in the user's
webmail
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 17 February 2011 at 8:57pm | IP Logged
|
|
|
Quote:
I have the same question about "Allow users to add external mailboxes". I have the option turned on,
but I do not find a way to add the external source in the user's webmail |
|
|
I don't think I get the idea of the question, could you please elaborate?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
sanda Newbie
Joined: 04 July 2013
Online Status: Offline Posts: 2
|
Posted: 04 July 2013 at 11:37am | IP Logged
|
|
|
Please can you provide me the a detailed step-by-step process to do the following:
1. to hide Email Account Settings,
2. to display only Password change in Settings.
I'm on a shared Linux Hosting with PHP back-end.
Please do help me with this.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 05 July 2013 at 12:17am | IP Logged
|
|
|
Quote:
1. to hide Email Account Settings |
|
|
That can be done using configuration in AdminPanel, see "Allow users to access account settings" option.
Quote:
2. to display only Password change in Settings. |
|
|
Password change is not available in WebMail out of the box, unless you're using POPPASSD plugin.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|