There is field,“Network account name”, field name is ‘NetUserName’ in person document.
I found it is used to deliver mail by router.
Wondering…
There is field,“Network account name”, field name is ‘NetUserName’ in person document.
I found it is used to deliver mail by router.
Wondering…
Subject: Which fields in person document does router use to deliver mail?
Read the Admin Help:The Domino Directory and mail routing :
all of it, but especially this part>
How the Router uses the Domino Directory to look up mail recipients:
When a user sends mail to a recipient in the local domain, the Router looks up the complete address in the ($Users) view …
and then examine the ($Users) view so you can get a better idea of how the lookup works.
Subject: Which fields in person document does router use to deliver mail?
The router uses the hidden view ($Users) to locate a match for each addressee. Have a look at the first column in that view to see which fields are used for each type of document. For example, the relevant part of the column formula for the Person doc is: Type = “Person”;
FirstName
: LastName
: FullName
: @Name([CN]; dn)
: ShortName
: @Soundex(LastName)
: (Lastname + " " + FirstName + " " + MiddleInitial)
: @Name([Abbreviate]; FullName)
: AltFullName
: @Name([Abbreviate]; AltFullName)
: @Name([CN];AltFullName)
: InternetAddress
: NetUserName;
Subject: Thanks. I wondered why it uses NetUserName to delivery mail.