-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,24 @@ | ||
# mail_ldif | ||
|
||
Generate an LDIF file containing 6key-value pairs per user entry: | ||
``` | ||
dn: jDoe1@illinois.edu | ||
uid: jDoe1@illinois.edu | ||
mail: jDoe1@illinois.edu | ||
mailRoutingAddress: jDoe1@ncsa.illinois.edu | ||
profileType: 0 | ||
memberOf: group1 | ||
memberOf: group2 | ||
``` | ||
|
||
- **dn** is the distinguish name that uniquely identifies the entry. Recommend using target email | ||
|
||
- **uid** is the unique identifier for a user. Recommend using dn value | ||
|
||
- **mail** is the primary email listed on the LDAP user query (target email) | ||
|
||
- **mailRoutingAddress** is the email address that is being rerouted from. | ||
|
||
- **profileType** identifies the type of entry, and 0 is the default for user entry | ||
|
||
- **memberOf** is a list of groups that the member is apart of. |