Improved mnemosyne vserver module to include beecrypt as vhashify depends on it
[mnemosyne.git] / pkg_conf / thunderbird.conf
blob26c9e367e5e00880aad50d51c6fce2a8cc9df355
1 # --- SDE-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # Filename: target/mnemosyne/pkg_conf/thunderbird.conf
5 # Copyright (C) 2002 - 2006 Alejandro Mery
6
7 # More information can be found in the files COPYING and README.
8
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; version 2 of the License. A copy of the
12 # GNU General Public License can be found in the file COPYING.
13 # --- SDE-COPYRIGHT-NOTE-END ---
15 hook_add postmake 6 'mnemosyne_thunderbird_mailto'
16 hook_add postmake 6 'mnemosyne_thunderbird_prefs'
18 mnemosyne_thunderbird_mailto() {
19         cat <<-EOT > $bindir/$pkg-mailto.sh
20         #!/bin/bash
22         export MOZILLA_FIVE_HOME="$libdir/$pkg-$mozver"
23         export LD_LIBRARY_PATH=\$MOZILLA_FIVE_HOME:\$LD_LIBRARY_PATH
25         case "\$1" in
26             mailto:*)   mailto="\${1#mailto:}" ;;
27             *)          mailto="\$1" ;;
28         esac
30         MOZXREMOTE="\$MOZILLA_FIVE_HOME/mozilla-xremote-client -a $pkg"
31         if \$MOZXREMOTE 'ping()'; then
32             exec \$MOZXREMOTE "mailto(\$mailto)"
33         else
34             exec $bindir/$pkg "mailto:\$mailto" &
35         fi
36         EOT
37         chmod +x $bindir/$pkg-mailto.sh
40 mnemosyne_thunderbird_prefs() {
41         if pkginstalled firefox; then
42                 local ffopenurl="${bindir//$pkg/firefox}/firefox-openurl.sh"
43                 for x in http https ftp; do
44                         echo "pref(\"network.protocol-handler.app.$x\", \"$ffopenurl\");"
45                 done >> $libdir/${pkg}-${mozver}/defaults/pref/all-thunderbird.js
46         fi