From owner-freebsd-questions@FreeBSD.ORG Thu Jan 27 12:32:42 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D31016A4CE for ; Thu, 27 Jan 2005 12:32:42 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56D0B43D1F for ; Thu, 27 Jan 2005 12:32:41 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])j0RCWciu026343; Thu, 27 Jan 2005 14:32:38 +0200 Received: by orion.daedalusnetworks.priv (Postfix, from userid 1001) id DF80B2A42F; Thu, 27 Jan 2005 14:32:37 +0200 (EET) Date: Thu, 27 Jan 2005 14:32:37 +0200 From: Giorgos Keramidas To: Mikko Heiskanen Message-ID: <20050127123237.GB1286@orion.daedalusnetworks.priv> References: <1106824011.86743.21.camel@whitecortex.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1106824011.86743.21.camel@whitecortex.net> cc: freebsd-questions@freebsd.org Subject: Re: Script to merge mailinglist archives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jan 2005 12:32:42 -0000 On 2005-01-27 13:06, Mikko Heiskanen wrote: > I've found archives of freebsd-questions mailinglist very useful. > But I have found them difficult to search, as in one month there can be > many archives, not just one per month. If you have the mail archives of every week in Unix mbox format, you can simply `join' the archives by cat(1): % cd ~/mail-archive/freebsd/questions/2004/10 % cat * > /tmp/freebsd-questions If that is not sufficient for your purpose or you just feel like a bit of extra fun is ok, you can use formail(1) and procmail(1) to do custom filtering of your own. Just set up a custom filter list in a file of your choise, and pipe the messages to formail/procmail: % cd ~/mail-archive/freebsd/questions/2004/10 % cat * | formail -s procmail /tmp/customfilter Cheers, Giorgos