]> git.pld-linux.org Git - packages/icedove.git/blobdiff - icedove.sh
- release 2
[packages/icedove.git] / icedove.sh
index 3beb66896a6106c171e497440e320947503b10c4..6c88b2e80509c2b9bba7c701eb5969001f92b602 100644 (file)
@@ -3,21 +3,38 @@
 
 LIBDIR="@LIBDIR@/icedove"
 
+# copy profile from Thunderbird if its available and if no Icedove
+# profile exists
+if [ ! -d $HOME/.icedove ] && [ -d $HOME/.thunderbird ]; then
+       echo "Copying profile from Thunderbird"
+       cp -a $HOME/.thunderbird $HOME/.icedove
+fi
+
+# compreg.dat and/or chrome.rdf will screw things up if it's from an
+# older version. http://bugs.gentoo.org/show_bug.cgi?id=63999
+for f in ~/.icedove/*/{compreg.dat,chrome.rdf,XUL.mfasl}; do
+       [ -f "$f" ] || continue
+       if [ "$f" -ot "$0" ] || [ "$f" -ot "$LIBDIR/components/compreg.dat" ]; then
+               echo "Removing $f leftover from older Icedove"
+               rm -f "$f"
+       fi
+done
+
 ICEDOVE="$LIBDIR/icedove"
 
-if [ "$1" == "-remote" ]; then
-       $ICEDOVE "$@"
+if [ "$1" = "-remote" ]; then
+       exec $ICEDOVE "$@"
 else
-       PING=`$ICEDOVE -remote 'ping()' 2>&1 >/dev/null`
+       PING=$($ICEDOVE -remote 'ping()' 2>&1 >/dev/null)
        if [ -n "$PING" ]; then
-               $ICEDOVE "$@"
+               exec $ICEDOVE "$@"
        else
                case "$1" in
-                   -compose|-editor)
-                       $ICEDOVE -remote 'xfeDoCommand (composeMessage)'
+               -compose|-editor)
+                       exec $ICEDOVE -remote 'xfeDoCommand (composeMessage)'
                        ;;
-                   *)
-                       $ICEDOVE -remote 'xfeDoCommand (openInbox)'
+               *)
+                       exec $ICEDOVE -remote 'xfeDoCommand (openInbox)'
                        ;;
                esac
        fi
This page took 0.030725 seconds and 4 git commands to generate.