A change has been made to the user directory.
the <param> tags that was in the <user> are now nested in thier own <params> tag. Also when using dingaling in component mode you can add a <vcard> to the user that will be deliverd when requested when using an id like user+stpeter@jabber.org assuming the comonent subdomain is jabber.org git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3152 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
aba9c77c35
commit
71043450c7
|
@ -484,17 +484,65 @@
|
||||||
|
|
||||||
<section name="directory" description="User Directory">
|
<section name="directory" description="User Directory">
|
||||||
<!--the domain or ip (the right hand side of the @ in the addr-->
|
<!--the domain or ip (the right hand side of the @ in the addr-->
|
||||||
<domain name="mydomain.com">
|
<domain name="jabber.org">
|
||||||
<!--the user id (the left hand side of the @ in the addr-->
|
<!--the user id (the left hand side of the @ in the addr-->
|
||||||
<user id="1000">
|
<user id="stpeter">
|
||||||
<!-- omit password for authless registration -->
|
<params>
|
||||||
<param name="password" value="mypass"/>
|
<!-- omit password for authless registration -->
|
||||||
<!--various endpoints and application will look for user specific settings here -->
|
<param name="password" value="mypass"/>
|
||||||
<param name="mypref" value="myval"/>
|
</params>
|
||||||
|
|
||||||
|
<vcard xmlns='vcard-temp'>
|
||||||
|
<FN>Peter Saint-Andre</FN>
|
||||||
|
<N>
|
||||||
|
<FAMILY>Saint-Andre</FAMILY>
|
||||||
|
<GIVEN>Peter</GIVEN>
|
||||||
|
<MIDDLE/>
|
||||||
|
</N>
|
||||||
|
<NICKNAME>stpeter</NICKNAME>
|
||||||
|
<URL>http://www.jabber.org/people/stpeter.php</URL>
|
||||||
|
<BDAY>1966-08-06</BDAY>
|
||||||
|
<ORG>
|
||||||
|
<ORGNAME>Jabber Software Foundation</ORGNAME>
|
||||||
|
<ORGUNIT>Jabber Software Foundation</ORGUNIT>
|
||||||
|
</ORG>
|
||||||
|
<TITLE>Executive Director</TITLE>
|
||||||
|
<ROLE>Patron Saint</ROLE>
|
||||||
|
<TEL><WORK/><VOICE/><NUMBER>303-308-3282</NUMBER></TEL>
|
||||||
|
<TEL><WORK/><FAX/><NUMBER/></TEL>
|
||||||
|
<TEL><WORK/><MSG/><NUMBER/></TEL>
|
||||||
|
<ADR>
|
||||||
|
<WORK/>
|
||||||
|
<EXTADD>Suite 600</EXTADD>
|
||||||
|
<STREET>1899 Wynkoop Street</STREET>
|
||||||
|
<LOCALITY>Denver</LOCALITY>
|
||||||
|
<REGION>CO</REGION>
|
||||||
|
<PCODE>80202</PCODE>
|
||||||
|
<CTRY>USA</CTRY>
|
||||||
|
</ADR>
|
||||||
|
<TEL><HOME/><VOICE/><NUMBER>303-555-1212</NUMBER></TEL>
|
||||||
|
<TEL><HOME/><FAX/><NUMBER/></TEL>
|
||||||
|
<TEL><HOME/><MSG/><NUMBER/></TEL>
|
||||||
|
<ADR>
|
||||||
|
<HOME/>
|
||||||
|
<EXTADD/>
|
||||||
|
<STREET/>
|
||||||
|
<LOCALITY>Denver</LOCALITY>
|
||||||
|
<REGION>CO</REGION>
|
||||||
|
<PCODE>80209</PCODE>
|
||||||
|
<CTRY>USA</CTRY>
|
||||||
|
</ADR>
|
||||||
|
<EMAIL><INTERNET/><PREF/><USERID>stpeter@jabber.org</USERID></EMAIL>
|
||||||
|
<JABBERID>stpeter@jabber.org</JABBERID>
|
||||||
|
<DESC>
|
||||||
|
More information about me is located on my
|
||||||
|
personal website: http://www.saint-andre.com/
|
||||||
|
</DESC>
|
||||||
|
</vcard>
|
||||||
|
|
||||||
</user>
|
</user>
|
||||||
</domain>
|
</domain>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</document>
|
</document>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue