forked from Mirrors/freeswitch
98fa287c57
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6694 d0543943-73ff-0310-b7d9-9358b9ac24b2
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<include>
|
|
<!-- Client Profile (Original mode) -->
|
|
<x-profile type="client">
|
|
<param name="name" value="$${xmpp_client_profile}"/>
|
|
<param name="login" value="myjid@myserver.com/talk"/>
|
|
<param name="password" value="mypass"/>
|
|
<param name="dialplan" value="XML"/>
|
|
<param name="context" value="public"/>
|
|
<param name="message" value="Jingle all the way"/>
|
|
<param name="rtp-ip" value="$${bind_server_ip}"/>
|
|
<!-- <param name="ext-rtp-ip" value="$${external_rtp_ip"/> -->
|
|
<param name="auto-login" value="true"/>
|
|
<!-- SASL "plain" or "md5" -->
|
|
<param name="sasl" value="plain"/>
|
|
<!-- if the server where the jabber is hosted is not the same as the one in the jid -->
|
|
<!--<param name="server" value="alternate.server.com"/>-->
|
|
<!-- Enable TLS or not -->
|
|
<param name="tls" value="true"/>
|
|
<!-- disable to trade async for more calls -->
|
|
<param name="use-rtp-timer" value="true"/>
|
|
<!-- default extension (if one cannot be determined) -->
|
|
<param name="exten" value="888"/>
|
|
<!-- VAD choose one -->
|
|
<!-- <param name="vad" value="in"/> -->
|
|
<!-- <param name="vad" value="out"/> -->
|
|
<param name="vad" value="both"/>
|
|
<!--<param name="avatar" value="/path/to/tiny.jpg"/>-->
|
|
</x-profile>
|
|
</include>
|