View previous topic :: View next topic |
Author |
Message |
flickerfly l33t


Joined: 08 Nov 2002 Posts: 677 Location: Lanham, MD
|
Posted: Fri Mar 07, 2003 5:34 pm Post subject: Jabber-Server Example Configs and Thoughts |
|
|
I've checked out the jabberd config.xml examples on jabber.org, and was wondering if anyone else would be willing to share working jabber config files?
My XML is poor, but I seem to remember a way to setup variable in XML documents so I could edit one thing at the top and it would be replaced throughout the document. Can I do this in a jabber XML config file. Seems like it would be great for setting up a default XML file and would make the ebuild work better/more effectively.
Third, does the server need to have a FQDN or can I operate entirely using the ip address. I'm wondering if this is the root to the difficulty I'm having in setup. It's entirely internal and I haven't been able to get with the guy who managed the DNS hence lack of FQDN.
Code: | <!-- DO NOT EDIT - Use setup.sh to edit -->
<!--
Variables used:
FQDN=jabber.bible.edu
S_NAME=Jabber @ WBC/CBS
S_DESC=
S_URL=
ADMIN_NAME=jritchie
USE_PID=0
ALLOW_REGISTRATION=
NOTIFY_REGISTER=
-->
<jabber>
<service id="sessions">
<host><jabberd:cmdline flag="h">jabber.bible.edu</jabberd:cmdline></host>
<jsm xmlns="jabber:config:jsm">
<vCard>
<FN>Jabber @ WBC/CBS</FN>
<DESC></DESC>
<URL></URL>
</vCard>
<welcome>
<subject>Welcome!</subject>
<body>Welcome to the Jabber server at jabber.bible.edu</body>
</welcome>
<admin>
<write>jritchie@jabber.bible.edu</write>
<reply>
<subject>Auto Reply</subject>
<body>This is a special administrative address. Your message was received and forwarded to server administ
rators.</body>
</reply>
</admin>
<vcard2jud/>
<browse>
<service type="jud" jid="users.jabber.org" name="Jabber User Directory">
<ns>jabber:iq:search</ns>
<ns>jabber:iq:register</ns>
</service>
</browse>
</jsm>
<load main="jsm">
<jsm>./jsm/jsm.so</jsm>
<mod_echo>./jsm/jsm.so</mod_echo>
<mod_roster>./jsm/jsm.so</mod_roster>
<mod_time>./jsm/jsm.so</mod_time>
<mod_vcard>./jsm/jsm.so</mod_vcard>
<mod_last>./jsm/jsm.so</mod_last>
<mod_version>./jsm/jsm.so</mod_version>
<mod_announce>./jsm/jsm.so</mod_announce>
<mod_agents>./jsm/jsm.so</mod_agents>
<mod_browse>./jsm/jsm.so</mod_browse>
<mod_admin>./jsm/jsm.so</mod_admin>
<mod_filter>./jsm/jsm.so</mod_filter>
<mod_offline>./jsm/jsm.so</mod_offline>
<mod_presence>./jsm/jsm.so</mod_presence>
<mod_auth_plain>./jsm/jsm.so</mod_auth_plain>
<mod_auth_digest>./jsm/jsm.so</mod_auth_digest>
<mod_auth_0k>./jsm/jsm.so</mod_auth_0k>
<mod_log>./jsm/jsm.so</mod_log>
<mod_register>./jsm/jsm.so</mod_register>
<mod_xml>./jsm/jsm.so</mod_xml>
</load>
</service>
<xdb id="xdb">
<host/>
<load>
<xdb_file>./xdb_file/xdb_file.so</xdb_file>
</load>
<xdb_file xmlns="jabber:config:xdb_file">
<spool><jabberd:cmdline flag='s'>./spool</jabberd:cmdline></spool>
</xdb_file>
</xdb>
<service id="c2s">
<load>
<pthsock_client>./pthsock/pthsock_client.so</pthsock_client>
</load>
<pthcsock xmlns='jabber:config:pth-csock'>
<authtime/>
<karma>
<init>10</init>
<max>10</max>
<inc>1</inc>
<dec>1</dec>
<penalty>-6</penalty>
<restore>10</restore>
</karma>
<ip port="5222"/>
</pthcsock>
</service>
<log id='elogger'>
<host/>
<logtype/>
<format>%d: [%t] (%h): %s</format>
<file>error.log</file>
<!--<stderr/>-->
</log>
<log id='rlogger'>
<host/>
<logtype>record</logtype>
<format>%d %h %s</format>
<file>record.log</file>
</log>
<service id="dnsrv">
<host/>
<load>
<dnsrv>./dnsrv/dnsrv.so</dnsrv>
</load>
<dnsrv xmlns="jabber:config:dnsrv">
<resend service="_jabber._tcp">s2s</resend> <!-- for supporting SRV records -->
<resend>s2s</resend>
</dnsrv>
</service>
<service id="s2s">
<load>
<dialback>./dialback/dialback.so</dialback>
</load>
<dialback xmlns='jabber:config:dialback'>
<legacy/>
<!-- Use these to listen on particular addresses and/or ports.
<ip port="7000"/>
<ip port="5269">127.0.0.1</ip>
-->
<ip port="5269"/>
<karma>
<init>50</init>
<max>50</max>
<inc>4</inc>
<dec>1</dec>
<penalty>-5</penalty>
<restore>50</restore>
</karma>
</dialback>
</service>
<io>
<rate points="5" time="25"/>
</io>
<pidfile>/var/run/jabber.pid</pidfile>
</jabber> |
As you can see, I created this file by using the shell script utility provided on @ http://jabberd.jabberstudio.org/quickstart/. Anyone interested in building an ebuild for this? Seems like it would be simple, but I've not learned that yet.
TIP: xmllint is a great to for verifying your config xml. It caught me on a couple things. _________________ An Evil Genious' Guide to Sheeple and How To Avoid Becoming One | 0x4C9EF4A |
|
Back to top |
|
 |
axxackall l33t


Joined: 06 Nov 2002 Posts: 651 Location: Toronto, Ontario, 3rd Rock From Sun
|
Posted: Thu Apr 03, 2003 9:13 pm Post subject: |
|
|
How is functionally different your config file from that, which is deployed with jabber ebuild? |
|
Back to top |
|
 |
flickerfly l33t


Joined: 08 Nov 2002 Posts: 677 Location: Lanham, MD
|
Posted: Mon Apr 07, 2003 6:12 pm Post subject: |
|
|
axxackall wrote: | How is functionally different your config file from that, which is deployed with jabber ebuild? |
The one here doesn't do what I want it to concerning the variable thing. I'm more asking how could it be done, as I'm not knowledgeable enough and the XML books I've read belong to the library so they aren't here for me to check.
If nothing else maybe it could call the contents of a file like a PID file is used with the kill command. I don't really know, but have a concept of easier editing.
the ebuild I'm referring to is the jabberd quickstart.
My config files have changed a lot since that posted above. I now include muc and jud as linked services, disabled s2s and added some other functional stuff. _________________ An Evil Genious' Guide to Sheeple and How To Avoid Becoming One | 0x4C9EF4A |
|
Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|