#!/usr/local/bin/perl #-*- perl -*- # # Copyright (C) 2001 Ken'ichi Fukamachi # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # # $FML: __template.pm,v 1.5 2001/04/03 09:45:39 fukachan Exp $ # while (<>) { if (/message-id/i) { my $time = time; s/\d+/$time.$$/g; } print ; } exit 0;