summaryrefslogtreecommitdiffstats
path: root/tderesources/kolab/upgrade-resourcetype.pl
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
commitb363d2579af0a11b77e698aed2e1021c2233b644 (patch)
treef4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /tderesources/kolab/upgrade-resourcetype.pl
parent61bddfe3a7226b18c68a76124b727c736f431688 (diff)
downloadtdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz
tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tderesources/kolab/upgrade-resourcetype.pl')
-rw-r--r--tderesources/kolab/upgrade-resourcetype.pl24
1 files changed, 24 insertions, 0 deletions
diff --git a/tderesources/kolab/upgrade-resourcetype.pl b/tderesources/kolab/upgrade-resourcetype.pl
new file mode 100644
index 000000000..98337a88d
--- /dev/null
+++ b/tderesources/kolab/upgrade-resourcetype.pl
@@ -0,0 +1,24 @@
+#!/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 = $1;
+ next;
+ } elsif ( $currentGroup =~ /^Resource/ ) {
+ my ($key,$value) = split /=/;
+ if ( $key eq "ResourceType" and $value eq "kolab" ) {
+ print "# DELETE [$currentGroup]$key\n";
+ print "[$currentGroup]\nResourceType=imap\n";
+ }
+ }
+}