view src/Makefile.am @ 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 52f467c7213b
children
line wrap: on
line source

# This Makefile.am is used by automake to generate the Makefile.in,
# which in turn will be used to generate the Makefile.

bin_PROGRAMS = noffle

noffle_SOURCES = \
authenticate.c authenticate.h \
client.c client.h \
common.h \
configfile.c configfile.h \
content.c content.h \
control.c control.h \
database.c database.h \
dynamicstring.c dynamicstring.h \
expire.c expire.h \
fetch.c fetch.h \
fetchlist.c fetchlist.h \
filter.c filter.h \
group.c group.h \
itemlist.c itemlist.h \
lock.c lock.h \
log.c log.h \
noffle.c \
online.c online.h \
outgoing.c outgoing.h \
over.c over.h \
portable.h \
post.c post.h \
protocol.c protocol.h \
pseudo.c pseudo.h \
request.c request.h \
server.c server.h \
util.c util.h \
wildmat.c wildmat.h

noffle_LDADD = -lgdbm $(LIBPAM)

tags:
	etags $(noffle_SOURCES)