4 # * Copyright 2002 Paul Mangan <paul@claws-mail.org>
6 # * Reimplemented by Torsten Schoenfeld <kaffeetisch@web.de>
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 3 of the License, or
11 # * (at your option) any later version.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 my $old_config_dir = "$ENV{HOME}/.sylpheed";
24 my $config_dir = `claws-mail --config-dir`;
27 chdir($ENV{ HOME
} . "/$config_dir")
28 or die("You don't appear to have Claws Mail installed\n");
30 ###############################################################################
32 my $normal_headers = qr/^(?:Subject|From|To|Cc)$/;
34 my @new_filters = ("[global]\n");
36 ###############################################################################
40 open(FOLDERLIST
, "<$old_config_dir/folderlist.xml")
41 or die("Can't find '$old_config_dir/folderlist.xml'\n");
42 while (<FOLDERLIST
>) {
43 if (m/<folder type="mh" name="([^"]+)" path="[^"]+"/) {
50 ###############################################################################
52 open(FILTERRC
, "<$old_config_dir/filterrc")
53 or die("Can't find your old filter rules ('$old_config_dir/filterrc')\n");
65 $action) = split(/\t/);
67 $value_one =~ s/\"/\\\"/g ;
68 $value_two =~ s/\"/\\\"/g ;
69 $action = $action eq "m" ?
"move" : "delete";
70 $destination = $destination =~ m!^\#mh/! ?
72 "#mh/$mailbox/$destination";
80 ###########################################################################
82 if ($mode_one % 2 == 0) {
90 $match_type_one = "matchcase";
93 $match_type_one = "regexpcase";
96 ###########################################################################
98 if ($mode_two % 2 == 0) {
105 if ($mode_two <= 1) {
106 $match_type_two = "matchcase";
109 $match_type_two = "regexpcase";
112 ###########################################################################
114 if ($header_one eq "To" && $header_two eq "Cc" ||
115 $header_one eq "Cc" && $header_two eq "To" and
116 $value_one eq $value_two and
117 $mode_one eq $mode_two and
119 if ($action eq "move") {
120 $new_filter = $predicate_one . qq(to_or_cc
$match_type_one "$value_one" move
"$destination"\n);
123 $new_filter = $predicate_one . qq(to_or_cc
$match_type_one "$value_one" delete\n);
127 if ($header_one =~ m/$normal_headers/) {
128 $new_filter .= $predicate_one . lc($header_one) . qq( $match_type_one "$value_one");
131 $new_filter .= $predicate_one . qq(header
"$header_one" $match_type_one "$value_one");
135 if ($header_two =~ m/$normal_headers/) {
136 $new_filter .= qq( $op ) . $predicate_two . lc($header_two) . qq( $match_type_two "$value_two");
139 $new_filter .= qq( $op ) . $predicate_two . qq(header
"$header_two" $match_type_two "$value_two");
143 if (defined($new_filter)) {
144 if ($action eq "move") {
145 $new_filter .= qq( move
"$destination"\n);
148 $new_filter .= qq(delete\n);
153 ###########################################################################
155 push(@new_filters, $new_filter) if (defined($new_filter));
159 ###############################################################################
161 open(MATCHERRC
, ">>matcherrc");
162 print MATCHERRC
@new_filters;
165 print "Converted $#new_filters filters\n";
167 if ($old_config_dir eq $config_dir) {
168 rename("filterrc", "filterrc.old");
169 print "Renamed your old filter rules ('filterrc' to 'filterrc.old')\n";
171 ###############################################################################