Recommended IRC server (ircd) for a small site? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:48:48Z http://stackoverflow.com/feeds/question/144049 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144049/recommended-irc-server-ircd-for-a-small-site 5 Recommended IRC server (ircd) for a small site? Zed 2008-09-27T17:17:54Z 2009-06-13T07:13:02Z <p>The situation:</p> <p>I want to play around with IRC bots as general communications interfaces to other code I am investigating. The server hardware would be old and low-memory, but running on a relatively up-to-date Debian GNU/Linux install. I don't expect more than a hundred users at a time, tops, and probably in the single-digits most of the time. The interfaces are more of interest here than the server itself, so I'd prefer something relatively simple to maintain over something with a huge number of configuration and tuning options more useful to a larger site.</p> <p>Referencing the <a href="http://en.wikipedia.org/wiki/Comparison_of_IRC_daemons" rel="nofollow">Wikipedia comparison</a> and the <a href="http://www.google.com/Top/Computers/Software/Internet/Servers/Chat/IRC/" rel="nofollow">Google PageRank list</a> against the available package list for Debian comes up with the following top contenders: <a href="http://coder-com.undernet.org/" rel="nofollow">Undernet</a> (ircd-ircu), <a href="http://www.ircd-ratbox.org/" rel="nofollow">Ratbox</a> (ircd-ratbox), and <a href="http://www.inspircd.org/" rel="nofollow">Inspire</a> (inspircd). Unfortunately, I can't find any serious comparisons of them, so I'm hoping that asking here will provide a faster solution than just trying them one at a time until something frustrates me enough to move.</p> <p>Thanks in advance for any advice.</p> http://stackoverflow.com/questions/144049/recommended-irc-server-ircd-for-a-small-site/144082#144082 4 Answer by Tanj for Recommended IRC server (ircd) for a small site? Tanj 2008-09-27T17:25:51Z 2008-09-27T17:25:51Z <p><a href="http://www.unrealircd.com/" rel="nofollow">Unreal IRCd</a> is full featured if a little complex on the setup.</p> http://stackoverflow.com/questions/144049/recommended-irc-server-ircd-for-a-small-site/144138#144138 3 Answer by Jacob for Recommended IRC server (ircd) for a small site? Jacob 2008-09-27T17:53:21Z 2008-09-27T17:53:21Z <p>Use XMPP instead. IRC is not very well designed for your situation; it can be made to work, but it is a big pain.</p> http://stackoverflow.com/questions/144049/recommended-irc-server-ircd-for-a-small-site/144316#144316 0 Answer by Czar for Recommended IRC server (ircd) for a small site? Czar 2008-09-27T19:45:25Z 2008-09-27T20:08:28Z <p>Unreal IRCd is what I finally picked for hosting an IRCD. Why? Halfop, admin/protect, founder/owner, advanced operator acl, vHost via i:line and etc...</p> <p>Also see </p> <ul> <li><a href="http://en.wikipedia.org/wiki/Comparison_of_IRC_daemons" rel="nofollow">http://en.wikipedia.org/wiki/Comparison_of_IRC_daemons</a></li> <li><a href="http://www.howtoforge.com/linux_irc_server_anope_services" rel="nofollow">http://www.howtoforge.com/linux_irc_server_anope_services</a></li> </ul> http://stackoverflow.com/questions/144049/recommended-irc-server-ircd-for-a-small-site/990201#990201 0 Answer by 550 for Recommended IRC server (ircd) for a small site? 550 2009-06-13T07:13:02Z 2009-06-13T07:13:02Z <p>During the past couple days I have been coding a bot with Python and IRCLib. Since I am coding the communication interface I needed to see the raw data transfered between the server and the client. So, I needed an IRC server which would support that. At first I was using IRCD, and it was totally fine. But after a while I realized that I was missing some features that IRCD did not have since it's outdated. So, after further research I found ngIRCd.</p> <p>I compiled it from source with those options "--enable-sniffer --enable-debug". Now when I want to see the information sent between my bot and my client I only need to start the server with the -n and -s option. Like that : ngircd -n -s</p> <p>Here is the website of the server : <a href="http://ngircd.barton.de/" rel="nofollow">http://ngircd.barton.de/</a></p>