comparison ChangeLog @ 288:c02c4eb95f95 noffle

[svn] * src/configfile.h,src/configfile.c,docs/noffle.conf.5: Add noffle-user and noffle-group configs. * src/configfile.c,src/fetch.c,src/fetchlist.c,src/protocol.c, src/server.c: Replace strcpy() with Utl_cpyStr() where appropriate. See Debian bug 168128. * src/control.c,src/configfile.c,src/noffle.c: Replace [s]scanf("%s") with [s]scanf(MAXCHAR_FMT). * src/noffle.c: Log warning if noffle.conf is world readable. * src/noffle.c: Restrict most options to news admins; i.e. those who are root or news on running Noffle. * Makefile.in,acconfig.h,aclocal.m4,config.h.in,configure,configure.in, docs/Makefile.in,docs/noffle.conf.5,packages/Makefile.in, packages/redhat/Makefile.in,src/Makefile.am,src/Makefile.in, src/authenticate.c,src/authenticate.h,src/noffle.c,src/server.c: Add basic authentication using either Noffle-specific user file or authenticating via PAM (service 'noffle'). PAM authentication needs to run as root, so a Noffle server that needs PAM must be started by root. Helpful (?) error messages will be logged if not. Noffle will switch ruid and euid to 'news' (or whatever is configured) ASAP. * src/noffle.c: Add uid checking.
author bears
date Fri, 10 Jan 2003 23:25:45 +0000
parents baa6408d1bbc
children 0eaad46e56e2
comparison
equal deleted inserted replaced
287:01755687c565 288:c02c4eb95f95
1 Fri Jan 10 2003 Jim Hague <jim.hague@acm.org>
2
3 * docs/noffle.1: Correct Noffle home page location and add Mirko as author.
4 Also update Markus's email. Debian bug 173743.
5 * AUTHORS. Great maintainer I am, can't even credit myself.
6 * src/fetch.c: Add Reply-To to the front of the list of headers searched
7 for the article author's email when sending posting SNAFU message.
8 Debian bug 156952.
9 * src/configfile.h,src/configfile.c,docs/noffle.conf.5: Add noffle-user
10 and noffle-group configs.
11 * src/configfile.c,src/fetch.c,src/fetchlist.c,src/protocol.c,
12 src/server.c: Replace strcpy() with Utl_cpyStr() where appropriate.
13 See Debian bug 168128.
14 * src/client.c. Replace strcpy() here too.
15 * src/control.c,src/configfile.c,src/noffle.c: Replace [s]scanf("%s")
16 with [s]scanf(MAXCHAR_FMT).
17 * Makefile.am: Install executable owner news.news mode 06755. Install
18 sample noffle.conf as 0640 news.news.
19 * src/noffle.c: Log warning if noffle.conf is world readable.
20 * src/noffle.c: Restrict most options to news admins; i.e. those who
21 are root or news on running Noffle.
22 * src/configfile.c: Change snprintf() to Utl_cpyStr();
23 * Makefile.in,acconfig.h,aclocal.m4,config.h.in,configure,configure.in,
24 docs/Makefile.in,docs/noffle.conf.5,packages/Makefile.in,
25 packages/redhat/Makefile.in,src/Makefile.am,src/Makefile.in,
26 src/authenticate.c,src/authenticate.h,src/noffle.c,src/server.c:
27 Add basic authentication using either Noffle-specific user file
28 or authenticating via PAM (service 'noffle'). PAM authentication
29 needs to run as root, so a Noffle server that needs PAM
30 must be started by root. Helpful (?) error messages will be logged
31 if not. Noffle will switch ruid and euid to 'news' (or whatever
32 is configured) ASAP.
33 * src/noffle.c: Add uid checking.
34
1 Mon Jan 6 2003 Jim Hague <jim.hague@acm.org> 35 Mon Jan 6 2003 Jim Hague <jim.hague@acm.org>
2 36
3 * src/database.c,src/post.c,src/protocol.h,src/protocol.c: When posting, 37 * src/database.c,src/post.c,src/protocol.h,src/protocol.c: When posting,
4 check the article for those headers that are specified in section 38 check the article for those headers that are specified in section
5 5 of the IETF draft and ensure they only occur once. 39 5 of the IETF draft and ensure they only occur once.