[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: メーリングリスト検索ページ
- From: knok@xxxxxxxxxxxxx (NOKUBI Takatsugu)
- Subject: Re: メーリングリスト検索ページ
- Date: Tue, 19 Feb 2002 10:34:02 +0900
- X-authentication-warning: ns1.eal.or.jp: Host puti.eal.or.jp [211.7.33.2] claimed to be puti
- X-ml-info: If you have a question, send e-mail with the body "help" (without quotes) to the address debian-www-ctl@debian.or.jp; help=<mailto:debian-www-ctl@debian.or.jp?body=help>
- X-ml-name: debian-www
- X-mlserver: fml [fml 3.0pl#17]; post only (only members can post)
- Message-id: <200202190133.KAA14145@xxxxxxxxxxxxx>
- X-mail-count: 02896
- X-mailer: mnews [version 1.22] 1999-12/19(Sun)
<20020218.194411.112631266.fuyuneko@xxxxxxxxxxxx>の記事において
fuyuneko@xxxxxxxxxxxxさんは書きました。
>> > mailutime というコマンドで rfc822 形式のファイルならすぐに直せるので
>> > すが、MHonArc のファイルはちょっとそこまでお手軽にはゆかないですね...
>> > まあ同じようなスクリプトを書けばすぐ済む話ではあるのですが。
>>
>> 手元にないのですけど、Perlクックブックのレシピ3.7がそれっぽいです。
思ったよりも簡単でした。MHonArc は <!--X-Date: ... --> という形式で
日付け情報を残すので、それもみるように mailutime を改良すれば良いだけ
でした。
次の Namazu のリリースで対応することにしますが、簡単なので末尾にもパッ
チをつけておきます。
# これで万事解決?
--
NOKUBI Takatsugu
E-mail: knok@xxxxxxxxxxxxx
knok@xxxxxxxxxx / knok@debian.org
--- /usr/bin/mailutime Sun Jan 27 21:34:18 2002
+++ mailutime Tue Feb 19 10:24:19 2002
@@ -64,7 +64,7 @@
$fh->open("$file") || die "$!: $file\n";
while (<$fh>) {
last if /^$/;
- $date = $1 if /^Date: (.*)/i;
+ $date = $1 if /^(?:<!--X-)?Date: (.*)/i;
}
unless (defined($date)) {
print STDERR "$file: 'Date:' not found!\n";