Removing Forward menu option within MailFilterDialog in Convergence 1u3

I followed the directions at the bottom of the following page:
http://wikis.sun.com/display/CommSuite/Removing+Change+Password+and+Vacation+Message+Options
and successfully removed the Forward item in the Options menu, however we are wanting to disable all forwarding from within Convergence, which would also include the "Forward Message To" menu item in the MailFilterDialog widget. I know I need to create the file <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailFilterDialog.js and put the following in <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/customize.js:
// Remove the Forward Message to menu item
dojo.require("c11n.allDomain.js.widget.MailFilterDialog");but I am unsure of the code that goes into the MailFilterDialog.js file.
Thanks,
Jim

jbuitt wrote:
and successfully removed the Forward item in the Options menu, however we are wanting to disable all forwarding from within Convergence, which would also include the "Forward Message To" menu item in the MailFilterDialog widget.I seriously question the value of disabling the manual forwarding of messages... that being said you can hide the forward button by using the following customization:
Add the following to <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/customize.js
// Hide forward button in folder view
dojo.require("c11n.allDomain.js.widget.MailOpenFolder");
// Hide forward button in message view
dojo.require("c11n.allDomain.js.widget.MailOpenMessage");Create the following two files:
<app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailOpenMessage.js
dojo.provide("c11n.allDomain.js.widget.MailOpenMessage");
dojo.require("iwc.widget.MailOpenMessage");
dojo.require("dijit.form._FormWidget");
dojo.declare("iwc.widget.MailOpenMessage", iwc.widget.MailOpenMessage,
                buildRendering: function () {
                        this.inherited(arguments);
                        this["forwardButton"].domNode.style.display = "none";
                        console.debug("c11n: Hide Forward Button in Message View");
                last: ""
);<app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailOpenFolder.js
dojo.provide("c11n.allDomain.js.widget.MailOpenFolder");
dojo.require("iwc.widget.MailOpenFolder");
dojo.require("dijit.form._FormWidget");
dojo.declare("iwc.widget.MailOpenFolder", iwc.widget.MailOpenFolder,
                buildRendering: function () {
                        this.inherited(arguments);
                        this["forwardButton"].domNode.style.display = "none";
                        console.debug("c11n: Hide Forward Button in Folder View");
                last: ""
);Regards,
Shane.

Similar Messages

  • How to remove Forward/Resubmit options from UWL workitems

    Hi Folks,
    I have a requirement to remove Forward/Resubmit options from UWL workitems of the Hover menu.
    Can anyone let me know how to do it ?

    Hi Chaitanya,
    If you want to remove forward and resubmit actions for all the UWL items, it should be simple.
    Open the UWL iview and look for a property called "List of UWL actions to exclude".
    In that property enter the values "followUp" and "forward" separated by a comma.
    followUp - Resubmit
    forward - Forward
    This should remove the two actions for all the UWL items.
    Here is a help link with more info:
    [UWL Action to Exclude|http://help.sap.com/saphelp_nw04/helpdata/en/fd/8bf6d1b0484ec7ade4369792a22293/content.htm]
    If you want to remove these options for selected UWL items only, refer to this forum:
    [post|Exclude Actions from UWL using XML;
    Thanks,
    Shanti

  • Disabling or Removing Forward icon(option) from business workplace

    Hai All,
    My user is asking to remove or disable the forward icon from business workplace. Is there any config setting to do this. Please let me know how to solve this problem,
    Thanks & Regards,
    H.K.Hayath Basha.

    Hi,
    I don't know if the icon will disapear, but what you could try is that you change the autorisations for the user. Check object s_wf_wi and remove the activity 25.
    As fas as i know, the user can't forward an item.
    Also check object s_oc_role, make sure that the value isn't administrator.
    I hope it helps,
    Kind regards,
    Maarten.

  • How to remove the "Subscribe to folder" option in Convergence 1u3

    It is my understanding that there is a known bug in Messaging Server 7 which doesn't allow you to share folders across different message store hosts. We currently have a Comm Suite 7 set up with 4 multiplexors and 4 mail back ends, so this is like to crop up from within Convergence. Because of this, I would like to remove the menu option to subscribe to a folder from with the MailNavigator widget, I know that you need to add a line to:
    <app_server_docroot>/iwc_static/c11n/allDomain/js/customize.jsand then create the referenced js file, but I am unsure what code to put in it.
    Thanks!
    Jim
    Edited by: jbuitt on Feb 4, 2010 9:03 AM

    jbuitt wrote:
    kellyc wrote:
    Were distributed shared folder configured properly?
    If you telnet to port 143, login as the user (or log in as admin and proxyauth to the user), does LIST list all the shared folders?
    See [To Set Up Distributed Shared Folders|http://wikis.sun.com/display/CommSuite/Managing+Shared+Folders#ManagingSharedFolders-ToEnableorDisableListingofSharedFolders] in the Admin Guide.
    Edited by: kellyc on Feb 4, 2010 1:00 PMWow, totally missed that distributed folders doc, thanks for pointing it out! :) Implemented that and now when I telnet to port 143, I see the shared folder on the other mail store host:
    telnet mail.host.com 143
    Trying 1.2.3.4...
    Connected to mail.host.com.
    Escape character is '^]'.
    * OK [CAPABILITY IMAP4REV1 LITERAL+ SASL-IR LOGIN-REFERRALS AUTH=PLAIN STARTTLS] Messaging Multiplexor (Sun Java(tm) System Messaging Server 7.3-11.01 (built Sep  1 2009))
    A1 LOGIN user1 XXXXXXX
    A1 OK User logged in
    A2 LIST "" "*"
    * LIST (\NoInferiors) "/" INBOX
    * LIST (\HasNoChildren) "/" folder1
    * LIST (\HasNoChildren) "/" folder2
    * LIST (\HasNoChildren) "/" folder3
    * LIST (\NoInferiors) "/" "Shared Folders/User/user2/folder4"
    A2 OK Completed
    A3 LOGOUT
    * BYE LOGOUT received
    A3 OK Completed
    Connection closed by foreign host.However, when I go to shared folders in Convergence, it still doesn't show up. Is there something else I need to do?
    Thanks,
    JimOk, got my shared folders working but I still have to disable the feature because of a policy coming from higher up. Can somebody please provide the code to disable the "Subscribe to Folder" menu item?
    Also, I just noticed that the "Sharing" tab in the Folder Properties window should also be removed to have the desired effect.
    Thanks,
    Jim
    Edited by: jbuitt on Mar 12, 2010 2:43 PM

  • How do I remove the menu button? The Customize option doesn't seem to work for that.

    How do I remove the menu button? [That IChing looking three line icon on the toolbar.]
    The toolbar Customize option doesn't seem to work, and it seems a waste to have a button that duplicates the menus. I'd like to swap it out for the NoScript icon.

    Hi, ''I can't recommend that you do it'', but If you really are determined, [http://www.tweakguides.com/Firefox_12.html this article] may help.

  • How To Remove Standard CheckIn Form in CheckIn menu option list

    Hi to all.
    I need To Remove Standard CheckIn Form in CheckIn menu option list.
    I want to use only my customized profiles.
    Is there any doc or sample related.
    Thanks in advance,
    Soni

    Unfortuantely, you must create your own custom component. I'm not going to explain how to do that since that requires a lot of typing, but if/when you decide to tackle that, you will need to include this in your resource file:
    <@dynamichtml custom_finish_layout_init@>
    <$include super.custom_finish_layout_init$>
    navBuilder.deleteItem('MY_PERSONAL_CHECKINS_'+pneCheckinDocProfiles.length);
    <@end@>
    However, keep in mind this is what I use for my content server (10gR3 with CS10gR3CoreUpdate component, build 186). I have no idea what future patches may or may not have done with profile naming conventions or changes. I'm confident this will still work, but cannot be for certain.
    Good luck.
    PS. Please award points if deemed necessary

  • I use to be able to scale down objects highlted in box by clicking any corner holding down mouse and scaling down, that option is gone, is it an error on my settings or has that option been removed I now have to go to menu option click edit, then scale, a

    i use to be able to scale down objects highlted in box by clicking any corner holding down mouse and scaling down, that option is gone, is it an error on my settings or has that option been removed I now have to go to menu option click edit, then scale, and then manually have to scale down a percentage.

    Copy cat.

  • How do I hide/remove the Invite People menu option under Share in Office 2013

    We have attempted to disable all the cloud features of Office 2013 using GPOs. However, the "Invite People" menu option under Share in the Office backstage view still shows up. Is there a GPO or reg key to remove or hide this option? See image
    below.
    Thanks very much

    Please try to use the Office Custom UI Editor to hide the the "Invite People" Task.
    http://openxmldeveloper.org/blog/b/openxmldeveloper/archive/2009/08/07/7293.aspx
    The idmso is ShareWithPeople (found it from the Office document http://www.microsoft.com/en-us/download/details.aspx?id=727)
    and reference to the following blog to write the XML:
    http://blogs.msdn.com/b/vsod/archive/2013/04/05/customizing-office-2013-backstage.aspx
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Did Lion's iTunes remove the video menu options to increase size and reduce size?

    Did Lion's iTunes remove the video menu options to increase size and reduce size?
    Is the ability to shrink or expand the video window from a menu item now really gone? 

    Itunes has not changed in Lion in this regard, you can still go to fullscreen from the menu, and use your input device to make the video window larger and smaller. does that help?

  • How do I remove the "Dock" option from the Apple Dropdown Menu

    I work for a school district where I am continuosly having to go back into Mac labs and reverting the settings on the dock back to normal.  Students are changing the size, position and content of the dock, as well as hiding the dock.  These computers are used by students k-6 and the younger children are getting confused when they com in and they cannot find the dock or its not where it is supposed to be.  I have been able to lock the sizing, position and content of the dock but am not finding a way to elimante the hiding of the dock.  Preferably I would like to remove the "dock option from the Apple dropdown menu.  Please help!!!!

    This question was asked quite a while ago and the suggestion was to use Server Admin Tools, which I know nothing about. You'll have to look into that. If these Macs are running off a server, then this might work for you. I'm seeing that Server Admin Tools from Apple is still current.
    https://discussions.apple.com/thread/287704?start=0&tstart=0

  • I am not able to type anything in the address bar or click on any menu options with the browswer. The whole browser is just stuck, I cant do anything in it. It loads up fine but nothing can be done at all within the broswer.

    I am not able to type anything in the address bar or click on any menu options with the browswer. The whole browser is just stuck, I cant do anything in it. It loads up fine but nothing can be done at all within the broswer.

    Hi,
    ( I search for iChat questions when I have finished in the iChat Forum)
    So the menu bar reads iChat, File,  Edit,  View, Buddies, Video, Window and Help
    There is no Buddy List open.
    There is no other window for iChat open.
    In the iChat Menu you only have access to Status.
    Is an item ticked in the list ?
    Is this a green (Available item) or  Red ( an Away one) ?
    Can you access the Accounts option ?  (Sitll in the iChat Menu)
    Is anything in here ticked ?
    In the Window menu any Logged in account should appear in the list  (Between the Next Chat and File Transfer items)
    It would be useful to know which version of iChat this is.
    If no account is ticked (iChat Menu > Accounts) or not showing in the Window Menu, plus you cannot determine the Status and you cannot access the Preferences then you need to access your Home Folder/Library/Preferences
    As the Library in the Home Holder is Invisible in Lion you will need the Finder's Go Menu > Go to Folder option  (you can use it in earlier OS versions if you want)
    Type in:-
    ~/Library/Preferences
    Find the file called com.apple.ichat.plist
    Drag it to the Trash and Restart iChat.
    This will lose all the settings in iChat that you have changed from Defaults but there is no way around this.
    9:23 PM      Saturday; August 27, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Remove from page menu option in personalization

    Hi All,
    After clicking the Personalize link am getting new window Portal  lagunage option in the detail navigation.
    In the Page menu there are different option like remove from page, open in new window. I have selected remove from page  option and afte that whole contect area became blank.
    I want to revert the changes but am not able to do the same, because i am getting nothing in the content area, only in the detail navigation i am getting one link as Portal  lagunage. After clicking this link also am not getting any thing.
    I want to get back the language change page. i got one thread on the same but anot able to revert the changes done by me. ESS - Personilize - urgent
    Please provide solution for the issue.
    Deepak!!!

    Use the System Admin role to revert it back.
    There is a under System Admin> Support > > Portal Content Directory > Personalisation cleanup
    the required tool.
    Use Principal and enter the user.
    Regards,
    Kai

  • Is there a way to completely disable tabs (removing all tab related menu options) for firefox 10?

    Is there a way to completely disable tabs (removing all tab related menu options) for firefox 10. I hate tabs and recent changes to the menus make incorrect selection of 'open in new tab' when what I want is 'open in new window' a common and unwelcome occurrence.

    You can hide menu items and move them up / down in the menu with the Menu Editor extension. <br />
    https://addons.mozilla.org/en-US/firefox/addon/710

  • Disappearing Acrobat menu options in MS Word

    I'm using Acrobat 8.1.6 with MS Word 2003. When I open Word for a new file, the two Acrobat menu options (Adobe PDF and Acrobat Comments) appear on the main menu. As soon as I open an MS Word document, the two menu options are removed. The Convert to Adobe PDF toolbar button remains. However, without the menu option, I cannot change the conversion settings which I need to do. It only happens for some documents, so there must be some setting in the document that is affecting this, but I have been unable to find it. When I try to do the conversion from within Acrobat, when I open the Bookmarks tab of the Settings dialog, the list of MS Word heading to convert to bookmarks is empty. Any suggestions will be greatly appreciated. My customer is waiting no so patiently!

    Well, upon further investigation, I discovered that the menu options were removed when I applied a template to the Word document. I overlaid the template with another copy that I had saved elsewhere and that fixed the problem. Somehow, the template got corrupted in such a way that Distiller didn't like it. If anyone has a clue of what caused this, I would be more than intetested.

  • Disable avatar image upload option in Convergence 1u3

    I would like to be able for users to have avatar images (populated by Administrators) from within Convergence 1u3 but I do not want to allow user's to be able to upload their own image. Is it possible to disable the "Upload new avatar" and "Restore default avatar" menu items? Please note that we will be blocking external access to our IM servers to prevent users from using XMPP IM clients (i.e. Pidgin), thereby allowing them to use their own avatar images that way.
    Thanks,
    Jim

    jbuitt wrote:
    I would like to be able for users to have avatar images (populated by Administrators) from within Convergence 1u3 but I do not want to allow user's to be able to upload their own image. Is it possible to disable the "Upload new avatar" and "Restore default avatar" menu items?You can achieve this using the following customisation:
    <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/IMContacts.js
    dojo.provide("c11n.allDomain.js.widget.IMContacts");
    dojo.require("iwc.widget.IMContacts");
    dojo.declare("iwc.widget.IMContacts",
            iwc.widget.IMContacts,
                    // Remove the mouse-over add-image icon
                    postCreate: function() {
                            this.inherited(arguments);
                            this.connect(this.avatarWrapper, "onmouseover", function(evt){
                                    dojo.removeClass(this.avatarWrapper, "IMAvatar_addImage");
                    // Disable the upload/restore avatar popup
                    onClickUserAvatar: function() {
                            console.debug("c11n: Avatar upload/modification functionality disabled");
                    last: ""
    );Add the following to <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/customize.js
    // Remove the ability to upload/change the avatar
    dojo.require("c11n.allDomain.js.widget.IMContacts");Regards,
    Shane.

Maybe you are looking for

  • Open and run the VI using FP.Open from another VI

    I would like to have LabVIEW open and run the VI when I open the second VI (number 2) from VI (number 1). I set the appropriate Execution options in File»VI Properties to make both  VI run when opened but it works only for the first vi and when I ope

  • No space in available paging segments  - plenty of room on HD

    Greetings all, I'm running OS X Server 10.5.4 on a 2.8Ghz iMac with 4G of RAM. Every night my server crashes and reboots. The logs reveal the following: 11/21/08 2:12:02 AM kernel (default pager): [KERNEL]: no space in available paging segments This

  • Create a ALV report with fields editable and  entry to be saved in ztable

    Hello Experts, I have created the ALV report which has two of the fields editable. Now whenever user puts an entry in the ALV it has to be saved in the ZTABLE. The report is displayed with editable fields but i'm not sure what has to be written in th

  • Post CS5 15.0.3 update- offered 15.0.2

    Delighted to see the May 8, 2012 security fix finally available, I installed Windows version for CS5 (not 5.5). Afterward, Secunia scan reveals I am up to date and the About Illustrator lists my current version as 15.0.3. However, when running Update

  • File format differences between Illustrator CS2 and CS3

    Does anyone know the difference between the file format of Adobe Illustrator CS2 and CS3? Is there a document that documents this? Can someone send a link? The reason I am asking is that I have written a plug-in which saves the current CS3 document b