|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
#
|
|
# Filename: target/mnemosyne/pkg_conf/thunderbird.conf
|
|
# Copyright (C) 2002 - 2006 Alejandro Mery
|
|
#
|
|
# More information can be found in the files COPYING and README.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License. A copy of the
|
|
# GNU General Public License can be found in the file COPYING.
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
hook_add postmake 6 'mnemosyne_thunderbird_mailto'
|
|
hook_add postmake 6 'mnemosyne_thunderbird_prefs'
|
|
|
|
mnemosyne_thunderbird_mailto() {
|
|
cat <<-EOT > $bindir/$pkg-mailto.sh
|
|
#!/bin/bash
|
|
|
|
export MOZILLA_FIVE_HOME="$libdir/$pkg-$mozver"
|
|
export LD_LIBRARY_PATH=\$MOZILLA_FIVE_HOME:\$LD_LIBRARY_PATH
|
|
|
|
case "\$1" in
|
|
mailto:*) mailto="\${1#mailto:}" ;;
|
|
*) mailto="\$1" ;;
|
|
esac
|
|
|
|
MOZXREMOTE="\$MOZILLA_FIVE_HOME/mozilla-xremote-client -a $pkg"
|
|
if \$MOZXREMOTE 'ping()'; then
|
|
exec \$MOZXREMOTE "mailto(\$mailto)"
|
|
else
|
|
exec $bindir/$pkg "mailto:\$mailto" &
|
|
fi
|
|
EOT
|
|
chmod +x $bindir/$pkg-mailto.sh
|
|
}
|
|
|
|
mnemosyne_thunderbird_prefs() {
|
|
if pkginstalled firefox; then
|
|
local ffopenurl="${bindir//$pkg/firefox}/firefox-openurl.sh"
|
|
for x in http https ftp; do
|
|
echo "pref(\"network.protocol-handler.app.$x\", \"$ffopenurl\");"
|
|
done >> $libdir/${pkg}-${mozver}/defaults/pref/all-thunderbird.js
|
|
fi
|
|
}
|
|
|