]> git.pld-linux.org Git - packages/icedove.git/blobdiff - icedove.sh
- rel 1
[packages/icedove.git] / icedove.sh
index dde3a013f583c737c9c3e4ae3dff1a7aa05eceed..6c88b2e80509c2b9bba7c701eb5969001f92b602 100644 (file)
@@ -5,28 +5,36 @@ 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
+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.084356 seconds and 4 git commands to generate.