To work around this problem for the primary SMTP reply address, discover everything in the Exchange GAL so that all addresses are represented within MMS. This means you do not apply exclusion rules to the DISCOVER phase. Any users that you don't want to appear in the MMS Metaverse can be stored in the connector space. To do this:
1. | Remove any Exclusion rules for Exchange containers that you want discovered. |
2. | In Design MA, Control Metadirectory, Construction Templates, Metaverse, add an IF statement to store the MAIL attribute in the Connector Space for those objects that you would have excluded from discovery. Consider the following example for user objects from the BAD RECIPIENTS container:
IF $EMBEDDED("BAD RECIPIENTS",$v_dn)=T
THEN
$csp.mail=$cd.mail
ENDIF
This code stores the MAIL attribute in the connector space so that MMS can process a uniqueness check. |
3. | Discover the BAD RECIPIENTS container (if you choose not to have it appear in the Metaverse, run the MA in Association mode for this specific run). Everything from this run remains only in the connector space. |
This stores the MAIL attribute in the connector space so that MMS can process uniqueness checks. Be sure to only insert the MAIL attribute in the connector space for those objects that will not be part of the metaverse. If you attempt to add the MAIL attribute in both the connector space and the metaverse for the same object, the additions will not work.