diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kmail/kmail-3.1-update-new-mail-notification-settings.pl | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/kmail-3.1-update-new-mail-notification-settings.pl')
-rwxr-xr-x | kmail/kmail-3.1-update-new-mail-notification-settings.pl | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/kmail/kmail-3.1-update-new-mail-notification-settings.pl b/kmail/kmail-3.1-update-new-mail-notification-settings.pl new file mode 100755 index 000000000..61ca42464 --- /dev/null +++ b/kmail/kmail-3.1-update-new-mail-notification-settings.pl @@ -0,0 +1,38 @@ +#!/usr/bin/perl -w + +use strict; + +my $presentation = -1; +my $commandline = ""; +while ( <> ) { + chomp; + if ( /^msgbox-on-mail/ ) { + my ($key,$value) = split /=/; + if( -1 == $presentation ) { + $presentation = 0; + } + $presentation += 2*( $value eq "true" ); + } + elsif ( /^exec-on-mail-cmd/ ) { + my ($key,$value) = split /=/; + $commandline = $value; + } + elsif ( /^exec-on-mail/ ) { + my ($key,$value) = split /=/; + if( -1 == $presentation ) { + $presentation = 0; + } + $presentation += 32*( $value eq "true" ); + } +} + +if ( "" ne $commandline ) { + print "commandline=$commandline\n"; +} +if ( -1 != $presentation ) { + print "presentation=$presentation\n"; +} + +print "# DELETE msgbox-on-mail\n"; +print "# DELETE exec-on-mail\n"; +print "# DELETE exec-on-mail-cmd\n"; |