]> the.earth.li Git - htag.git/blob - plugins/20substsig
Import Upstream version 0.0.23
[htag.git] / plugins / 20substsig
1 #!/usr/bin/perl -w
2
3 # Copyright (C) 2000-2003 Simon Huggins
4 # substsig substitutes parts of signatures 
5
6 # This program is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by the Free
8 # Software Foundation; either version 2 of the License, or (at your option)
9 # any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 # for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc., 59
18 # Temple Place, Suite 330, Boston, MA 02111-1307  USA
19
20 use strict;
21
22 my ($sig);
23
24 process_msgbody($cfg{'msgfile'});
25 open(SIG, "<$cfg{'tmpsigfile'}") or htagdie "$0: Cannot open $cfg{'tmpsigfile'}: $!\n";
26 while(<SIG>) {
27         $sig .= $_;
28 }
29 close(SIG);
30 if (defined $sig) {
31         $sig=subst_macros($sig);
32         open(SIG, ">$cfg{'tmpsigfile'}") or htagdie "$0: Cannot open $cfg{'tmpsigfile'}: $!\n";
33         print SIG $sig;
34         close(SIG);
35 }
36 return;