10 Support For Additional Values of mailuserstatus

Oracle Communications Delegated Administrator enables you to choose from several mailuserstatus values including active, inactive, deleted, and hold.

To support additional mailuserstatus values, you must perform the following steps:

  1. Add the following entries to the da webapp Resources_*.properties file:

    userlist.xxxxLabel = xxxx
    userproperties.mailstatus.xxxx = xxxx
    
  2. Modify the da webapp userProperties.xml file:

    <property name="MailStatusProperty">
        <label name="MailStatus" defaultValue="userproperties.mailstatus"
             Id="MailStatusFor" labelFor="MailStatusValue"/>
         <cc name="MailStatusValue" tagclass="com.sun.web.ui.taglib.html.CCDropDownMenuTag">
             <option label="userproperties.mailstatus.active" value="active"/>
             <option label="userproperties.mailstatus.inactive" value="inactive" />
             <option label="userproperties.mailstatus.deleted" value="deleted" />
             <option label="userproperties.mailstatus.hold" value="hold" />
             <option label="userproperties.mailstatus.disabled" value="disabled" />
         </cc>
    </property>
    

    to add the value as mentioned in step 1.

You can choose from several other additional values such as disabled, removed, overquota, and so on.