How to view the peskie winmail.dat files your windows mates keep sending
you.
Create a script in your home drive:
#!/bin/ksh
if [ ! -d ~/winmail ];then
mkdir ~/winmail
fi
if [ ! -f ~/winmail/winmail.dat ];then
echo 'no winmail file please save as from mail to folder winmail'
echo Press enter to continue
read
exit 1
fi
tnef --overwrite -C ~/winmail -f ~/winmail/winmail.dat
rm ~/winmail/winmail.dat
nautilus --no-desktop --browser ~/winmail
Create a application launcher to run it
Save the winmail.dat into the folder winmail, and click on the launcher.
Thursday, March 29, 2007
Subscribe to:
Posts (Atom)

