NunoNunes.org

Loading
Entries by year
Entries by month
December
Sun Mon Tue Wed Thu Fri Sat
       
7
Powered by Blosxom
Creative Commons License

XMPP - Extensible Messaging and Presence Protocol

This is a page that I created to hold some information I have gathered on the subject (while working on setting up a server) and will have to be revised to make it “cleaner”.

Some relevant links:

DNS configuration to support XMPP

SRV records:

  • _xmpp-server._tcp.domain
  • _xmpp-client._tcp.domain
  • _jabber._tcp.domain
  • _jabber-client._tcp.domain

For clients and for older servers the A record of the domain is often used.

Helper scripts

#!/bin/sh

domain=$1

(
    dig srv _xmpp-server._tcp.$domain
    dig srv _xmpp-client._tcp.$domain
    dig srv _jabber._tcp.$domain
    dig srv _jabber-client._tcp.$domain
    dig a $domain
) | perl -ne 'next if /^;/ || /^\s*$/; print'

About this entry

Originally written on Sep 07, 2005 @ 17:30
Read article on it's own page (permalink)

The content of this site is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 2.5 License.