Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Macsoup in X -> Mail.app?

2 views
Skip to first unread message

Elana

unread,
May 11, 2003, 5:25:00 PM5/11/03
to
I wanna use Mail.app for my reply-by-mails in MacSoup, but I only have 3
choices: built-in mailer (in Soup), Eudora or Claris Emailer. Tell me
there's some hack you all brilliant folk have come up with to get around
this...

E


-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 80,000 Newsgroups - 16 Different Servers! =-----

Stefan Haller

unread,
May 12, 2003, 3:05:25 AM5/12/03
to
Elana <news...@zen.org> wrote:

> I wanna use Mail.app for my reply-by-mails in MacSoup, but I only have 3
> choices: built-in mailer (in Soup), Eudora or Claris Emailer. Tell me
> there's some hack you all brilliant folk have come up with to get around
> this...

Here's an article that describes how to do it with Outlook Express. Now
you just have to find someone who adapts the script to Mail.app.

<http://groups.google.com/groups?
as_umsgid=1fcqrrm.142qbj81qo4u2lN%25...@snafu.de>


--
Stefan Haller
Berlin, Germany
http://home.snafu.de/stk/

Elana

unread,
May 12, 2003, 9:21:02 AM5/12/03
to
Stefan Haller <s...@snafu.de> wrote:

> Elana <news...@zen.org> wrote:
>
> > I wanna use Mail.app for my reply-by-mails in MacSoup, but I only have 3
> > choices: built-in mailer (in Soup), Eudora or Claris Emailer. Tell me
> > there's some hack you all brilliant folk have come up with to get around
> > this...
>
> Here's an article that describes how to do it with Outlook Express. Now
> you just have to find someone who adapts the script to Mail.app.
>
> <http://groups.google.com/groups?
> as_umsgid=1fcqrrm.142qbj81qo4u2lN%25...@snafu.de>

Thanks Stefan...I'll see if I can learn scripting :-). And thanks again
for a great product...I'm spoiled now, and can't live without it.

Stefan Haller

unread,
May 16, 2003, 4:35:20 AM5/16/03
to
Elana <news...@zen.org> wrote:

> Thanks Stefan...I'll see if I can learn scripting :-).

Because there just was a request in the German Mac group too, I took the
time and wrote the script. Here it is.


-- This script masquerades as Claris Emailer; it will receive
-- a "create new message" event from MacSOUP and forward it
-- to Mail.app in the format that Mail wants.
--
-- Save the script as an application, with the "stay open" setting
-- turned on. You must also change the script's creator code
-- from 'aplt' to 'MMan', and you should set the "background only"
-- bit in the SIZE resource (open the script application with ResEdit
-- in the Classic environment to do that).
--
-- Finally, you must ensure that the script is always running, so you will
-- want to drag it into the Login Items pane of System Preferences.

on «event MManCRML» given «class SUBJ»:subj, «class BODY»:body, «class RECP»:rcpt
-- 'rcpt' is a list of recipients. Theoretically this list
-- could have any number of items, but in practice
-- there's almost always exactly one recipient, so
-- for simplicity we just use the first item of the list.
-- Each list item is a record with two members,
-- RCAD (address) and RCNM (name).
--
-- The RCNM member may be missing, so we must use
-- a try block when accessing it.
set addr to «class RCAD» of item 1 of rcpt
try
set realname to «class RCNM» of item 1 of rcpt
on error
set realname to ""
end try

tell application "Mail"
set msg to make new outgoing message with properties ¬
{subject:subj, content:body}
tell msg
set visible to true
make new to recipient at end of to recipients with properties ¬
{name:realname, address:addr}
end tell
activate
end tell
end «event MManCRML»

Elana

unread,
May 16, 2003, 8:37:40 AM5/16/03
to
Stefan Haller <s...@snafu.de> wrote:

> Elana <news...@zen.org> wrote:
>
> > Thanks Stefan...I'll see if I can learn scripting :-).
>
> Because there just was a request in the German Mac group too, I took the
> time and wrote the script. Here it is.

Well, I compared it to my script, and mine looks nothing like it. Of
course, mine doesn't work either...

Thanks Stefan!

0 new messages