How to add additional proxy addresses with the Directory Connector on contacts created in AD/Exchange?
1.) Open the CMN Management Console
2.) Right-click on the desired connector and select Advanced Settings
3.) In the Users | Provision Attributes tab click Add Script
4.) Set Target Attribute to proxyAddresses and enter the following in the text box below
$parts = $srcobj["mail"].split('@')
$t = "smtp:" + $parts[0] + "@myDomain.com"
$t
Note: "@myDomain.com" should be replaced with the desired SMTP domain.
5.) Click OK
6.) Repeat the steps above on the Users | Update Attributes tab
7.) Click OK to exit the Advanced Settings dialog
8.) Save and Activate the configuration
9.) Run the connector
For example in version 3.3 and below, if the file has the following proxyaddresses entry:
proxyaddresses=SMTP:~mail~
You will then need to add 2 entries under the advanced settings as shown below:
Key-proxyaddresses
Value-SMTP:~mail~
Key-proxyaddresses
Value-smtp:~smtpname~@<requiredsmtpaddress>