]> git.pld-linux.org Git - packages/thunderbird.git/blob - icedove.sh
- drop unneeded patch
[packages/thunderbird.git] / icedove.sh
1 #!/bin/sh
2 # based on script by (c) vip at linux.pl, wolf at pld-linux.org
3
4 LIBDIR="@LIBDIR@/icedove"
5
6 # copy profile from Thunderbird if its available and if no Icedove
7 # profile exists
8 if [ ! -d $HOME/.icedove ] && [ -d $HOME/.thunderbird ]; then
9         echo "Copying profile from Thunderbird"
10         cp -a $HOME/.thunderbird $HOME/.icedove
11 fi
12
13 # compreg.dat and/or chrome.rdf will screw things up if it's from an
14 # older version. http://bugs.gentoo.org/show_bug.cgi?id=63999
15 for f in ~/.icedove/*/{compreg.dat,chrome.rdf,XUL.mfasl}; do
16         [ -f "$f" ] || continue
17         if [ "$f" -ot "$0" ] || [ "$f" -ot "$LIBDIR/components/compreg.dat" ]; then
18                 echo "Removing $f leftover from older Icedove"
19                 rm -f "$f"
20         fi
21 done
22
23 ICEDOVE="$LIBDIR/icedove"
24
25 if [ "$1" = "-remote" ]; then
26         exec $ICEDOVE "$@"
27 else
28         PING=$($ICEDOVE -remote 'ping()' 2>&1 >/dev/null)
29         if [ -n "$PING" ]; then
30                 exec $ICEDOVE "$@"
31         else
32                 case "$1" in
33                 -compose|-editor)
34                         exec $ICEDOVE -remote 'xfeDoCommand (composeMessage)'
35                         ;;
36                 *)
37                         exec $ICEDOVE -remote 'xfeDoCommand (openInbox)'
38                         ;;
39                 esac
40         fi
41 fi
This page took 0.042687 seconds and 3 git commands to generate.