When I place the mouse over a cell containing an email address, I get a tip like mailto:[EMAIL PROTECTED] and the addresses are blue instead of default black, so they seem to be hyperlinks.
What I want to do is click (or double click) on the cell to send an email to that address.
When i double click on an email address, I get a bunch of disk activity, but nothing else.
When I select an email cell and click on hyperlink dialog, I get an empty form. When I fill it in with the email address as target and text, I get a cell that's twice as wide with the email address in it twice (and it does nothing when I double click on it).
I tried entering ='mailto://[EMAIL PROTECTED]' and that does nothing either.
I am using Mozilla 1.7.0 with OOo 1.1.4 on Linux.
Under Options - External Programs, I have
/home/bigbird/bin/mozmailrun entered as the MAILTO command.
mozmailrun is a script (included below) that will start mozilla mail or just bring up a new mail window if mozilla is already running. It works dandy when used from desktop icons.
Any help would be appreciated.
Joe
#!/bin/bash # mozmailrun - (C) 02/26/2004 - JPmicrosystems (gpl)
if [[ `ps -e | grep mozilla` ]]
then
#Mozilla is running
`/usr/lib/mozilla-1.7/mozilla -P bigbird -remote 'xfeDoCommand (openInbox)'`
else
#Mozilla is NOT running
`/usr/lib/mozilla-1.7/mozilla -P bigbird -mail`
fi
I'm currently playing around with replacing openInbox with composeMail, but it's not doing much so far.
It seems to run ok and returns a 0, but doesn't open a compose window, etc.
-- "Whenever people say 'We mustn't be sentimental', you can take it they are about to do something cruel. And if they add 'We must be realistic', they mean they are going to make money out of it." -- Brigid Brophy "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men. A nation that continues year after year to spend more money on military defense than on programs of social uplift is approaching spiritual doom." --Martin Luther King, Jr.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
