2
0

server.xml 1.0 KB

123456789101112131415161718192021
  1. <include>
  2. <!-- Component (Server to Server Login) -->
  3. <!-- to use this profile take the x- away from the open and close tags so its <profile> and </profile> -->
  4. <x-profile type="component">
  5. <param name="name" value="$${xmpp_server_profile}"/>
  6. <param name="password" value="secret"/>
  7. <param name="dialplan" value="XML"/>
  8. <param name="context" value="public"/>
  9. <param name="rtp-ip" value="$${bind_server_ip}"/>
  10. <param name="server" value="jabber.server.org:5347"/>
  11. <!-- disable to trade async for more calls -->
  12. <param name="use-rtp-timer" value="true"/>
  13. <!-- "_auto_" means the extension will be automaticly set to the called jid -->
  14. <param name="exten" value="_auto_"/>
  15. <!--<param name="vad" value="both"/>-->
  16. <!--<param name="avatar" value="/path/to/tiny.jpg"/>-->
  17. <!--If you have ODBC support and a working dsn you can use it instead of SQLite-->
  18. <!--<param name="odbc-dsn" value="dsn:user:pass"/>-->
  19. <!--<param name="candidate-acl" value="wan.auto"/>-->
  20. </x-profile>
  21. </include>