summaryrefslogtreecommitdiffstats
path: root/tderesources/kolab/upgrade-resourcetype.pl
diff options
context:
space:
mode:
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 00000000..98337a88
--- /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";
+ }
+ }
+}