Skip to content

Archipel GUI's property list file

Cyril Peponnet edited this page Mar 19, 2015 · 3 revisions

Archipel UI use Info.plist stored in the web root dir.

This file is used to store default UI configuration at first login. Afterward the UI configuration is stored using a private xml storage provided by the XMPP Server. This storage is done per user.

In the .plist file you can also force the Service and domain using:

 <!-- Set this to one to force using a specific XMPP service
        In that case, the service field will be hidden, and users
        won't be able to change it. THIS IS NOT A SECURITY PARAMETER!
        This is only UI flavor
     -->
    <key>TNArchipelForceService</key>
    <integer>0</integer>

    <!-- Set this to one to force using a specific JID domain
        So your users will only have to enter their JID node instead
        of the bare JID. THIS IS NOT A SECURITY PARAMETER!
        This is only UI flavor
     -->
    <key>TNArchipelForceJIDDomain</key>
    <integer>0</integer>

    <!-- This will be used a forced service URL if
        TNArchipelForceService is set to 1
    -->
    <key>TNArchipelForcedServiceURL</key>
    <string>ws://archipelproject.org:5280</string>

    <!-- This will be used a forced JID domain if
        TNArchipelForceJIDDomain is set to 1
        -->
    <key>TNArchipelForcedJIDDomain</key>
    <string>archipelproject.org</string>
Clone this wiki locally