2004-12-02 [colin] 0.9.12cvs179
[claws.git] / tools / filter_conv.pl
1 #!/usr/bin/perl -w
2 use strict;
3
4 #  * Copyright 2002 Paul Mangan <claws@thewildbeast.co.uk>
5 #  *
6 #  * Reimplemented by Torsten Schoenfeld <kaffeetisch@web.de>
7 #  *
8 #  * This file is free software; you can redistribute it and/or modify it
9 #  * under the terms of the GNU General Public License as published by
10 #  * the Free Software Foundation; either version 2 of the License, or
11 #  * (at your option) any later version.
12 #  *
13 #  * This program is distributed in the hope that it will be useful, but
14 #  * WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  * General Public License for more details.
17 #  *
18 #  * You should have received a copy of the GNU General Public License
19 #  * along with this program; if not, write to the Free Software
20 #  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #  *
22
23 chdir($ENV{ HOME } . "/.sylpheed") or die("You don't appear to have Sylpheed installed\n");
24
25 ###############################################################################
26
27 my $normal_headers = qr/^(?:Subject|From|To|Cc)$/;
28
29 my @new_filters = ("[global]\n");
30
31 ###############################################################################
32
33 my $mailbox;
34
35 open(FOLDERLIST, "<folderlist.xml") or die("Can't find 'folderlist.xml'\n");
36   while (<FOLDERLIST>) {
37     if (m/<folder type="mh" name="([^"]+)" path="[^"]+"/) {
38       $mailbox = $1;
39       last;
40     }
41   }
42 close FOLDERLIST;
43
44 ###############################################################################
45
46 open(FILTERRC, "<filterrc") or die("Can't find your old filter rules ('filterrc')\n");
47   while (<FILTERRC>) {
48     chomp();
49
50     my ($header_one,
51         $value_one,
52         $op,
53         $header_two,
54         $value_two,
55         $destination,
56         $mode_one,
57         $mode_two,
58         $action) = split(/\t/);
59
60     $value_one =~ s/\"/\\\"/g ;
61     $value_two =~ s/\"/\\\"/g ;
62     $action = $action eq "m" ? "move" : "delete";
63     $destination = $destination =~ m!^\#mh/! ?
64                      $destination :
65                      "#mh/$mailbox/$destination";
66
67     my ($predicate_one,
68         $predicate_two,
69         $match_type_one,
70         $match_type_two,
71         $new_filter);
72
73     ###########################################################################
74
75     if ($mode_one % 2 == 0) {
76       $predicate_one = "~";
77     }
78     else {
79       $predicate_one = "";
80     }
81
82     if ($mode_one <= 1) {
83       $match_type_one = "matchcase";
84     }
85     else {
86       $match_type_one = "regexpcase";
87     }
88
89     ###########################################################################
90
91     if ($mode_two % 2 == 0) {
92       $predicate_two = "~";
93     }
94     else {
95       $predicate_two = "";
96     }
97
98     if ($mode_two <= 1) {
99       $match_type_two = "matchcase";
100     }
101     else {
102       $match_type_two = "regexpcase";
103     }
104
105     ###########################################################################
106
107     if ($header_one eq "To" && $header_two eq "Cc" ||
108         $header_one eq "Cc" && $header_two eq "To" and
109         $value_one eq $value_two and
110         $mode_one eq $mode_two and
111         $op eq "|") {
112       if ($action eq "move") {
113         $new_filter = $predicate_one . qq(to_or_cc $match_type_one "$value_one" move "$destination"\n);
114       }
115       else {
116         $new_filter = $predicate_one . qq(to_or_cc $match_type_one "$value_one" delete\n);
117       }
118     }
119     else {
120       if ($header_one =~ m/$normal_headers/) {
121         $new_filter .= $predicate_one . lc($header_one) . qq( $match_type_one "$value_one");
122       }
123       else {
124         $new_filter .= $predicate_one . qq(header "$header_one" $match_type_one "$value_one");
125       }
126
127       if ($op ne " ") {
128         if ($header_two =~ m/$normal_headers/) {
129           $new_filter .= qq( $op ) . $predicate_two . lc($header_two) . qq( $match_type_two "$value_two");
130         }
131         else {
132           $new_filter .= qq( $op ) . $predicate_two . qq(header "$header_two" $match_type_two "$value_two");
133         }
134       }
135
136       if (defined($new_filter)) {
137         if ($action eq "move") {
138           $new_filter .= qq( move "$destination"\n);
139         }
140         else {
141           $new_filter .= qq(delete\n);
142         }
143       }
144     }
145
146     ###########################################################################
147
148     push(@new_filters, $new_filter) if (defined($new_filter));
149   }
150 close(FILTERRC);
151
152 ###############################################################################
153
154 open(MATCHERRC, ">>matcherrc");
155   print MATCHERRC @new_filters;
156 close(MATCHERRC);
157
158 rename("filterrc", "filterrc.old");
159
160 ###############################################################################
161
162 print "Converted $#new_filters filters\n";
163 print "Renamed your old filter rules ('filterrc' to 'filterrc.old')\n";