eric@snark.uu.net (Eric S. Raymond) (09/14/89)
...and all known bugs have been fixed. This version has been running production on 4.3BSD and System V systems for almost two months with no problems. Were it not for the still-missing NNTP changes, I'd call this final release. If you have Internet access you can FTP it from ~/news/tmnn7-8.tar.Z. Beta sites with uucp-only connections will receive it via uucp transfer. There is one new feature in this release; full implementation of filter coprocesses for readers. Enjoy! -- Eric S. Raymond = eric@snark.uu.net (mad mastermind of TMN-Netnews)
karl@triceratops.cis.ohio-state.edu (Karl Kleinpaste) (09/14/89)
eric@snark.uu.net writes:
If you have Internet access you can FTP it from ~/news/tmnn7-8.tar.Z.
It is also now available via UUCP from osu-cis, in
~/news/tmnn/tmnn7-8.tar.Z-part-a[a-k].
--Karl
cooper@hp-ses.SDE.HP.COM (Ken Cooper) (09/20/89)
I'm in the process of trying to install TMNN, and I've run up against a little problem: there is a C source file in the D.network directory that refers to an include file "response_codes.h", but this file is nowhere to be found. Any idea where I can get it? Also, I found that when I asked for profiles, the makefiles didn't make a profile directory in $(MAINDIR). Ken Cooper Integrated Office Systems Hewlett-Packard cooper@hpiosa.corp.hp.com
karl@triceratops.cis.ohio-state.edu (Karl Kleinpaste) (09/20/89)
cooper@hp-ses.sde.hp.com writes:
I'm in the process of trying to install TMNN, and I've run up against a
little problem: there is a C source file in the D.network directory that
refers to an include file "response_codes.h", but this file is nowhere to
be found. Any idea where I can get it?
/*
* Response codes for NNTP server
*
* @(#)response_codes.h 1.6 (Berkeley) 2/6/86
*
* First digit:
*
* 1xx Informative message
* 2xx Command ok
* 3xx Command ok so far, continue
* 4xx Command was correct, but couldn't be performed
* for some specified reason.
* 5xx Command unimplemented, incorrect, or a
* program error has occured.
*
* Second digit:
*
* x0x Connection, setup, miscellaneous
* x1x Newsgroup selection
* x2x Article selection
* x3x Distribution
* x4x Posting
*/
#define CHAR_INF '1'
#define CHAR_OK '2'
#define CHAR_CONT '3'
#define CHAR_ERR '4'
#define CHAR_FATAL '5'
#define INF_HELP 100 /* Help text on way */
#define INF_DEBUG 199 /* Debug output */
#define OK_CANPOST 200 /* Hello; you can post */
#define OK_NOPOST 201 /* Hello; you can't post */
#define OK_SLAVE 202 /* Slave status noted */
#define OK_GOODBYE 205 /* Closing connection */
#define OK_GROUP 211 /* Group selected */
#define OK_GROUPS 215 /* Newsgroups follow */
#define OK_ARTICLE 220 /* Article (head & body) follows */
#define OK_HEAD 221 /* Head follows */
#define OK_BODY 222 /* Body follows */
#define OK_NOTEXT 223 /* No text sent -- stat, next, last */
#define OK_NEWNEWS 230 /* New articles by message-id follow */
#define OK_NEWGROUPS 231 /* New newsgroups follow */
#define OK_XFERED 235 /* Article transferred successfully */
#define OK_POSTED 240 /* Article posted successfully */
#define CONT_XFER 335 /* Continue to send article */
#define CONT_POST 340 /* Continue to post article */
#define ERR_GOODBYE 400 /* Have to hang up for some reason */
#define ERR_NOGROUP 411 /* No such newsgroup */
#define ERR_NCING 412 /* Not currently in newsgroup */
#define ERR_NOCRNT 420 /* No current article selected */
#define ERR_NONEXT 421 /* No next article in this group */
#define ERR_NOPREV 422 /* No previous article in this group */
#define ERR_NOARTIG 423 /* No such article in this group */
#define ERR_NOART 430 /* No such article at all */
#define ERR_GOTIT 435 /* Already got that article, don't send */
#define ERR_XFERFAIL 436 /* Transfer failed */
#define ERR_XFERRJCT 437 /* Article rejected, don't resend */
#define ERR_NOPOST 440 /* Posting not allowed */
#define ERR_POSTFAIL 441 /* Posting failed */
#define ERR_COMMAND 500 /* Command not recognized */
#define ERR_CMDSYN 501 /* Command syntax error */
#define ERR_ACCESS 502 /* Access to server denied */
#define ERR_FAULT 503 /* Program fault, command not performed */
ccea3@rivm.UUCP (Adri Verhoef) (09/21/89)
> refers to an include file "response_codes.h", but this file is nowhere to > be found. Any idea where I can get it? > * @(#)response_codes.h 1.6 (Berkeley) 2/6/86 There may be many sites that don't like the length of this filename, as it is longer than 14 characters. Including my site (17x System V.3.0 and 7x System V.2.0). -- Adri Verhoef (uunet!rivm!a3), site administrator of the National Institute for Public Health and Environmental Protection (RIVM).