microtan / nhin-d

Automatically exported from code.google.com/p/nhin-d
0 stars 0 forks source link

Add a configuration feature to use address manager for addresses and domains #227

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Address manager is a requirement when the delivery notifications is enabled.  

Address manager's GetAddresses method should be configurable.

Modes:

1.  Address only :: Same as today.  Send in a list of addresses and return 
those same addresses if they exist and are enabled

2.  Address only and Domain :: Same as Address only and if the address is in a 
domain and the domain is enabled the return the address in the query.

The configuration would default to the legacy configuration.  

Original issue reported on code.google.com by joeshook@gmail.com on 7 Nov 2013 at 3:15

GoogleCodeExporter commented 9 years ago
The add the following settings in the AddressManager to enabled any address 
that is in an enabled domain.  Configurable solution for HISPs with only org 
level certs that do not manage individual addresses.

<AddressManager>
    <Url>http://localhost/ConfigService/DomainManagerService.svc/Addresses</Url>
        <Settings>
            <EnableDomainSearch>true</EnableDomainSearch>
        </Settings>
</AddressManager>

Original comment by joeshook@gmail.com on 6 Dec 2013 at 1:55