diff options
author | dillo <dillo> | 2001-05-23 13:15:34 +0000 |
---|---|---|
committer | dillo <dillo> | 2001-05-23 13:15:34 +0000 |
commit | 2a70b23725e9afe44e476d80655db85f2ffc653d (patch) | |
tree | 3f035b580c7c45c7c612ca080a137a56f4900ecd /news | |
parent | 178ada5cdff5c6d9ea6d047ddaad7a2d8b59cedd (diff) | |
download | pkgsrc-2a70b23725e9afe44e476d80655db85f2ffc653d.tar.gz |
fix bug: Rereading active file doesn't reread active.mail (MH box
pseudo newsgroups), bumping version to 1.4.5nb1. Patches sent to
maintainers.
Diffstat (limited to 'news')
-rw-r--r-- | news/tin/Makefile | 3 | ||||
-rw-r--r-- | news/tin/distinfo | 4 | ||||
-rw-r--r-- | news/tin/patches/patch-ab | 14 | ||||
-rw-r--r-- | news/tin/patches/patch-ac | 25 |
4 files changed, 44 insertions, 2 deletions
diff --git a/news/tin/Makefile b/news/tin/Makefile index 0786c5e0246..9c3388e3eab 100644 --- a/news/tin/Makefile +++ b/news/tin/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2001/05/21 00:28:43 hubertf Exp $ +# $NetBSD: Makefile,v 1.9 2001/05/23 13:15:34 dillo Exp $ # $FreeBSD Id: Makefile,v 1.17 1997/06/16 06:39:51 max Exp DISTNAME= tin-1.4.5 +PKGNAME= ${DISTNAME}nb1 CATEGORIES= news MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/current/ \ ftp://ftp.cs.tu-berlin.de/pub/net/news/tin/current/ \ diff --git a/news/tin/distinfo b/news/tin/distinfo index 65f419b9ed9..655c37a0001 100644 --- a/news/tin/distinfo +++ b/news/tin/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.3 2001/05/21 00:28:43 hubertf Exp $ +$NetBSD: distinfo,v 1.4 2001/05/23 13:15:34 dillo Exp $ SHA1 (tin-1.4.5.tar.bz2) = e28e05e080cf05ed9576cacbc96ad984633f8a87 Size (tin-1.4.5.tar.bz2) = 690031 bytes SHA1 (patch-aa) = da46ab8dee8c3319a5e8fd18580cd573b611cbca +SHA1 (patch-ab) = 31d7ce5fa40cff4ec34e87d5547e0943ca58a8a1 +SHA1 (patch-ac) = 072fc6aab131e515262e204bb87ef0cf999d7c68 diff --git a/news/tin/patches/patch-ab b/news/tin/patches/patch-ab new file mode 100644 index 00000000000..c46fe0db11e --- /dev/null +++ b/news/tin/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2001/05/23 13:15:34 dillo Exp $ + +--- src/active.c.orig Tue May 22 14:01:24 2001 ++++ src/active.c Tue May 22 14:00:54 2001 +@@ -110,6 +110,9 @@ + + vWriteNewsrc (); + read_news_active_file (); ++#if !defined(INDEX_DAEMON) && defined(HAVE_MH_MAIL_HANDLING) ++ read_mail_active_file (); ++#endif /* !INDEX_DAEMON && HAVE_MH_MAIL_HANDLING */ + + if (read_cmd_line_groups ()) + command_line = TRUE; diff --git a/news/tin/patches/patch-ac b/news/tin/patches/patch-ac new file mode 100644 index 00000000000..1791a5e2f95 --- /dev/null +++ b/news/tin/patches/patch-ac @@ -0,0 +1,25 @@ +$NetBSD: patch-ac,v 1.1 2001/05/23 13:15:34 dillo Exp $ + +--- src/mail.c.orig Mon Jul 3 13:17:46 2000 ++++ src/mail.c Tue May 22 14:22:33 2001 +@@ -62,6 +62,20 @@ + continue; + + /* ++ * Update mailgroup info ++ */ ++ if ((ptr = psGrpFind (buf)) != NULL) { ++ if (strcmp(ptr->spooldir, my_spooldir) != 0) { ++ free(ptr->spooldir); ++ ptr->spooldir = my_strdup(my_spooldir); ++ } ++ ptr->xmax = max; ++ ptr->xmin = min; ++ ++ continue; ++ } ++ ++ /* + * Load mailgroup into group hash table + */ + if ((ptr = psGrpAdd (buf)) == NULL) |