jive-messenger.xml 1.62 KB
Newer Older
Bill Lynch's avatar
Bill Lynch committed
1
<?xml version="1.0" encoding="UTF-8"?>
Matt Tucker's avatar
Matt Tucker committed
2 3 4 5 6 7 8 9 10 11 12
<!--
    This file stores bootstrap properties needed by Jive Messenger.
    Property names must be in the format: "prop.name.is.blah=value"
    That will be stored as:
        <prop>
            <name>
                <is>
                    <blah>value</blah>
                </is>
            </name>
        </prop>
13
		
14
      Most properties are stored in the Jive Messenger database. A
15
	property viewer and editor is included in the admin console.
Matt Tucker's avatar
Matt Tucker committed
16 17 18
-->
<!-- root element, all properties must be under this element -->
<jive>
19
    <adminConsole>
Matt Tucker's avatar
Matt Tucker committed
20
        <port>9090</port>
21 22
        <securePort>9091</securePort>
        <!-- By default, only the user with the username "admin" can login
23 24 25 26 27
         to the admin console. Alternatively, you can specify a comma-delimitted 
         list usernames that should be authorized to login by setting the  
         <authorizedUsernames> field below. --> 
        <!-- <authorizedUsernames></authorizedUsernames> -->
    </adminConsole>
Matt Tucker's avatar
Matt Tucker committed
28
    
29
    <!-- Example LDAP settings -->
Matt Tucker's avatar
Matt Tucker committed
30
    <!--
Matt Tucker's avatar
Matt Tucker committed
31 32 33 34 35 36 37 38 39
    <ldap>
        <host></host>
        <port>389</port>
        <usernameField>uid</usernameField>
        <nameField>cn</nameField>
        <emailField>mail</emailField>
        <baseDN></baseDN>
        <adminDN></adminDN>
        <adminPassword></adminPassword>
Matt Tucker's avatar
Matt Tucker committed
40
    </ldap> 
Matt Tucker's avatar
Matt Tucker committed
41 42 43 44 45 46 47 48
    <provider>
        <user>
            <className>org.jivesoftware.messenger.ldap.LdapUserProvider</className>
        </user>
        <auth>
            <className>org.jivesoftware.messenger.ldap.LdapAuthProvider</className>
        </auth>
    </provider>
Matt Tucker's avatar
Matt Tucker committed
49
    -->
50
    <!-- End example LDAP settings -->
Matt Tucker's avatar
Matt Tucker committed
51
</jive>