Convergence Customization

I need to customize Convergence.
I have a laundry list of things to do.
I thought I would start with something simple. I need to remove "Reply-to Address" from the "Options->Mail->Account Settings". I don't want users to see that option.
I have read the http://wikis.sun.com/display/CommSuite/Convergence+1.0+Documentation but some things are over my head.

karl.rossing wrote:
I thought I would start with something simple. I need to remove "Reply-to Address" from the "Options->Mail->Account Settings". I don't want users to see that option.
I have read the http://wikis.sun.com/display/CommSuite/Convergence+1.0+Documentation but some things are over my head.
The documentation does require a few read-throughs to get an idea on what's going on. It also helps to look at the c11n_sample code. After a bit of trial-error I was able to customise convergence to get rid of the reply-to option (never looked at it before this morning).
In this case I used "approach 1" as discussed in the following document as I couldn't think of a good way to change the html using js dom calls:
http://wikis.sun.com/display/CommSuite/Customizing+Convergence+-TechnicalOverview
To get started you need to enable customisations as per the documentation:
./iwcadmin -u <admin uid> -w <admin password> -o client.enablecustomization -v true
I created the following under the <appserver domain root>/docroot/iwc_static/
c11n/
c11n/allDomain
c11n/allDomain/js
c11n/allDomain/js/widget
c11n/allDomain/js/widget/templates
c11n/allDomain/js/widget/templates/OptionsViewerMailPersonalNewTemplate.html
c11n/allDomain/js/widget/OptionsViewerMailPersonalNewTemplate.js
c11n/allDomain/js/customize.js
c11n/config.jsc11n/config.js contains the following:
dojo.provide("c11n.config");
c11n.config = {
        // allDomain configuration
        allDomain: {
                module: "allDomain",           // module name
                themeEnabled: false,           // true if theme is customized
                i18nEnabled: false,            // true if i18n is customized
                jsEnabled: true                // true if js is customized
                // the last entry must not end with comma
}c11n/allDomain/js/customize.js contains the following:
dojo.provide("c11n.allDomain.js.customize");
// The widget OptionsViewerMailPersonalNewTemplate shows how to change the Options UI to remove
// the reply-to option  by using the dojo template. However, this can have
// problems if the base OptionsViewerMailPersonal template is changed.
dojo.require("c11n.allDomain.js.widget.OptionsViewerMailPersonalNewTemplate");c11n/allDomain/js/widget/OptionsViewerMailPersonalNewTemplate.js
dojo.provide("c11n.allDomain.js.widget.OptionsViewerMailPersonalNewTemplate");
dojo.require("iwc.widget.OptionsViewerMailPersonal");
// redeclare the OptionsViewerMailPersonal using dojo.declare, any other way will have problems
// because the this.inherited is looking for a signature
// variable nom is created for each dojo.declare function. It will throw an
// exception if the derived method doesn't have nom.
dojo.declare("iwc.widget.OptionsViewerMailPersonal", iwc.widget.OptionsViewerMailPersonal, {
        // templatePath is merged as templateString iwc.widget.OptionsViewerMailPersonal, reset it to empty string
        templateString: "",
        templatePath: dojo.moduleUrl("c11n.allDomain.js.widget", "templates/OptionsViewerMailPersonalNewTemplate.html"),
        postCreate: function() {
                // invoke the original postCreate()
                this.inherited(arguments);
        last: ""
});c11n/allDomain/js/widget/templates/OptionsViewerMailPersonalNewTemplate.html is a copy of the original OptionsViewerMailPersonal.html file from <appserver domain root>/docroot/iwc_static/js/iwc/widget/templates but with the following changes to remove the reply-to option:
*** OptionsViewerMailPersonal.html      Fri Jul  4 23:37:57 2008
--- OptionsViewerMailPersonalNewTemplate.html  Sat Jul  5 01:31:08 2008
*** 52,70 ****
                                                                                        <div dojoAttachPoint="senderEmail"><//div>
                                                                                </td>
                                                                        </tr>
!                                                                       <tr>
!                                                                               <td style='vertical-align:top; padding-right:5px'>
!                                                                                       <label class="optionLabel" for="replyTo" style="margin-right:5px">${l10n.options_reply}</label>
!                                                                               </td>
!                                                                               <td>
!                                                                                       <input  type="text"
                                                                                                dojoAttachPoint="replyTo"
                                                                                                class="optionInputText"
                                                                                                id="replyTo"
                                                                                                dojoAttachEvent="onkeyup: checkChanges"
                                                                                        />
-                                                                               </td>
-                                                                       </tr>
                                                                        <tr>
                                                                                <td style='vertical-align:top; padding-right:5px'>
                                                                                        <label class="optionLabel">${l10n.options_signature_label}</label>
--- 52,63 ----
                                                                                        <div dojoAttachPoint="senderEmail"><//div>
                                                                                </td>
                                                                        </tr>
!                                                                                       <input  type="hidden"
                                                                                                dojoAttachPoint="replyTo"
                                                                                                class="optionInputText"
                                                                                                id="replyTo"
                                                                                                dojoAttachEvent="onkeyup: checkChanges"
                                                                                        />
                                                                        <tr>
                                                                                <td style='vertical-align:top; padding-right:5px'>
                                                                                        <label class="optionLabel">${l10n.options_signature_label}</label>Hopefully this will help with the rest of your "laundry list".
Regards,
Shane.

Similar Messages

  • No convergence customization after upgrade to 1.0-12.01

    Hi,
    I'm a bit confused about convergence customization. We made the c11n customizations explained in the Quick Start Guide (http://wikis.sun.com/display/CommSuite/Convergence+Customization+Quick+Start+Guide). We changed the header logo and the colors by creating a new theme.
    After patching convergence to 1.0-12.01 the customizations disappeared.
    I checked the client.enablecustomization variable which is correctly set to true.
    Also, the c11n parameter appears in the URL (https://webmail.company.de/iwc_static/layout/login.html?lang=de-de&12.01_213623&svcs=abs,mail,calendar,c11n) of the login page, but never after logging in.
    Any suggestions?
    Regards,
    Ruediger

    Hi Shane,
    I think we ran convergence 1.05-xx before the upgrade.
    I don't see any buttons for themes because we removed the ability to choose other themes besides ours.
    The c11n directory exists and here is the config.js:
    dojo.provide("c11n.config");
    c11n.config = {
            // allDomain configuration
            allDomain: {
                    module: "allDomain",            // module name
                    themeEnabled: true,             // true if theme is customized
                    i18nEnabled: true,              // true if i18n is customized
                    jsEnabled: true                 // true if js is customized
                    // the last entry must not end with comma
            // replace sample.com for each domain configuration, change
            // domain name example.com to example_com for javascript syntax and url
    syntax
            example_com: {
                    module: "example_com",  // module name
                    themeEnabled: false,     // true if theme is customized
                    i18nEnabled: false,      // true if i18n is customized
                    jsEnabled: false        // true if js is customized
                    // the last entry must not end with comma
    }Best Regards,
    Ruediger

  • Comm Express + convergence customization

    Hello,
    I have convergence installed on Solaris 10 x86.
    I have customized the URLs for Communication Express access for the multiple domains so that users can login with only their ID. ( referred UWC customization guide for 6.3).
    I have
    /var/opt/sun/comms/ce/webmail/test1.com
    fe2 # ls
    en       imx      main.js  util.jsI found that it is showing the address book and options tab, however not mail tab. ( Calendar is not installed).
    I checked http log it says while login
    [dae : time ] fe2 httpd[15915]: Account Notice: badlogin: [IP:35310] proxy admin [email protected] domain=test1.com: user not found
    [date : time] fe2 httpd[15915]: Account Notice: close [IP:35310] [unauthenticated] date : time
    [date : time] fe2 httpd[15915]: Account Notice: close [127.0.0.1:35312] [unauthenticated] date: timedo I need to set proxy admin for this domain also? or Am I missing some files?
    With Normal URL there is no problem with the same url.
    Now I want to provide the different login screen to each domain with customization and need.
    Where could I place those login pages and images etc...? any documentation which is having this?
    I am also going to do the same customization on IWC alos.
    Login URL specific to domain.
    and login page.
    any documentation on this?
    Thanks and Regards,
    Sumant.
    Edited by: mr.chhunchha on Sep 9, 2008 5:42 PM

    mr.chhunchha wrote:
    I found that it is showing the address book and options tab, however not mail tab. ( Calendar is not installed).
    I checked http log it says while login
    [dae : time ] fe2 httpd[15915]: Account Notice: badlogin: [IP:35310] proxy admin [email protected] domain=test1.com: user not found
    [date : time] fe2 httpd[15915]: Account Notice: close [IP:35310] [unauthenticated] date : time
    [date : time] fe2 httpd[15915]: Account Notice: close [127.0.0.1:35312] [unauthenticated] date: timedo I need to set proxy admin for this domain also? or Am I missing some files?Make sure that you have fully qualified the webmail.proxyadmin user in the uwcconfig.properties file. For example instead of:
    webmail.proxyadmin=adminUse:
    webmail.proxyadmin=[email protected] need to restart the webserver instance hosting UWC/CE after making the above modification.
    Now I want to provide the different login screen to each domain with customization and need.
    Where could I place those login pages and images etc...? any documentation which is having this?For UWC/CE refer to the following documentation:
    http://docs.sun.com/app/docs/doc/819-4440/abzco?a=view
    http://docs.sun.com/app/docs/doc/819-4441/acwdy?a=view
    "Domain Customization Based on URL"
    I am also going to do the same customization on IWC alos.
    Login URL specific to domain.
    and login page.
    any documentation on this?It isn't currently possible. There is an RFE (request for enhancement) open already to add this functionality in a future version:
    RFE #6743365 - "Provide mechanism to allow for per-domain customized login pages based on login URL"
    Please contact your Sun Account Manager to get this RFE pushed with product management if you require this functionality.
    Regards,
    Shane.

  • Convergence customization problem

    Hi,
    We are trying to evaluate Sun communication 6.
    for customization of Convergence i am executing the following command and i am getting an error.
    ./iwcadmin -u admin -w password -p 80 -o client.enablecustomizat ion -v true
    SEVERE: Unable to connect to the server. Failed to retrieve RMIServer stub: javax.naming.CommunicationException [Root exception is java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
            java.io.EOFExceptionWhat may be the cause?
    Thanks for any help.

    hello,
    try this one...i think port might not require...
    ./iwcadmin -u <admin uid> -w <admin password> -o client.enablecustomization -v true
    regards,
    sumant

  • Convergence Customization - Deactivation Closing Confirmation message

    Hello,
    i would like to know if it is possible to deactivate the popup message window asking the user confirmation to close Convergence at the risk of losing the session.
    Thank you for your help

    PierB wrote:
    i would like to know if it is possible to deactivate the popup message window asking the user confirmation to close Convergence at the risk of losing the session.Refer here:
    http://forums.sun.com/thread.jspa?threadID=5399203&messageID=10774169
    Regards,
    Shane.

  • Customizing Convergence 2 (patch 1) - From address

    I am looking for some help on customizing something specific in Convergence 2. It is not documented in the Convergence Customization Guide on the Oracle Wiki for CommSuite (http://wikis.sun.com/display/CommSuite/Convergence+2+Customization+Guide).
    I would like to be able to disable the "From" feature that becomes enabled in Options after creating a new message. This option only appears when there are multiple Identities (Local Account + any more). The new Identities get created each time an External Account is created.
    I have found how to disable the ability to add an External Accounts entirely but this is a bit too extreme for what I want to accomplish.
    Also this (http://wikis.sun.com/display/CommSuite/Customization+Example+-DisablingIdentity+Settings+in+Convergence+2) just prevents users from editing the Identity values. But they still get created when an External Account is created.
    I think what I am looking to change is contained in js/iwc/widget/mail/CreateMessage.js .. somewhere around this code
    //senderId
    dojo.forEach(iwc.userPrefs.senderidentities.identity, function(id) {
    var label = '&lt;' + id.email + '&gt;';
    if (id.displayname)
    label = '\"' + id.displayname + '\" ' + label;
    this.senderId.addOption({"label": label, "value": id.identityname});
    }, this);
    I am not a dojo guru and so need a little help on what changes to make to c11n/allDomain/js/customize.js and then c11n/allDomain/js/widget/CreateMessage.js
    Solaris X86_64 running Convergence 2-1.01.
    Application server GlassFish Enterprise Server v2.1.1 Patch10
    Oracle Communications Messaging Exchange Server 7u4-21.01 64bit
    Edited by: kmac on Oct 27, 2011 1:21 PM

    Oracle has created a customization guide for my specific needs:
    http://wikis.sun.com/display/CommSuite/Customization+Example+-RestrictingOutgoing+Mail+by+Only+Allowing+Local+Account+Identity+Parameters

  • Can I add additional fields to filtering on in convergence or commExpress?

    I have just installed Communications Suite 6 for evaluation, primarily interested in the Messaging Server. In Convergence and Communications Express, mail can be filter based on text in the sender, subject, to, cc headers or message size. Is it possible to add headers for filtering? We would be using Mimedefang/Spamassassin to rate SPAM, and adding an "X-SPAM-Level" header with the rating result. We would like our users to be able to filter mail based on that header line.
    Thanks

    dpalix2 wrote:
    Thanks for your suggestion, but I'd like to leave the filtering to my users, so I'd rather not employ a systemwide solution. What I'm hoping for is a configuration option that will add other fields to the Convergence and/or COmmunications Express drop down menu.You can add an additional "X-Spam" header check to Convergence by using the following customization:
    c11n/config.js
    dojo.provide("c11n.config");
    c11n.config = {
            // allDomain configuration
            allDomain: {
                    module: "allDomain",           // module name
                    themeEnabled: false,           // true if theme is customized
                    i18nEnabled: false,            // true if i18n is customized
                    jsEnabled: true                // true if js is customized
                    // the last entry must not end with comma
    }c11n/allDomain/js/customize.js
    dojo.provide("c11n.allDomain.js.customize");
    // Add X-Spam header check to Filter Interface
    dojo.require("c11n.allDomain.js.widget.NewMailFilter");c11n/allDomain/js/widget/NewMailFilter.js
    dojo.provide("c11n.allDomain.js.widget.NewMailFilter");
    dojo.require("iwc.widget.NewMailFilter");
    dojo.declare("iwc.widget.NewMailFilter", iwc.widget.NewMailFilter, {
          buildRendering: function() {
                  this.inherited(arguments);
                  // add new X-header1 field as new criteria
                  var elem = dojo.query("select.matchSubject", this.dynamicCriteriaBox);
                  if (elem && elem[0])
                          elem[0].innerHTML += '<option value="X-Spam">X-Spam</option>';
          postCreate: function() {
                  // next release will have addMatchingHeader function defined
                  // for each additional X-header, add it to the internal opdTable
                  if (this.addMatchingHeader)
                          this.addMatchingHeader("X-Spam", ["X-Spam"]);
                  else
                          this.opdTable["X-Spam"] = ["X-Spam"];
                  this.inherited(arguments);
          last: ""
    });For more background on Convergence customizations refer here:
    http://wikis.sun.com/display/CommSuite/Convergence+Customization+Guide
    Regards,
    Shane.

  • How to add Custom Address Book Application?

    I need add my custom address book application, so I has reading docs and wikis about convergence customization but no see clear how to.
    I take a dojo tutorial for change event from addres book buttons but may be are not the best practice.
    Somebody know information source for solve this please.
    Thanks.

    JCV_ wrote:
    I need add my custom address book application, so I has reading docs and wikis about convergence customization but no see clear how to.The "YahooABSPlugin" code in the c11n_sample directory may provides some guidance.
    If this still doesn't help then you could contact Sun to get help from Sun Professional Services. Writing a custom Convergence application is far from trivial.
    Regards,
    Shane.

  • YahooABSPlugin customization for Convergence

    Hi,
    I enabled and tested the YahooABSPlugin customization for Convergence. It works. I would like to know more about this URL, like how safe is it, who controls it and the relationship to Sun since Sun has included and published it in this working example of customizing Convergence. I submitted my working user id and password, which worked and returned my Yahoo contacts. Is this URL safe to use? Or should I change my Yahoo password? Thanks.
    c11n.allDomain.js.widget.YahooABSPlugin
    signIn: function(e) {
    dojo.stopEvent(e);
    var getArgs = {
    url: "http://www.*{color:#ff0000}funnynstupid.com{color}*/yahoo/importjson.php",
    preventCache: true,
    content: {txtEmailAddress: this.username.value, txtPassword: this.password.value, ImportContacts: 'yes'}
    var deferred = dojo.io.script.get(getArgs);
    //jsonImport([{ContactsName: 'AA', ContactsEmail: '[email protected]'}, {ContactsName: 'BB', ContactsEmail: '[email protected]'}]);
    return false;

    Referencing the Sun comments in the customize.js file you posted: It is my opinion that by including this example in their product documentation, Sun fosters an implicit expectation that it’s OK to use the example.
    In the example comments, Sun should include an explicit and “formatted in bold” disclaimer. The disclaimer should, at least, state Sun’s non-affiliation and a warning--"use this example at your own peril".
    The oversight to counter and dispel any such legally risky implicit expectation may lead to execution of the example and even incorporation into code, possibly resulting in great harm. Only after researching the URL will one discover the URL and URL owner are suspect--nothing can be found via Google or Whois, regarding the legitimate use of this URL as a public and secure Yahoo proxy for Yahoo contacts access. The questions are: “who within Sun decided this is a cool site and will make a good example…what do/did they know about the site…how did they find it…is it a Sun developer’s personal or on the side web site service?” I would love to know more about it and how Sun came up with it.
    Without answers, this leaves one to ponder “why did Sun use a suspect site URL, surely they wouldn’t reference a bad site…would they? There must be 1000’s of examples, with safe URLs, to demonstrate the target functionality; why would they facilitate such a potential compromise?” I trust Sun and I normally don’t think twice about following their direction and instructions. In a world full of deceit, leaders must take extra precaution to protect their followers.
    If this site does in fact perform any illegal activities with a user's Yahoo account and contact information as well as much more, since full access is being provided, then Sun will no doubt be party to a lawsuit and negative news. Removal of the example, a legal statement, or replacing the example with an example that utilizes the Yahoo published API, would go a long way towards resolving any potential problems, real or not, relating to this example.

  • Convergence per domain customization problem

    I have enabled customizations in the convergence installation and added the configuration objectclass/attribute to the domain. I copied the configuration sample to my c11n directory. My config.js looks like this:
    c11n.config = {
    // allDomain configuration
    allDomain: {
    module: "allDomain", // module name
    themeEnabled: true, // true if theme is customized
    i18nEnabled: true, // true if i18n is customized
    jsEnabled: true // true if js is customized
    // the last entry must not end with comma
    // replace sample.com for each domain configuration, change
    // domain name uwo_ca to example_com for javascript syntax and url syntax
    jestest_uwo_ca: {
    module: "jestest_uwo_ca", // module name
    themeEnabled: true, // true if theme is customized
    i18nEnabled: true, // true if i18n is customized
    jsEnabled: true // true if js is customized
    // the last entry must not end with comma
    }, // I have tried it without the , and with it
    I then copied the default allDomain files into the jestest_uwo_ca directories and modified all the paths to reflect the directory structure. When I startup convergence I get to "20% User Theme" and it hangs. Enabling debug logs, the last message is:
    PROTOCOL: DEBUG from com.sun.comms.client.protocol.delegate.agent.ClientOptionsA
    gent Thread httpSSLWorkerThread-80-0 at 2010-05-13 12:16:21,731 - Found domain
    specific client preferences, merging with default client prefs
    The theme worked when I used it in the allDomain but I would rather use the per domain features for all the customizations. There is nothing weird in the ldap directory logs or in the log messages before the "merging with default" messages. Any advice on how to debug?
    thanks
    steve

    I started using the IE and got a javascript error outlined below. I rooted the problem down to using a symbolic link for jestest_uwo_ca. I guess it gets confused with all of the ../../../.. s.
    steve
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; (R1 1.6); InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Timestamp: Thu, 13 May 2010 18:08:46 UTC
    Message: Could not load 'c11n.jestest_uwo_ca.js.customize'; last tried '../../../c11n/jestest_uwo_ca/js/customize.js'
    Line: 20
    Char: 5357
    Code: 0
    URI: http://jestest.uwo.ca/iwc_static/js/dojotoolkit/dojo/dojo.js?12.01_213859

  • Convergence Address Book customization.

    I have disabled "Personal Address Book" option under Address Book. Now, when I login and click on Address Book Service, ViewerContainer pane shows a blank page. How do I set default page to be loaded for ViewerCOntainer?.
    I see this issue only when PAB is disabled.
    Thanks

    colinlin97 wrote:
    I had installed Convergence and found that the corp Address book shows only person and group entry.What version of Convergence are you running (./iwcadmin -V)?
    How many people/group entries is the Corporate Address Book meant to display?
    I am planning to replace the old webmail application with Convengence but our end users were used to browse the whole organization structure tree with ou and groups.Which "old webmail" are you referring to? UWC/CE or Messenger Express or some other third-party product?
    Is it possible to customize Convergence Address book so that it will show the whole organization structure tree? No. The Corporate Directory interface is not designed to display the underlying LDAP organisation structure.
    Regards,
    Shane.

  • Customize Convergence Address Book Search Field to Search on Organization

    We have a requirement for users to be able to search the corporate address book by organization. Is it possible to add a Organization option to the search filter drop down in the Address Book browser page?
    Currently there are only options to search on the following attributes:
    1. Display Name or Email
    2. First Name
    3. Last Name
    4. Phone Number
    We are using Convergence 2-0.06
    Thanks!

    This solved it for me: https://discussions.apple.com/message/15788900#15788900

  • Hide eml file attachments in Convergence

    Hello,
    Is there a way to hide eml file attachments in Convergence? It already displays the contents of the eml inline so there is no need for the attachement
    Also, in Communications Express it currently does this

    eolair wrote:
    Is there a way to hide eml file attachments in Convergence? It already displays the contents of the eml inline so there is no need for the attachementThere is no existing option to produce this behaviour. You can however customise Convergence to get the desired result e.g.
    a) Create <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailMessageViewer.js containing:
    dojo.provide("c11n.allDomain.js.widget.MailMessageViewer");
    dojo.require("iwc.widget.MailMessageViewer");
    dojo.declare("iwc.widget.MailMessageViewer", iwc.widget.MailMessageViewer, {
            _renderAttachments: function() {
                    console.debug("c11n: Stop message/rfc822 attachments from showing in the attachment pane");
                    var attachments=this._msg.getAttachments(true);
                    if(attachments.length == 0) {
                            return '';
                    dojo.forEach(attachments, function(a) {
                            if(a._notDisplayed) {
                                    return;
                            // Stop message/rfc822 MIME type attachments from displaying in the attachment pane
                            if (!a._notDownloadable && (a.getType() + "/" + a.getSubtype() != "message/rfc822")) {
                                    var w = new iwc.widget.MailAttachment({
                                            part: a,
                                            truncateFileNames: this.truncateFileNames,
                                            isInPrintMode: this.isInPrintMode
                                    this.attachmentList.appendChild(w.domNode);
                                    this._attachmentWidgets.push(w);
                    }, this);
                    dojo.toggleClass(this.attachmentPane, 'iwcHide', (this._attachmentWidgets.length == 0));
            last: ""
    });b) Add the following line to customize.js to apply the above customisation:
    // Stop message/rfc822 attachments from showing in the attachment pane
    dojo.require("c11n.allDomain.js.widget.MailMessageViewer");c) Clear the browser cache, and log into Convergence.
    You can see the original "_renderAttachments" function which the above code replaces in <app_server_base>/domains/domain1/docroot/iwc_static/js/debug/iwc/widget/MailMessageViewer.js
    Regards,
    Shane.

  • Quota status bar in Convergence

    Hello
    I'am working on convergence and I want to show Quota in Convergence.
    Messaging server version :
    Sun Java(tm) System Messaging Server 7.0-3.01 32bit (built Dec 9 2008)
    Convergence Version :
    Sun Convergence 1.0-4.01 (built December 8 2008 - 14:54:08)
    I have enable customization and it work fine. I have a custom theme.
    So, how can I show quota status bar ?
    Thanks for your help.
    Regards,
    JC

    yo12 wrote:
    i got those updatesWhich "updates" are you referring to?
    but i cant find where i enable that optionThe quota status bar does not need to be "enabled". If you are running a recent Convergence patch it will show by default.
    What version of Convergence are you running (./iwcadmin -V)?
    Regards,
    Shane.

  • Customizing Convergence

    So tonight I just wanted to add a simple 1 or 2 next to the powered by SUN logo in convergence. Basically if a user calls into support I want the tech to be able to ask the customer what's the number in the right hand corner. Help them troubleshoot. In communications express all I had to do was open up header.jsp and add it.
    But in convergence I couldn't figure it out. No code! So basically my question is how can I do this. I see the section on changing colors or replacing logos and such.

    Mark_Wal wrote:
    So tonight I just wanted to add a simple 1 or 2 next to the powered by SUN logo in convergence. Basically if a user calls into support I want the tech to be able to ask the customer what's the number in the right hand corner. Help them troubleshoot. In communications express all I had to do was open up header.jsp and add it.
    But in convergence I couldn't figure it out. No code! So basically my question is how can I do this. I see the section on changing colors or replacing logos and such.Try the following Banner.js customization as a starting point (specifically the "buildRendering" overload):
    http://forums.sun.com/thread.jspa?messageID=10587771#10587771
    Regards,
    Shane.

Maybe you are looking for

  • Why does my TV screen say "no signal!"?

    Hello! I've been enjoying apple TV for months now and for some reason this morning it stopped working. I unplugged and restarted the black box, (the solid white llight is on making me think the apple tv box is not the problem). I made sure everything

  • File Sender with CC Error handling

    When using the file sender with content conversion we often receive Parsing errors in the AFW monitoring due to bad messages. Q: how can we monitor and e-mail this errors from the AFW,does the CCMS covers everything? Alert monitoring?. another Q: In

  • Log for all actions of Users

    Hello : I need  development that load table Z*  the information of all user actions as log the actions ( Push button , call transaction , eject report ect.. ) . I thinked to do with user-exit but i didn't think it . Could you give a idea to done it ?

  • Sqlplus_exec_template.sql Part2

    Ok I was able to resolve my first issue with this, which was not having the correct role. It turns out, instead of using runtime user to run this, I needed to run this script using runtime repository admin user. Now, I'm running into another issue. T

  • To know the persission settings for my applications for motorola ,simens,lg

    Hello we have developed an application for the sharing photos and video. Our bulid is signed. now as there is one setting for the permission to use internet, autostart as this premissions can be given as in nokia and sonyerrsion please can u give the