This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Template (Exchange Module)

Hi,

Inside a template I would like to be able to select 'Address book policy' as shown in the screenshot:

https://documentation.solarwinds.com/en/Success_Center/ARM/Content/create-an-exchange-mailbox.htm

The code example  below the screenshot doesn't seem to have this paramter and I was wondering what this parameter is called and also if there are more to add.

Thanks

  • This is from the latest example template:

    /*(optional) If you delete/disable the following section the address book policy is not set.
    Note: The address book policy does not work for some mailbox types (see aspiredMailboxType) */
    {
    // Do not change the next line.
    "Name": "AddressBookPolicy",
    "Definition": {
    "Type": "DropDownList",
    "DefaultValue": "Policy1",
    "Label": "['en-us:Address book policy','de-de:Adressbuchrichtlinie','fr-fr:Politique du carnet d\\'adresses']",
    "IsRequired": false,
    "Items": [
    {
    "Value": "Policy1",
    "DisplayValue": "display name for policy"
    },
    {
    "Value": "Policy2",
    "DisplayValue": "Another display name"
    }
    ]
    }
    },