380869a9225d5d2b08e0b6df753eec7bdf152858
[claws.git] / tools / filter_conv.pl
1 #!/usr/bin/perl
2
3 #  * Copyright 2001 Paul Mangan <claws@thewildbeast.co.uk>
4 #  *
5 #  * This file is free software; you can redistribute it and/or modify it
6 #  * under the terms of the GNU General Public License as published by
7 #  * the Free Software Foundation; either version 2 of the License, or
8 #  * (at your option) any later version.
9 #  *
10 #  * This program is distributed in the hope that it will be useful, but
11 #  * WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  * General Public License for more details.
14 #  *
15 #  * You should have received a copy of the GNU General Public License
16 #  * along with this program; if not, write to the Free Software
17 #  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #  *
19
20 chdir;
21 chdir '.sylpheed' || die("You don't appear to have Sylpheed installed\n");
22
23 open(FOLDERLIST, "<folderlist.xml") || die("Can't find folderlist.xml\n");
24 @folderlist = <FOLDERLIST>;
25 close FOLDERLIST;
26
27 foreach $folderlist (@folderlist) {
28         if ($folderlist =~ m/<folder type="mh"/) {
29                 $folderlist =~ s/<folder type="mh" name="//;
30                 $folderlist =~ s/" path="[A-Z0-9]+">\n//ig;
31                 $folderlist =~ s/^ +//;
32                 $mailbox = $folderlist;
33         }
34 }
35
36 open (FILTERRC, "<filterrc") || die("Can't find your old filter rules\n");
37 @input_file = <FILTERRC>;
38 close FILTERRC;
39
40 $WRITE_THIS = "";
41 $COUNT      = "0";
42
43 foreach $input_file (@input_file) {
44         $COUNT++;
45         @split_lines = split("\t", $input_file);
46         if (($split_lines[3]) && ($split_lines[0] eq "To")) {
47                 $WRITE_THIS .= "to_or_cc match \"$split_lines[1]\"";
48         } elsif ($split_lines[0] eq "To") {
49                 $WRITE_THIS .= "to match \"$split_lines[1]\"";
50         } elsif ($split_lines[0] eq "Reply-To") {
51                 $WRITE_THIS .= "inreplyto match \"$split_lines[1]\"";
52         } elsif ($split_lines[0] eq "Subject") {
53                 $WRITE_THIS .= "subject match \"$split_lines[1]\"";
54         } elsif (($split_lines[0] eq "From") || ($split_lines[0] eq "Sender")){
55                 $WRITE_THIS .= "from match \"$split_lines[1]\"";
56         }
57         if (!$split_lines[5]) {
58                 $WRITE_THIS .= " delete";
59         } elsif ($split_lines[8] == "m"){
60                 $WRITE_THIS .= " move \"\#mh/$mailbox/$split_lines[5]\"";
61         }
62         $WRITE_THIS .= "\n";
63         @split_lines = "";
64 }
65
66 open (FILTERINGRC, ">filteringrc");
67 print FILTERINGRC $WRITE_THIS;
68 close FILTERINGRC;
69
70 print "\nYou have sucessfully converted $COUNT filtering rules\n\n";
71 exit;
72