Type: Authentications
Parent: WebCFG
Container for different authentication sets, used to describe possible
ways of how users have to authenticate for being able to open a
configuration.
Any combination of the following sets is allowed:
Every set may only occur once. If none is given, no login is needed.
This way it is easy to integrate already existing authentication systems like LDAP, AD (e.g. an Exchange server, W2K3 server), *nix and so on.
| Element | Description | Cardinality |
|---|---|---|
| simpleset | Declares a set of possible logins that are defined in this XML file | 0..1 |
| pop3set | Declares a set of POP3 servers logins are validated against | 0..1 |
| imapset | Declares a set of IMAP servers logins are validated against | 0..1 |
| sshset | Declares a set of remote servers logins are validated against using the SSH protocol | 0..1 |
| ldapset | Declares a set of LDAP servers logins are validated against | 0..1 |
<authentifications>
<simpleset>
<simple ... />
<simple ... />
</simpleset>
<pop3set>
<pop3 ... />
<pop3 ... />
</pop3set>
<imapset>
<imap ... />
<imap ... />
</imapset>
<sshset>
<ssh ... />
</sshset>
<ldapset>
<ldap ... />
</ldapset>
</authentifications>
top