Update to 1.3.101, remove patch-ab (went upstream):

1.3.101
    Fix inconsistent declaration of grey_on in dccd/dump-clients/dump-clients.c
        reported by Bobby Rose.

1.3.100
    Support groups of DNS blacklists that can be independently enabled
        in per-user whiteclnt files.
    Follow Petar Bogdanovic's suggestion to make ./configure assume that
        `su -` and the default file ownership on NetBSD should be like FreeBSD
    Another tweak to reduce spurious DCC Reputations for 127.0.0.1.
    Dccifd in query mode assumes one recipient and so always generates an
        X-DCC header.
    Tweak proof of concept per-user whitelist cgi scripts in cgi-bin.
    Improve long term client request rate computation to improve how public
        DCC servers handle too active clients.
    Count anonymous clients ignored by `dccd -uFOREVER` among `cdcc stats`
        "bad IDs" to more easily detect local clients that lack client-IDs
        and passwords.
    `misc/hackmc -M` now reports mail rejected with the sendmail
        FEATURE(`badmx') to the DCC with counts of "MANY"
This commit is contained in:
Petar Bogdanovic 2009-01-09 17:29:38 +00:00 committed by Thomas Klausner
parent ddd6944cb0
commit e747052e38
3 changed files with 6 additions and 32 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.3 2008/12/30 23:05:48 pebog Exp $
# $NetBSD: Makefile,v 1.4 2009/01/09 17:29:38 pebog Exp $
DISTNAME= dcc-1.3.99
DISTNAME= dcc-1.3.101
#PKGREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://www.rhyolite.com/dcc/source/old/

View file

@ -1,7 +1,6 @@
$NetBSD: distinfo,v 1.1.1.1 2008/12/22 17:26:14 pebog Exp $
$NetBSD: distinfo,v 1.2 2009/01/09 17:29:38 pebog Exp $
SHA1 (dcc-1.3.99.tar.Z) = 8baf991fe07b04bc2311d56eea7366dc3e22db7f
RMD160 (dcc-1.3.99.tar.Z) = 4913fa8a7b924cff4d5043ee17f7e93c9fd3e0bd
Size (dcc-1.3.99.tar.Z) = 2588124 bytes
SHA1 (dcc-1.3.101.tar.Z) = d909cb08fd6877d50f446e78bae6172c985814fd
RMD160 (dcc-1.3.101.tar.Z) = d10b1b08f7646cbb4707700392fab6fcaf32bde7
Size (dcc-1.3.101.tar.Z) = 2448842 bytes
SHA1 (patch-aa) = a92de2879670d11f2a6b9287dc57597cb34bae2c
SHA1 (patch-ab) = 55279e85a8a552447545be9c0528d62e39fbae2b

View file

@ -1,25 +0,0 @@
$NetBSD: patch-ab,v 1.1.1.1 2008/12/22 17:26:14 pebog Exp $
+ NetBSD su(1) understands -
+ the default file-ownership on NetBSD should be root:wheel
--- configure.orig 2008-10-16 02:06:16.000000000 +0200
+++ configure
@@ -1795,7 +1795,7 @@ fi
# choose between `su` and `su -`
case "$TARGET_SYS" in
- Linux|BSD/OS|FreeBSD|DragonFly)
+ Linux|BSD/OS|FreeBSD|DragonFly|NetBSD)
# `su -` is required on Linux and desirable where it works
# clear $TERM because some too smart by half systems spew /etc/motd
DCC_SU="TERM= su -";;
@@ -2815,7 +2815,7 @@ case "$TARGET_SYS" in
DCC_OWN=daemon
DCC_GRP=daemon
;;
- FreeBSD)
+ FreeBSD|NetBSD)
DCCSUID=root
DCC_OWN=root
DCC_GRP=wheel