2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4 <!ENTITY latex "LaTeX">
6 <book id="sonews.xml" lang="en">
7 <title>sonews Usenet News Server</title>
9 <emphasis role="bold">sonews</emphasis> is NNTP server than can provide
10 access to both local and global Usenets newsgroups. It is written in
11 <ulink url="http://java.sun.com/">Java</ulink> and uses a relational
15 <emphasis role="bold">2009/07/01</emphasis>:
16 <emphasis>sonews/0.5.1</emphasis>
17 (<ulink url="files/sonews-0.5.1.tar.bz2">binary tarball</ulink>,
18 <ulink url="files/sonews-0.5.1-src.tar.bz2">source tarball</ulink>) bugfix
20 Broken Cancel-mechanism and broken buildscript fixed.
21 See <ulink url="http://code.xerxys.info:8000/hgwebdir.cgi/sonews-0.5/log/287">
22 changelog</ulink> for more details.
25 <emphasis role="bold">2009/06/29</emphasis>:
26 <emphasis>sonews/0.5.0</emphasis>
27 (<ulink url="files/sonews-0.5.0.tar.bz2">binary tarball</ulink>,
28 <ulink url="files/sonews-0.5.0-src.tar.bz2">source tarball</ulink>) final
30 The setup is a little clumsy but the software is stable and works well.
34 <title>Introduction</title>
35 <para>sonews is a RCF3977 compliant NNTP Usenet server.
36 It is written in Java and uses a relation database management system
37 (RDBMS) as backend (currently
38 <ulink url="http://www.postgresql.com/">PostgreSQL</ulink> and
39 <ulink url="http://www.mysql.com/">MySQL</ulink>).
40 sonews is highly multithreaded and uses Java NIO asynchronous sockets
41 to handle thousands of concurrent connections.</para>
42 <para>sonews is Free and Open Source Software (FOSS) licensed under the
44 <ulink url="http://www.gnu.org/licenses/gpl.html">GNU General Public License</ulink>
45 Version 3 (or later).</para>
48 <title>History</title>
49 <para>Ancestor of sonews is probably the Neat NNTP Daemon (n3tpd)
50 although there is very little code in sonews that can be identified
52 sonews was developed as diploma thesis project of Christian Lins at
53 <ulink url="http://de.sun.com/">StarOffice development</ulink>
54 in Hamburg and is now a Free Software project.</para>
58 <title>Roadmap</title>
60 <title>sonews/1.0</title>
62 Various minor fixes and code cleanup (Storage and Command interface for
63 the upcoming Plugin API).
65 <para>XPAT command for searching, correctly
66 hashed Message-Ids and a news purging command.
67 See <ulink url="http://bugs.xerxys.info/">Bugtracker</ulink> for
68 issues with target sonews/1.0.x.</para>
74 <title>Installation and initial setup</title>
76 <title>Download & Installation</title>
78 <title>Debian based systems</title>
79 <para>You can install sonews with
80 <ulink url="http://www.debian.org/doc/manuals/apt-howto/">APT</ulink>
82 Add the following line to /etc/apt/sources.list:</para>
83 <screen>deb http://packages.xerxys.info/debian/ unstable main</screen>
84 <para>And add the GPG-Key for package authentification, see
85 <ulink url="http://packages.xerxys.info/debian/">Xerxys Debian Repository</ulink>
86 for more details.</para>
87 <para>Then force an update of your local package list:</para>
88 <screen># apt-get update</screen>
89 <para>To install sonews and all prerequisites issue the following command:</para>
90 <screen># apt-get install sonews</screen>
91 <para>This method should work for all recent Debian-based distributions
92 (<ulink url="http://www.debian.org/">Debian</ulink>, <ulink url="http://www.ubuntu.com/">Ubuntu</ulink>, etc.).</para>
96 <title>Other *nix systems</title>
97 <para>See <ulink url="files/">Files Section</ulink> for recent binary and source tarballs.</para>
98 <para>Use the binary archive and extract it in a directory of your choice. Make sure your system
99 provides the necessary prerequisites:</para>
102 <para>Java6 compatible runtime (JRE)</para>
105 <para>Java Mail API implementation, e.g. <ulink url="http://java.sun.com/products/javamail/">Sun Java Mail</ulink>.
106 GNU JavaMail has a broken POP3 Provider and does not work with sonews.</para>
109 <para>JSP Servlet Container (e.g.
110 <ulink url="http://kitten.sonews.org/">Kitten</ulink>) [optional]</para>
117 <title>Initial database setup</title>
118 <para>Before you start sonews, you must prepare the database. Currently sonews is known
119 to work with PostgreSQL and MySQL.</para>
120 <para>It is highly recommended to create an own database for every sonews instance, e.g.
121 called 'sonews'. Additionally, it is recommended to create a unique database user
122 for sonews, e.g. 'sonewsuser'. Please do not use the root user for sonews!
123 The sonews user needs rights for SELECT, INSERT and UPDATE statements.
124 Refer to the database's manual for instructions.</para>
125 <para>You will find the SQL Schema definitions in the helpers subdirectory of
126 the source and binary distributions. You can create the tables manually using
127 this templates or you can use the setup helper:</para>
128 <screen>user@debian$ sonews setup</screen>
129 <para>or on other *nix systems:</para>
130 <screen>user@nix$ java -jar sonews.jar org.sonews.util.DatabaseSetup</screen>
131 <para>The tool will ask for some information about your database environment,
132 connect to the database, create the tables and creates a default bootstrap
133 config file called sonews.conf.</para>
138 <title>Running sonews</title>
140 <title>Configuration</title>
141 <para>There is a bootstrap configuration in /etc/sonews/sonews.conf and a regular configuration
142 in the database table config.</para>
143 <para>There are various configuration values that can be adapted:</para>
146 <term>‘<literal>sonews.article.maxsize</literal>’</term>
148 <para>Maximum allowed body size of a news message given in kilobytes. Please note that
149 for MySQL the ‘<literal>max_allowed_packet</literal>’ configuration variable must
150 be set to a value higher than ‘<literal>sonews.article.maxsize</literal>’ otherwise posting
151 of large mails will fail.</para>
155 <term>‘<literal>sonews.debug</literal>’</term>
158 If set to true every(!) data going through sonews' socket
159 is written to sonews.log. After a high traffic night the logfile can be
160 several gigabytes large, so be careful with this setting.
165 <term>‘<literal>sonews.hostname</literal>’</term>
168 Canonical name of the server instance. This variable is part of
169 the server's hello message to the client and used to generate
171 It is highly recommended to set sonews.hostname to the full
172 qualified domain name (FQDN) of the host machine.
177 <term>‘<literal>sonews.timeout</literal>’</term>
180 Socket timeout for client connections in seconds. Default as
181 recommended in RFC3977 is 180 seconds.
186 <term>‘<literal>sonews.port</literal>’</term>
189 Listening port of sonews daemon. This value can be overridden
190 with the -p command line argument.
195 <term>‘<literal>sonews.xdaemon.host</literal>’</term>
198 Hostname or IP address of the client machine that is allowed to
199 use the XDAEMON command. Default: localhost
207 <title>Command line arguments</title>
208 <para>If you like to start sonews directly, you can use one of the following
210 <screen>java -jar sonews.jar [arguments]
212 -c|-config <path to config file> if custom config file preferred
213 -dumpjdbcdriver Prints out a list of available JDBC drivers
214 -feed Enables feed daemon for pulling news from peer servers
216 -mlgw Enables the Mailinglist Gateway poller
217 -p portnumber Port on which sonews is listening for incoming connections.
218 Overrides port settings in config file and database.</screen>
222 <title>Webinterface</title>
223 <para>The package sonews-web provides an optional webinterface that can be used to
224 review statistical information and configuration values of sonews.</para>
225 <screen>sonews-web start|stop</screen>
226 <para>The webinterface uses the the lightweight Servlet Container Kitten and is
227 per default listening on HTTP-Port 8080 (go to http://localhost:8080/sonews).</para>
231 <title>Newsgroup configuration</title>
233 Currently some manual work is necessary to create a newsgroup hosted
234 by a sonews instance.
237 One possibility is to talk via Telnet to the sonews instance and
238 use the non-standard command XDAEMON.
239 <screen>telnet localhost 119</screen>
240 <screen>XDAEMON GROUPADD local.test 0</screen>
241 Please note that the XDAEMON command has restricted access and is only
242 available via local connections (default, can be changed with config
243 value sonews.xdaemon.host).
246 You can also use the web interface to create newsgroups.
252 <title>Development</title>
253 <para>You're welcome to create patches with bugfixes or additional features. The
254 Mercurial DSCM makes this step an easy task.</para>
255 <para>Just clone the public <ulink url="http://www.selenic.com/mercurial/">Mercurial</ulink> repository:</para>
256 <screen>hg clone http://code.xerxys.info:8000/hg/sonews/ sonews-trunk</screen>
257 <para>Then make your changes, create a bundle of changesets and send this to me via email.
258 Or ask for push access to the public repository.</para>
260 There is a nightly generated <ulink url="apidoc/">Javadoc API documentation</ulink> that will help
261 you to get in touch with the sonews source.
263 <para>Some debugging hints: if the server blocks and does not longer respond you
264 probably found a deadlock. Do not kill the process with "kill -9 <pid>"
265 but send a SIGQUIT signal with "kill -3 <pid>" and the Java VM will output
266 a stracktrace of all threads. This output is the most valuable information to
267 fix the deadlock.</para>
270 <title>Contributors</title>
271 <para>Maintainer and project lead:
272 Christian Lins (contact christian.lins (at) fh-osnabrueck.de)</para>
276 <title>Sponsors</title>
277 <para>The author thanks <ulink url="http://www.sun.com/">Sun Microsystems</ulink> for fully
278 financing the first version of sonews. A really free software supporting company!</para>
279 <para>If you like to support sonews with a donation of any kind (hardware, books, money, donuts,...),
280 feel free to contact the project leader.
281 A friendly email or a bug report is most welcome, too :-)</para>
286 <title>Links and further information</title>
289 <para><ulink url="http://bugs.xerxys.info/">Bugtracker</ulink>, register necessary, see project 'sonews'.</para>
292 <para><ulink url="http://www.sun.com/">Sun Microsystems</ulink>, friendly sponsor.</para>
295 <para><ulink url="http://www.fh-osnabrueck">University of Applied Sciences Osnabrueck</ulink></para>