Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
fixed typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Muller committed Sep 3, 2011
1 parent a12e788 commit 7fa32ca
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions README.markdown
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
# Campfire: A Jabber / Campfire Gateway # Campfirer: A Jabber / Campfire Gateway
Campfirer gives [campfire](http://campfirenow.com) users a way to connect to rooms using any [Jabber (XMPP)](http://xmpp.org) client. It does this by implementing (a portion) of [the multi-user chat extension](http://xmpp.org/extensions/xep-0045.html). Note that you must first have an account at [campfirenow.com](http://campfirenow.com) and have created a room there before you can use campfirer to connect. Campfirer gives [campfire](http://campfirenow.com) users a way to connect to rooms using any [Jabber (XMPP)](http://xmpp.org) client. It does this by implementing (a portion) of [the multi-user chat extension](http://xmpp.org/extensions/xep-0045.html). Note that you must first have an account at [campfirenow.com](http://campfirenow.com) and have created a room there before you can use campfirer to connect.


There are two ways you can use the campfirer gateway: There are two ways you can use the campfirer gateway:
Expand All @@ -10,17 +10,21 @@ The first option is the easiest to try things out - but there is no guarantee of


## Prerequisites ## Prerequisites
1. First, edit your jabber server config file to allow for a new component connection. If you are using [ejabberd](http://www.ejabberd.im/), this can be done by adding the following lines to the services section of your *ejabberd.cfg* file. Make sure to change the password to something actually secret, and then restart your jabber server. 1. First, edit your jabber server config file to allow for a new component connection. If you are using [ejabberd](http://www.ejabberd.im/), this can be done by adding the following lines to the services section of your *ejabberd.cfg* file. Make sure to change the password to something actually secret, and then restart your jabber server.

<pre>
{5524, ejabberd_service, [ {listen, [
{ip, {127, 0, 0, 1}}, ...
{access, all}, {5554, ejabberd_service, [
{shaper_rule, fast}, {ip, {127, 0, 0, 1}},
{host, "muc.yourdomain.com", [{password, "somesecret"}]} {access, all},
]}, {shaper_rule, fast},

{host, "muc.yourdomain.com", [{password, "secretpassword"}]}
]},
...
]},
</pre>
2. Install [Twisted](http://twistedmatrix.com). 2. Install [Twisted](http://twistedmatrix.com).
3. Make sure your jabber server is running and that you can connect to it. 3. Make sure your jabber server is running and that you can connect to it.
4. Edit your DNS to add a record for *muc.<yourdomain>.com* and make sure it resolves before continuing. 4. Edit your DNS to add a record for *muc.yourdomain.com* and make sure it resolves before continuing.


## Installation ## Installation
First, get the source: First, get the source:
Expand Down

0 comments on commit 7fa32ca

Please sign in to comment.