You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
649 B
23 lines
649 B
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
# This script updates some configuration keys
|
|
|
|
# read the whole config file
|
|
my $currentGroup = "";
|
|
my %configFile;
|
|
while ( <> ) {
|
|
chomp; # eat the trailing '\n'
|
|
next if ( /^$/ ); # skip empty lines
|
|
next if ( /^\#/ ); # skip comments
|
|
if ( /^\[/ ) { # group begin
|
|
$currentGroup = $_;
|
|
next;
|
|
} elsif ( $currentGroup =~ /^\[Filter #[0-9]+\]$/ && /^Icon=/ ) {
|
|
my ($key,$value) = split /=/;
|
|
print "# DELETE $currentGroup$key\n${currentGroup}\nIcon=mail_spam\n" if $value eq "mark_as_spam";
|
|
print "# DELETE $currentGroup$key\n${currentGroup}\nIcon=mail_ham\n" if $value eq "mark_as_ham";
|
|
}
|
|
}
|