This section describes how to construct a text file containing user and group information in a format that can be imported into OmniGroupServer.
The structure of the file should follow these rules:
Each line that is processed should have the following syntax:
#<COMMAND> <CSV>
where,
<COMMAND>
is one of the commands listed in Text Commands.
<CSV>
is a comma-separated list of users or groups to which the command is applied.
The commands INITIALIZE
, NESTEDGROUPS
, and FINALIZE
do not require the <CSV>
.
For example:
#USER User1,User2,User3
//
" is ignored.<CSV> entries must be either:
For example:
<CSV> entry | Specifies the user/group/name |
---|---|
"ABCDE"
|
ABCDE
|
"AB\"CDE"
|
AB"CDE
|
"AB,CDE"
|
AB,CDE
|
\"AB"CDE
|
"AB"CDE
|
ABC"DE
|
ABC"DE
|
ABCDE
|
ABCDE
|
AB\,CDE
|
AB,CDE
|
AB\CDE
|
AB\CDE
|
AB\\\,CDE
|
AB\,CDE
|
AB\\\CDE
|
AB\\CDE
|
AB\\\\CDE
|
AB\\CDE
|
When you are using the text file with action=import
, the presence or absence of the INITIALIZE and FINALIZE commands determines whether the group server uses the information to perform an incremental update:
|