]> git.pld-linux.org Git - packages/icedove.git/blob - icedove.sh
- copy cleanup from iceweasel
[packages/icedove.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 ]; then
9         if [ -d $HOME/.thunderbird ]; then
10                 echo "Copying profile from Thunderbird"
11                 cp -rf $HOME/.thunderbird $HOME/.icedove
12         fi
13 fi
14
15 # compreg.dat and/or chrome.rdf will screw things up if it's from an
16 # older version.  http://bugs.gentoo.org/show_bug.cgi?id=63999
17 for f in ~/.icedove/*/{compreg.dat,chrome.rdf,XUL.mfasl}; do
18         if [[ -f ${f} && ${f} -ot "$0" ]]; then
19                 echo "Removing ${f} leftover from older Icedove"
20                 rm -f "${f}"
21         fi
22 done
23
24 ICEDOVE="$LIBDIR/icedove"
25
26 if [ "$1" == "-remote" ]; then
27         $ICEDOVE "$@"
28 else
29         PING=`$ICEDOVE -remote 'ping()' 2>&1 >/dev/null`
30         if [ -n "$PING" ]; then
31                 $ICEDOVE "$@"
32         else
33                 case "$1" in
34                     -compose|-editor)
35                         $ICEDOVE -remote 'xfeDoCommand (composeMessage)'
36                         ;;
37                     *)
38                         $ICEDOVE -remote 'xfeDoCommand (openInbox)'
39                         ;;
40                 esac
41         fi
42 fi
This page took 0.042599 seconds and 4 git commands to generate.