]> git.pld-linux.org Git - packages/icedove.git/commitdiff
- copy profile from thunderbird if its available and if no icedove
authorhawk <hawk@pld-linux.org>
Thu, 26 Jun 2008 19:13:28 +0000 (19:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
  profile exists

Changed files:
    icedove.sh -> 1.3

icedove.sh

index 3beb66896a6106c171e497440e320947503b10c4..dde3a013f583c737c9c3e4ae3dff1a7aa05eceed 100644 (file)
@@ -3,6 +3,15 @@
 
 LIBDIR="@LIBDIR@/icedove"
 
+# copy profile from Thunderbird if its available and if no Icedove
+# profile exists
+if [ ! -d $HOME/.icedove ]; then
+       if [ -d $HOME/.thunderbird ]; then
+               echo "Copying profile from Thunderbird"
+               cp -rf $HOME/.thunderbird $HOME/.icedove
+       fi
+fi
+
 ICEDOVE="$LIBDIR/icedove"
 
 if [ "$1" == "-remote" ]; then
This page took 0.053963 seconds and 4 git commands to generate.