/usr/share/gtkpod/scripts/sync-thunderbird.sh is in gtkpod-data 2.1.5-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | #!/bin/sh
# Script for syncing thunderbird addressbook data with iPod
# (c) 2004 Clinton Gormley <clint at traveljury dot com>
#
# Usage:
#
# sync-thunderbird.sh [-i <ipod mountpoint>] [-e <encoding>]
# [-d <path to thunderbird address book>]
# [-n <name of exported file>]
#
# specify '-d' if your thunderbird address book is not in
# ~/.thunderbird/
#
# specify '-n' if you want to export more than one address book
# (otherwise the second call to this script will overwrite the output
# of the first call)
# with the following defaults:
IPOD_MOUNT=/media/ipod # mountpoint of ipod
ENCODING=ISO-8859-15 # encoding used by ipod
NAME=thunderbird # default file export name
# Unless called with "-e=none" this script requires "recode" available
# from ftp://ftp.iro.umontreal.ca/pub/recode/recode-3.6.tar.gz
# About the encoding used by the iPod (by Jorg Schuler):
#
# For some reason the encoding used for the contact files and
# calender files depends on the language you have set your iPod
# to. If you set your iPod to German, iso-8859-15 (or -1?) is
# expected. If you set it to Japanese, SHIFT-JIS is expected. You need
# to reboot the iPod to have the change take effect, however. (I'm
# using firmware version 1.3.)
#
# If you know of more encodings, please let me know, so they can be
# added here:
#
# iPod language encoding expected
# ----------------------------------------
# German ISO-8859-15
# Japanese SHIFT-JIS
# Changelog:
#
# 2005/05/18 (Clinton Gormley <clint at traveljury dot com>):
# adapted sync-kaddressbook to work with thunderbird.
#
# 2004/12/15 (Jorg Schuler <jcsjcs at users dot sourceforge dot net>):
# Split evolution support into a new file.
#
# 2005/06/23 (Jorg Schuler <jcsjcs at users dot sourceforge dot net>):
# use 'iconv' instead of 'recode'
# overwrite default settings with optional command line arguments
while getopts i:d:e:n: option; do
case $option in
i) IPOD_MOUNT=$OPTARG;;
d) THUNPATH=$OPTARG;;
e) ENCODING=$OPTARG;;
n) NAME=$OPTARG;;
\?) echo "Usage: `basename $0 ` [-i <ipod mountpoint>] [-e <encoding>] [-d <path to thunderbird address book>] [-n <name of exported file>]"
exit 1;;
esac
done
# set the RECODE command
if [ $ENCODING = "none" ] || [ $ENCODING = "NONE" ]; then
RECODE="cat" # no conversion
else
RECODE="iconv -f UTF-8 -t $ENCODING"
fi
echo "Trying to export from thunderbird:"
MAB2VCARD=`dirname $0`/mab2vcard
# remove all empty lines and recode if necessary
echo -n "Syncing iPod ... [Contacts] "
$MAB2VCARD $THUNPATH | grep -v '^[[:space:]]$\|^$' | $RECODE > $IPOD_MOUNT/Contacts/${NAME}.vcf
echo "done!"
|