Seamonkey 2.13.2 email client (SOLVED)

Booting, installing, newbie
Post Reply
Message
Author
Mercedes350se
Posts: 790
Joined: Wed 16 Apr 2008, 11:28

#16 Post by Mercedes350se »

trapster wrote: ... If you already have a "mail" icon on the desktop, right click on it and choose edit.
When the window pops up, enter seamonkey for the program to open, then enter -mail in the argument to pass area.

or

open /usr/local/bin/defaultemail as text

Use this inside and drag that to the desktop.

Code: Select all

#!/bin/sh
exec seamonkey -mail "$@"
I originally opted for the second method as I, at that stage, didn't have a desktop icon. The folly of that is evident in my subsequent posts.

The correct course of action and it only took days for the penny to eventually drop was, in fact, the first method.

In other words bypassing defaultemail altogether.

Thank you trapster.

Mercedes350se
Posts: 790
Joined: Wed 16 Apr 2008, 11:28

#17 Post by Mercedes350se »

Sorry for reviving this thread but for the sake of completeness, and for my future reference, the defaultemail can be used but, in my case, this works:

Code: Select all

#!/bin/sh
exec /usr/lib/seamonkey/seamonkey -mail "$@"
This also means the desktop icon can be changed to an email icon.

Post Reply