filter_conv.pl now writes to matcherrc
[claws.git] / tools / filter_conv.pl
index e932a5c258221c207296b497bf47d5bbf7d4fc94..6ad208bf04436d28f4330f9f2b393564bd173f4b 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-#  * Copyright 2001 Paul Mangan <claws@thewildbeast.co.uk>
+#  * Copyright 2002 Paul Mangan <claws@thewildbeast.co.uk>
 #  *
 #  * This file is free software; you can redistribute it and/or modify it
 #  * under the terms of the GNU General Public License as published by
 #  *
 
 chdir;
-chdir '.sylpheed' || die("You don't appear to have Sylpheed installed");
+chdir '.sylpheed-claws.bakup-test' || die("You don't appear to have Sylpheed installed\n");
 
-open(FOLDERLIST, "<folderlist.xml") || warn("Can't find folderlist.xml, guessing that you use 'Mail'");
+open(FOLDERLIST, "<folderlist.xml") || die("Can't find folderlist.xml\n");
 @folderlist = <FOLDERLIST>;
 close FOLDERLIST;
 
 foreach $folderlist (@folderlist) {
        if ($folderlist =~ m/<folder type="mh"/) {
-                if ($folderlist =~ m/name="Mailbox"/) {
-                       $TOPBOXIS = "Mailbox";
-                } else {
-                       $TOPBOXIS = "Mail";
-                }
+               $folderlist =~ s/<folder type="mh" name="//;
+                $folderlist =~ s/" path="[A-Z0-9]+">\n//ig;
+                $folderlist =~ s/^ +//;
+                $mailbox = $folderlist;
         }
 }
 
-if (!$TOPBOXIS) {
-       $TOPBOXIS = "Mail";
-}
-
-open (FILTERRC, "<filterrc") || die("Can't find your old filter rules");
-@input_file = <FILTERRC>;
+open (FILTERRC, "<filterrc") || die("Can't find your old filter rules\n");
+@filterrc = <FILTERRC>;
 close FILTERRC;
 
 $WRITE_THIS = "";
 $COUNT      = "0";
 
-foreach $input_file (@input_file) {
-$COUNT++;
-@split_lines = split("\t", $input_file);
-if (($split_lines[3]) && ($split_lines[0] eq "To")) {
-$WRITE_THIS .= "to_or_cc match \"$split_lines[1]\"";
-} elsif ($split_lines[0] eq "To") {
-$WRITE_THIS .= "to match \"$split_lines[1]\"";
-} elsif ($split_lines[0] eq "Reply-To") {
-$WRITE_THIS .= "inreplyto match \"$split_lines[1]\"";
-} elsif ($split_lines[0] eq "Subject") {
-$WRITE_THIS .= "subject match \"$split_lines[1]\"";
-} elsif (($split_lines[0] eq "From") || ($split_lines[0] eq "Sender")){
-$WRITE_THIS .= "from match \"$split_lines[1]\"";
+if (-e "matcherrc") {
+       open (MATCHER, "<matcherrc") || die("Can't open matcherrc\n");
+       @matcherrc = <MATCHER>;
+       close MATCHER;
+               foreach $matcherrc (@matcherrc) {
+                       $WRITE_THIS .= $matcherrc;
+               }
 }
-if (!$split_lines[5]) {
-$WRITE_THIS .= " delete";
-} elsif ($split_lines[8] == "m"){
-$WRITE_THIS .= " move \"\#mh/$TOPBOXIS/$split_lines[5]\"";
-}
-$WRITE_THIS .= "\n";
 
-@split_lines = "";
+$WRITE_THIS .= "[global]\n";
+
+foreach $filterrc (@filterrc) {
+       $COUNT++;
+       @split_lines = split("\t", $filterrc);
+       if (($split_lines[3]) && ($split_lines[0] eq "To")) {
+               $WRITE_THIS .= "to_or_cc match \"$split_lines[1]\"";
+       } elsif ($split_lines[0] eq "To") {
+               $WRITE_THIS .= "to match \"$split_lines[1]\"";
+       } elsif ($split_lines[0] eq "Reply-To") {
+               $WRITE_THIS .= "inreplyto match \"$split_lines[1]\"";
+       } elsif ($split_lines[0] eq "Subject") {
+               $WRITE_THIS .= "subject match \"$split_lines[1]\"";
+       } elsif (($split_lines[0] eq "From") || ($split_lines[0] eq "Sender")){
+               $WRITE_THIS .= "from match \"$split_lines[1]\"";
+       }
+       if (!$split_lines[5]) {
+               $WRITE_THIS .= " delete";
+       } elsif ($split_lines[8] == "m"){
+               $WRITE_THIS .= " move \"\#mh/$mailbox/$split_lines[5]\"";
+       }
+       $WRITE_THIS .= "\n";
+       @split_lines = "";
 }
 
-open (FILTERINGRC, ">filteringrc");
-print FILTERINGRC $WRITE_THIS;
-close FILTERINGRC;
+open (MATCHERRC, ">matcherrc");
+print MATCHERRC $WRITE_THIS;
+close MATCHERRC;
 
 print "\nYou have sucessfully converted $COUNT filtering rules\n\n";
 exit;