Various Questions

10 views
Skip to first unread message

Mark Chapman

unread,
Dec 15, 2009, 12:11:54 PM12/15/09
to mailsmi...@googlegroups.com
Hi All,

I have been using Mailsmith for about 4 months now. There are
still a few things I can’t figure out (I have searched the old
manual, the new help, and this list). Here is a list in order of
their priority to me:

1. Emailing groups. According to the 2.2 user manual I can drag
and drop groups from the Address book into Mailsmith. I only
ever get the first email address of the group no matter what I
do with the address window or with address book. If I type all
the addresses into one filed in Address book (separated by
commas). I get a malformed address error. This technique works
find in Mail. How do I define a group to send email to?

2. Filters
- when editing filters how do I resize the box so I can see more
of the filter actions. I can’t figure out how to show more
than 3
- how do I delete an action in the middle of a filter rather
than just the action at the bottom?

3. Undoing Actions
- I don’t know if it should work but I can’t undo moving a
message to the trash mailbox (command Z). I can manually return
it to its original locaiton.
- Actually undo seems to only work in selected places in MS but
I can’t seem to figure out where it works and where it does
not work

4. Import Issues
- for some reason some of the HTML messages I imported from
Eudora show their code. Is there any way to fix this or just
strip off the coding altogther?

5. Emptying trash
- I can’t figure out how to get the trash to empty itself
periodically. Manually emptying the trash works fine

6. Strange Message
- Growl occasionally gives me the message “CHOCK LOCK ENGAGED
OK (USE IT WISELY OR YOU WILL FEEL THE FLESHY PALM”. I tracked
it down to Mailsmith. What is it? A joke?

Issues with discussion but no resolution on the list
1. Problems with Forwards and Redirects
- On my regular account every couple of days a message will not
send (usually one that is automatically being forwarded or
redirected to someone). I get the error message “Attempt to
read or write from a non-open stream (Application error code
23523)” What does this mean?
- I can’t forward/redirect ICS files. I can open them and add
them to iCal. However, I need to forward them to others.
Forwarding, redirecting or dragging the ICS file into a new
message all produces an error when I tried to send the email. It
works if I save the ICS and reattached it to a message.
However, I don't understand why the other methods did not

2. Changing Message Identity (significant discussion but no
resolution elsewhere)
- I get 4 different email addresses forwarded to one address
which is then checked by MS (they do not offer POP access). In
Eudora I could use a filter to change the identity of the
message so that when I replied it would automatically use the
address the email was sent to as the reply to address. How do I
do this in MS?

Thanks,

Mark


Dr. Mark Chapman (519-725-3726)
Teacher / Manager / Researcher
http://www.linkedin.com/in/markdchapman

Charlie Garrison

unread,
Dec 15, 2009, 8:01:16 PM12/15/09
to mailsmi...@googlegroups.com
Good morning,

On 15/12/09 at 12:11 PM -0500, Mark Chapman
<mcha...@chass.utoronto.ca> wrote:

>2. Changing Message Identity (significant discussion but no
>resolution elsewhere)
>- I get 4 different email addresses forwarded to one address
>which is then checked by MS (they do not offer POP access). In
>Eudora I could use a filter to change the identity of the
>message so that when I replied it would automatically use the
>address the email was sent to as the reply to address. How do I
>do this in MS?

You've given is a long list of things that "don't work" but not
much info about what you've tried so it's a bit hard to figure
out what the problem is. I'll have a go (bit of mind reading in
the morning can be fun) with the one above.

Create 'send only' accounts in the Accounts window. Enter the
address that messages are sent to as the return address, but
don't enter any POP details. Mailsmith will see the matching
address when messages are received and use that send-only
account when sending replies.


Charlie

--
Ꮚ Charlie Garrison ♊ <garr...@zeta.org.au>
〠 PO Box 141, Windsor, NSW 2756, Australia

O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
http://www.ietf.org/rfc/rfc1855.txt

Jason Davies

unread,
Dec 15, 2009, 9:32:26 PM12/15/09
to mailsmi...@googlegroups.com

On 15 Dec 2009, at 17:11, Mark Chapman wrote:

To pick off a couple, almost at random:

> 2. Filters
> - when editing filters how do I resize the box so I can see more
> of the filter actions. I can’t figure out how to show more
> than 3

Good question. I can't see a way to do this either. I suggest writing to the official support address so it gets logged as a problem.
<http://www.mailsmith.org/contact/>

> - how do I delete an action in the middle of a filter rather
> than just the action at the bottom?
>

option (alt) click.

> 3. Undoing Actions
> - I don’t know if it should work but I can’t undo moving a
> message to the trash mailbox (command Z). I can manually return
> it to its original locaiton.
> - Actually undo seems to only work in selected places in MS but
> I can’t seem to figure out where it works and where it does
> not work

It works where it works, and doesn't where it doesn't (can't really say any more than that!)

To empty trash periodically, you would have to use an applescript. You could use one that is attached to the menu item "quit" to empty at that point. Mailsmith is highly scriptable and most heavy users end up extending it via Applescript. My impression (please note, just impression) is that if something is doable by applescript already, it is less likely to get priority when requested.

Personally I run scripts that are triggered every night at 2 am (when I'm not usually using it!) that clear out certain folders by date (three months old, typically.) It goes something like this

tell application "Mailsmith"
activate


set theList to every message of mailbox "temp holding" of mailbox " Current mailboxes"
repeat with i from 1 to count items of theList
set theMessage to item i of theList
set theDate to get time sent of theMessage
set theAge to (current date) - theDate
--set labelindex to label index

-- 259200 seconds = 3 days
--7776000 = 90 days

try
if theAge > 7776000 then delete theMessage

end try
end repeat

end




It's triggered by iCal (a recurring item that calls a script) (it also clears the server by archiving all the messages into Mail -- I only now use Mailsmith for work emails and keep it as lean as possible, Mail is my universal archive for if I delete something I turn out to need).


HTH.

Mark Chapman

unread,
Dec 15, 2009, 9:15:01 PM12/15/09
to mailsmi...@googlegroups.com
Cool. I will give it a try and see what happens.

I have been trying to use filters to solve this problem so this is a new approach.

Thanks,

Mark

On 12/16/09 at 8:01 PM, garr...@zeta.org.au (Charlie Garrison) wrote:

> Good morning,
>
> On 15/12/09 at 12:11 PM -0500, Mark Chapman
> <mcha...@chass.utoronto.ca> wrote:
>
> >2. Changing Message Identity (significant discussion but no
> >resolution elsewhere)
> >- I get 4 different email addresses forwarded to one address
> >which is then checked by MS (they do not offer POP access). In
> >Eudora I could use a filter to change the identity of the
> >message so that when I replied it would automatically use the
> >address the email was sent to as the reply to address. How do I
> >do this in MS?
>
> You've given is a long list of things that "don't work" but not
> much info about what you've tried so it's a bit hard to figure
> out what the problem is. I'll have a go (bit of mind reading in
> the morning can be fun) with the one above.
>
> Create 'send only' accounts in the Accounts window. Enter the
> address that messages are sent to as the return address, but
> don't enter any POP details. Mailsmith will see the matching
> address when messages are received and use that send-only
> account when sending replies.
>
>
> Charlie
>


Mark Chapman

unread,
Dec 18, 2009, 8:56:25 PM12/18/09
to mailsmi...@googlegroups.com
Unfortunately, it does not seem to work but thanks for the suggestion.

Mark

On 12/16/09 at 8:01 PM, garr...@zeta.org.au (Charlie Garrison) wrote:

> Good morning,
>
> On 15/12/09 at 12:11 PM -0500, Mark Chapman
> <mcha...@chass.utoronto.ca> wrote:
>
> >2. Changing Message Identity (significant discussion but no
> >resolution elsewhere)
> >- I get 4 different email addresses forwarded to one address
> >which is then checked by MS (they do not offer POP access). In
> >Eudora I could use a filter to change the identity of the
> >message so that when I replied it would automatically use the
> >address the email was sent to as the reply to address. How do I
> >do this in MS?
>
> You've given is a long list of things that "don't work" but not
> much info about what you've tried so it's a bit hard to figure
> out what the problem is. I'll have a go (bit of mind reading in
> the morning can be fun) with the one above.
>
> Create 'send only' accounts in the Accounts window. Enter the
> address that messages are sent to as the return address, but
> don't enter any POP details. Mailsmith will see the matching
> address when messages are received and use that send-only
> account when sending replies.
>
>
> Charlie
>

Mark Chapman

unread,
Dec 18, 2009, 8:59:21 PM12/18/09
to mailsmi...@googlegroups.com
Thank you. The option click thing is great.

Clearly I need to learn applescript :)

Mark

>--
>
>You received this message because you are subscribed to the Google Groups "Mailsmith Talk" group.
>To post to this group, send email to mailsmi...@googlegroups.com.
>To unsubscribe from this group, send email to mailsmith-tal...@googlegroups.com.
>For more options, visit this group at http://groups.google.com/group/mailsmith-talk?hl=en.

Jason Davies

unread,
Dec 19, 2009, 10:02:45 PM12/19/09
to mailsmi...@googlegroups.com

On 19 Dec 2009, at 01:59, Mark Chapman wrote:

> Thank you. The option click thing is great.
>

always worth holding down option and scanning menus with Bare Bones software (as Mailsmith 'was'). They use it shrewdly and in a way that you rapidly come to understand intuitively.


> Clearly I need to learn applescript :)

Applescript will help you do all kinds of things in MS. I really like the fact that they sometimes develop that rather than 'just adding a feature' -- in the long run it gives you more. As I've said, the citizens of this list have been fabulously helpful over the years and I owe them a lot (speaking as a rubbish scripter who keeps using it).

After replying to your message I actually changed my script to do what I described. What happens is that certain mailboxes get filters run (mainly ones that clean out read messages that I didn't flag to the trash) and then it deletes everything older than 3 months from the trash. This means that if I get something I think I don't need and delete it, it's still around three weeks later when I discover I did:-) I've posted it below. I tell iCal to run this script with a daily alarm in the middle of the night. The delays are simply to make sure everything downloads in good time and so on (and it archives everything off the server into Mail for those 'more than three months' emails -- I get more of those than I'd like. Essentially Mailsmith is a working place and Mail is purely an archive). I hope it helps - it should be readable even by a novice (?).

The first thing to learn about Applescript is that when emailers add line breaks, it 'breaks' the script because Script Editor can't read it. If you get an error, read it through and look for line breaks that interrupt a command. Each command must be on a single line (ie have no 'return' characters, though it softwraps in Script Editor).

Please also note that the mailbox ids are specific to my set-up. I've commented them out* in case someone runs the script and creates havoc.


*if you put "--" at the beginning of a line, it is ignored (greyed out with italics in Script Editor). This means you can experiment with scripts, temporarily remove lines when debugging etc.

To get the mailbox id to set up filters, use the second script (in case that's helpful -- it's just an example script you can experiment with).


script 1 -- to delete all mail over three months old in Mailsmith.

tell application "Mailsmith" to check mail
delay 100
with timeout of 500 seconds
try
tell application "Mailsmith" to quit
delay 50
end try





--/Users/ophiochos/academic/Mail/Mailsmith User Data


delay 150
tell application "Mailsmith" to activate


tell application "Mail"
activate
check for new mail

end tell

delay 50

tell application "Mail" to quit
end timeout


tell application "Mailsmith"
activate

-- set theList to every message of mailbox "temp holding" of mailbox " Current mailboxes"
--repeat with i from 1 to count items of theList
-- set theMessage to item i of theList
-- set theDate to get time sent of theMessage
-- set theAge to (current date) - theDate


--set labelindex to label index

-- 259200 seconds = 3 days
--7776000 = 90 days

-- try
-- if theAge > 7776000 then delete theMessage

-- end try

--end repeat

set theList to every message of mailbox id 170


repeat with i from 1 to count items of theList
set theMessage to item i of theList
set theDate to get time sent of theMessage
set theAge to (current date) - theDate
--set labelindex to label index

-- 259200 seconds = 3 days
--7776000 = 90 days

try
if theAge > 7776000 then delete theMessage

end try

end repeat


-- refilter mailbox id 268
-- refilter mailbox id 752
-- refilter mailbox id 274
-- refilter mailbox id 364
--refilter mailbox id 1430



end tell

script 2: to get the ID of a mailbox (quickest way to have a script act on a particular mailbox). You just create a new window and hit "paste" or command V to load the script [I wrote this in an amazing hurry and it works. It's got to be the most inelegant way to do what I want, but once written, who cares? It pastes a working script which I can then save.]


tell application "Mailsmith"
set mymailbox to id of selection
set the clipboard to mymailbox as string
end tell

tell application "AppleScript Editor"
activate
set the clipboard to "tell application \"Mailsmith\"
activate
move selection to mailbox id " & (the clipboard) & return & "end"

end tell


Mark Chapman

unread,
Dec 21, 2009, 9:39:04 AM12/21/09
to mailsmi...@googlegroups.com
This is very cool.

Hopefully, I will get a few hours over the holidays to experiment.

While I don’t want to do exactly what you are doing I do have
need to archive to a Filemaker database and I expect some of
what I learn from your scripts will help.

Thanks again,

Mark

lumin...@gmail.com

unread,
Dec 22, 2009, 12:11:36 PM12/22/09
to mailsmi...@googlegroups.com
On 12/21/09 Mark Chapman wrote:

> I do have need to archive to a Filemaker database


Amen, brother

Mark Chapman

unread,
Feb 18, 2010, 11:25:14 AM2/18/10
to mailsmi...@googlegroups.com
Hi All,

This morning MS crashed on me (for no obvious reason). Crash log
reports Exception: EXC_BAD_ACCESS (0x0001) and Codes:
KERN_PROTECTION_FAILURE (0x0002) at 0x00000000.

When I re-opened MS everything appears to be in order. As far as
I can tell there was no data loss. However, in the sidebar of
the mail browser my inbox and spam box have an incorrect count
of the messages in those mailboxes. The count under the actual
mailbox is correct.

How do I fix this?

Is there any way to check for data loss? I can restore from this
mornings backup if necessary.

Thanks,

Mark

Rich Siegel

unread,
Feb 18, 2010, 11:43:52 AM2/18/10
to mailsmi...@googlegroups.com
On 2/18/10 at 11:25 AM, mcha...@chass.utoronto.ca (Mark
Chapman) wrote:

>This morning MS crashed on me (for no obvious reason). Crash log
>reports Exception: EXC_BAD_ACCESS (0x0001) and Codes:
>KERN_PROTECTION_FAILURE (0x0002) at 0x00000000.

By itself, this is unfortunately not helpful. Did you use the
crash reporter to submit the crash log?

>When I re-opened MS everything appears to be in order. As far as I can
>tell there was no data loss. However, in the sidebar of the mail
>browser my inbox and spam box have an incorrect count of the messages
>in those mailboxes. The count under the actual mailbox is correct.
>
>How do I fix this?

Launching the application with the Shift key held down will
discard the cached information and force a recount. If you have
a lot of mail this will take a while.

R.
--
Rich Siegel Mailsmith Maintainer
<sie...@mailsmith.org> <http://www.mailsmith.org/>

Mark Chapman

unread,
Feb 18, 2010, 11:58:08 AM2/18/10
to mailsmi...@googlegroups.com
Hi Rich,

Thanks for the quick reply.

I don’t remember if I submitted the crash log but I have
included it below.

I will try the recount.

Thanks again,

Mark


**********

Host Name: PowerMac-G4
Date/Time: 2010-02-18 10:35:56.941 -0500
OS Version: 10.4.11 (Build 8S165)
Report Version: 4

Command: Mailsmith
Path: /Applications/Internet/Email/Mailsmith.app/Contents/MacOS/Mailsmith
Parent: WindowServer [130]

Version: 2.2.5 (314)

PID: 404
Thread: 0

Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000000

Thread 0 Crashed:
0 <<00000000>> 0x00000000 0 + 0
1 com.barebones.mailsmith 0x0027ceac
TMultiPart::~TMultiPart [not-in-charge]() + 76
2 com.barebones.mailsmith 0x0027850c
TMessage::~TMessage [not-in-charge]() + 76
3 com.barebones.mailsmith 0x002591a0
TMailsmithMessage::~TMailsmithMessage [in-charge deleting]() + 76
4 com.barebones.mailsmith 0x000d28f0
TObject::DeleteObjectRef(TObject const*) + 24
5 com.barebones.mailsmith 0x002e9138
CMailList::Draw(long, Rect*) + 5448
6 com.barebones.mailsmith 0x0017178c
DrawVisibleItems(BigListRec**, long, long, OpaqueGrafPtr*) + 692
7 com.barebones.mailsmith 0x00172268 BigLUpdate(void*)
+ 560
8 com.barebones.mailsmith 0x00172538
UpdateList(BigListRec**) + 296
9 com.barebones.mailsmith 0x00174ecc
BigLResumeDrawing(void*, unsigned char, unsigned char) + 232
10 com.barebones.mailsmith 0x002ee054
CMailList::_UpdateMessageCache(bool) + 376
11 com.barebones.mailsmith 0x002eec08
CMailList::Update() + 392
12 com.barebones.mailsmith 0x0007bce8
CBigListView::Draw() + 40
13 com.barebones.mailsmith 0x000fcf00
CViewManager::draw_one_view(CView&, void*) + 200
14 com.barebones.mailsmith 0x000fb4cc
CViewManager::traverse(CView*, bool, bool (*)(CView&, void*),
void*) + 168
15 com.barebones.mailsmith 0x000fb508
CViewManager::traverse(CView*, bool, bool (*)(CView&, void*),
void*) + 228
16 com.barebones.mailsmith 0x000fcad4
CViewManager::Traverse(bool (*)(CView&, void*), bool, CView*,
void*) + 120
17 com.barebones.mailsmith 0x0011ea5c CWindow::Update()
+ 92
18 com.barebones.mailsmith 0x00120424
CWindow::HandleEvent(OpaqueEventHandlerCallRef*,
OpaqueEventRef*) + 268
19 com.apple.HIToolbox 0x932bb934
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 692
20 com.apple.HIToolbox 0x932bb08c
SendEventToEventTargetInternal(OpaqueEventRef*,
OpaqueEventTargetRef*, HandlerCallRec*) + 372
21 com.apple.HIToolbox 0x932baf08
SendEventToEventTargetWithOptions + 40
22 com.apple.HIToolbox 0x9338e5b0
HandleWindowEvent(OpaqueEventRef*, unsigned long) + 84
23 com.apple.HIToolbox 0x932c2234
ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*,
OpaqueEventRef*, void*) + 552
24 com.apple.HIToolbox 0x932bbb84
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*,
HandlerCallRec*) + 1284
25 com.apple.HIToolbox 0x932bb08c
SendEventToEventTargetInternal(OpaqueEventRef*,
OpaqueEventTargetRef*, HandlerCallRec*) + 372
26 com.apple.HIToolbox 0x932c1e90
SendEventToEventTarget + 40
27 com.apple.HIToolbox 0x93302c04
ToolboxEventDispatcher + 92
28 com.apple.HIToolbox 0x933a1a10
TryEventDispatcher + 108
29 com.apple.HIToolbox 0x933a1668 GetOrPeekEvent + 304
30 com.apple.HIToolbox 0x933a14c0
GetNextEventMatchingMask + 440
31 com.apple.HIToolbox 0x933a1244 WNEInternal + 152
32 com.apple.HIToolbox 0x933a1198 WaitNextEvent + 76
33 com.barebones.mailsmith 0x00047604
CApplication::PollForEvent() + 56
34 com.barebones.mailsmith 0x000475ac
CApplication::MainEventLoop() + 48
35 com.barebones.mailsmith 0x0002e064
CApplication::RunEventLoop(char*) + 36
36 com.barebones.mailsmith 0x000cf410
Exception::vStandardizeExceptions(long (*)(char*), char*) + 80
37 com.barebones.mailsmith 0x000cf890
Exception::ReportExceptions(long (*)(char*), ...) + 80
38 com.barebones.mailsmith 0x0002e0dc
CApplication::Run() + 96
39 com.barebones.mailsmith 0x00005a0c run_app(char*) + 40
40 com.barebones.mailsmith 0x000cf410
Exception::vStandardizeExceptions(long (*)(char*), char*) + 80
41 com.barebones.mailsmith 0x000cf890
Exception::ReportExceptions(long (*)(char*), ...) + 80
42 com.barebones.mailsmith 0x00005d84 main + 256
43 com.barebones.mailsmith 0x0000546c _start + 748
44 com.barebones.mailsmith 0x0000517c start + 48

Thread 1:
0 libSystem.B.dylib 0x9002bfc8
semaphore_wait_signal_trap + 8
1 libSystem.B.dylib 0x90030aac pthread_cond_wait
+ 480
2 ...ple.CoreServices.CarbonCore 0x90bc684c MPWaitOnQueue + 224
3 com.barebones.mailsmith 0x00389ec4
NeoObjectCache::CacheManagementTask(void*) + 108
4 ...ple.CoreServices.CarbonCore 0x90bc665c
PrivateMPEntryPoint + 76
5 libSystem.B.dylib 0x9002b908 _pthread_body + 96

Thread 2:
0 libSystem.B.dylib 0x9001f48c select + 12
1 com.apple.CoreFoundation 0x907f1240 __CFSocketManager
+ 472
2 libSystem.B.dylib 0x9002b908 _pthread_body + 96

Thread 3:
0 libSystem.B.dylib 0x9002c0c4
restore_sem_to_pool + 4
1 libSystem.B.dylib 0x900708d4
pthread_cond_timedwait_relative_np + 792
2 ...ple.CoreServices.CarbonCore 0x90bb37ac
MPEnterCriticalRegion + 236
3 com.barebones.mailsmith 0x0019b560
StCriticalRegion::StCriticalRegion[in-charge](int, ...) + 224
4 com.barebones.mailsmith 0x0026f988
TMailbox::GetEveryFilter(bool) const + 96
5 com.barebones.mailsmith 0x002c42c8
CHierFilterSorter::ApplyFilters(SmartPtr<TDBObject>,
SmartPtr<TDBObject>, SmartPtr<TDBObject>, unsigned long&, long&)
+ 188
6 com.barebones.mailsmith 0x002c4e2c
CHierFilterSorter::SortObject(CDatabase&, SmartPtr<TDBObject>,
SmartPtr<TDBObject>, unsigned long, unsigned long&, long&) + 856
7 com.barebones.mailsmith 0x002c5b4c
CHierFilterSorter::Sort(CDatabase&, SmartPtr<TDBObject>,
SmartPtr<TDBObject>, long&) + 864
8 com.barebones.mailsmith 0x0026a694
CPostOffice::StoreMail(CMailNetwork&, CMail*, unsigned long,
char*) + 1448
9 com.barebones.mailsmith 0x0026ac50
CPostOffice::CollectTask(void*) + 472
10 ...ple.CoreServices.CarbonCore 0x90bc665c
PrivateMPEntryPoint + 76
11 libSystem.B.dylib 0x9002b908 _pthread_body + 96

Thread 0 crashed with PPC Thread State 64:
srr0: 0x0000000000000000 srr1:
0x000000004200f030 vrsave: 0x0000000000000000
cr: 0x44444224 xer: 0x0000000020000004 lr:
0x0000000000275178 ctr: 0x0000000000000000
r0: 0x0000000000000000 r1: 0x00000000bfffe5b0 r2:
0x000000000651c17b r3: 0x000000000b76ee00
r4: 0x0000000000566b74 r5: 0x00000000a0b8bbb0 r6:
0x00000000ffffffff r7: 0x0000000000000001
r8: 0x0000000000000001 r9: 0x0000000000566320 r10:
0x0000000000566b70 r11: 0x0000000000566344
r12: 0x0000000000000000 r13: 0x0000000000000001 r14:
0x0000000000000003 r15: 0x0000000000000001
r16: 0x0000000000000001 r17: 0x0000000000000001 r18:
0x00000000bfffe7d4 r19: 0x000000000061e8a6
r20: 0x0000000000000001 r21: 0x0000000000000000 r22:
0x000000000d978078 r23: 0x00000000bfffe74c
r24: 0x000000000e9a4b80 r25: 0x00000000bfffe7bc r26:
0x00000000bfffeb5c r27: 0x0000000000000348
r28: 0x0000000000000000 r29: 0x000000007074737a r30:
0x0000000000566b74 r31: 0x000000000edddcd0

Binary Images Description:
0x1000 - 0x511fff com.barebones.mailsmith 2.2.5 (314) /Applications/Internet/Email/Mailsmith.app/Contents/MacOS/Mailsmith
0x7bd000 - 0x7c7fff com.barebones.UpdateKit ??? (1.0) /Applications/Internet/Email/Mailsmith.app/Contents/Frameworks/UpdateKit.framework/Versions/A/UpdateKit
0x109e000 - 0x10a9fff
com.rogueamoeba.audio_hijack_server.hermes 2.1.1
/usr/local/hermes/modules/Instant Hijack
Server.hermesmodule/Contents/MacOS/Instant Hijack Server
0x10f6000 - 0x10f6fff org.xlife.InquisitorLoader 3.2 (58) /Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/MacOS/Inquisitor
0x10fa000 - 0x10fafff com.plaxo.ABPlugin ??? (1.0) /Library/InputManagers/PlaxoABAddIn/PlaxoABAddIn.bundle/Contents/MacOS/PlaxoABAddIn
0x1205000 - 0x12eafff com.apple.WebKit 4531.21 (4531.21.8) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x137f000 - 0x14cafff com.apple.JavaScriptCore 4531.21
(4531.21.9) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x1519000 - 0x1f94fff com.apple.WebCore 4531.21 (4531.21.8) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x24bb000 - 0x24c2fff com.unsanity.smartcrashreports Smart
Crash Reports version 1.2.1 (1.2.1)
/Library/InputManagers/Smart Crash Reports/Smart Crash
Reports.bundle/Contents/MacOS/Smart Crash Reports
0x24c8000 - 0x24c8fff com.growl.GrowlSafariLoader 1.0 /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/MacOS/GrowlSafariLoader
0x279f000 - 0x279ffff com.apple.applescript.component 1.10.7 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
0x27fc000 - 0x27fdfff com.apple.textencoding.korean 2.0
/System/Library/TextEncodings/Korean
Encodings.bundle/Contents/MacOS/Korean Encodings
0x7083000 - 0x70ebfff com.DivXInc.DivXDecoder 6.4.0
/Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
0x73bc000 - 0x73befff com.apple.textencoding.unicode 2.0
/System/Library/TextEncodings/Unicode
Encodings.bundle/Contents/MacOS/Unicode Encodings
0x73cb000 - 0x73cdfff com.apple.textencoding.chinese 2.0
/System/Library/TextEncodings/Chinese
Encodings.bundle/Contents/MacOS/Chinese Encodings
0x7d12000 - 0x7d2efff com.rainmaker.SpellCatcher.InputMethod
10.3.4 /Users/markchapman/Library/Components/Spell
Catcher.component/Contents/MacOS/Spell Catcher
0xc2a4000 - 0xc2a4fff com.apple.osax.digihub 1.0
/System/Library/ScriptingAdditions/Digital Hub
Scripting.osax/Contents/MacOS/Digital Hub Scripting
0xc2a7000 - 0xc2e4fff com.apple.osax.standardadditions 1.10.7
(???) /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/StandardAdditions
0xc2f2000 - 0xc2f7fff com.stclairsoft.DefaultFolderX.osax
Default Folder X Addition version 1.0 (4.3.1d3)
/Users/markchapman/Library/ScriptingAdditions/Default Folder X
Addition.osax/Contents/MacOS/Default Folder X Addition
0xc35f000 - 0xc382fff
com.stclairsoft.DefaultFolderX.CarbonPatcher kBundleVersion
/Users/markchapman/Library/PreferencePanes/Default Folder
X.prefPane/Contents/Resources/Default Folder
X.bundle/Contents/Resources/Carbon
Patcher.bundle/Contents/MacOS/Carbon Patcher
0xc38e000 - 0xc3aefff Cocoa Patcher
/Users/markchapman/Library/PreferencePanes/Default Folder
X.prefPane/Contents/Resources/Default Folder
X.bundle/Contents/Resources/Cocoa
Patcher.bundle/Contents/MacOS/Cocoa Patcher
0xe5e3000 - 0xe5e3fff com.apple.SpotLightCM 1.0 (121.36)
/System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
0xe61f000 - 0xe621fff com.lemkesoft.GraphicConverterCMI 1.5
(1.6) /Users/markchapman/Library/Contextual Menu Items/GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
0xe62b000 - 0xe62dfff com.apple.AutomatorCMM 1.0.1 (88.2)
/System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
0xe630000 - 0xe634fff com.apple.FolderActionsMenu 1.3
/System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
0xe638000 - 0xe655fff com.iomega.IomegaCM IomegaCM version
1.0.1 (1.0.2) /Library/Contextual Menu Items/IomegaCM.plugin/Contents/MacOS/IomegaCM
0xe65e000 - 0xe661fff com.aquaminds.NoteTakerCMPlugIn
NoteTaker Contextual Menu Plug-In v1.3.1 (1.3.1)
/Library/Contextual Menu Items/NoteTakerCMPlugIn.plugin/Contents/MacOS/NoteTakerCMPlugIn
0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.85 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11
(368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.19
(681.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90f92000 - 0x90fd4fff com.apple.CFNetwork 4.0 (129.24) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x91011000 - 0x91092fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4
(???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x914fe000 - 0x91536fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91551000 - 0x91623fff com.apple.ColorSync 4.4.13 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6
(177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9174e000 - 0x91805fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x9193c000 - 0x9197efff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework
3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91b6c000 - 0x91c23fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91ce7000 - 0x91d02fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91d07000 - 0x91d0afff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91d0c000 - 0x91dfafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
0x91e19000 - 0x91e57fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91e5e000 - 0x91e5efff com.apple.Accelerate 1.2.2 (Accelerate
1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91e60000 - 0x91f45fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91f4d000 - 0x91f6cfff com.apple.Accelerate.vecLib 3.2.2
(vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91fd8000 - 0x92046fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x92051000 - 0x920e6fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x92100000 - 0x92688fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x926bb000 - 0x929e6fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92a16000 - 0x92b04fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
0x92b07000 - 0x92b8ffff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x92bd0000 - 0x92e03fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92f27000 - 0x92f31fff com.apple.framework.AppleTalk 1.2.0
(???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
0x92f36000 - 0x92f54fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92f5f000 - 0x92fb9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92fd7000 - 0x92fd7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x92fd9000 - 0x92fedfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x93005000 - 0x93015fff com.apple.speech.recognition.framework
3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x93021000 - 0x93036fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x93048000 - 0x930cffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x930e3000 - 0x930eefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x930f8000 - 0x93126fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x93140000 - 0x9314ffff com.apple.print.framework.Print 5.2
(192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x9315b000 - 0x931c1fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x931f2000 - 0x93241fff com.apple.NavigationServices 3.4.4
(3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x9326f000 - 0x9328cfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x9329e000 - 0x932abfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x932b4000 - 0x935c2fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x93712000 - 0x9371efff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x93723000 - 0x93743fff com.apple.DirectoryService.Framework
3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x937b7000 - 0x937d7fff libmx.A.dylib /usr/lib/libmx.A.dylib
0x937dd000 - 0x937ddfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x937df000 - 0x93e12fff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9419f000 - 0x94211fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x9424a000 - 0x9430ffff com.apple.audio.toolbox.AudioToolbox
1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x94362000 - 0x94362fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x94364000 - 0x94524fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9456e000 - 0x945abfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
0x945b3000 - 0x94603fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x9460c000 - 0x94625fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9473b000 - 0x94757fff com.apple.securityfoundation 2.2
(27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x9476b000 - 0x947affff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x947d3000 - 0x947e2fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x947ea000 - 0x947f7fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x9483d000 - 0x94856fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x9485d000 - 0x94b90fff com.apple.QuickTime 7.6.4 (1327.73) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x94c78000 - 0x94ce9fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
0x94e5f000 - 0x94f8ffff com.apple.AddressBook.framework 4.0.6
(490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x95022000 - 0x95031fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
0x95039000 - 0x95066fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x9506d000 - 0x9507dfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
0x95081000 - 0x950b0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
0x950c0000 - 0x950ddfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
0x955db000 - 0x95709fff edu.mit.Kerberos 5.5.26 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x9611c000 - 0x96121fff com.apple.URLMount 2.1.7 /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
0x96f95000 - 0x96fb4fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x97811000 - 0x9781efff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x97ade000 - 0x97af4fff com.apple.AppleShareClient 1.5.4 /System/Library/Frameworks/AppleShareClient.framework/Versions/A/AppleShareClient
0x97afe000 - 0x97b3cfff com.apple.AppleShareClientCore 1.5.4 /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
0x98ae2000 - 0x98aeffff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
0x990b9000 - 0x99163fff com.apple.applescript 1.10.7 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
0x99301000 - 0x99f3afff com.apple.QuickTimeComponents.component
7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents
0x9ff40000 - 0x9ffe2fff com.apple.QuickTimeImporters.component
7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
0xc0000000 - 0xc0008fff com.growl.growlframework 1.1.5 /Applications/Internet/Email/Mailsmith.app/Contents/Frameworks/Growl.framework/Versions/A/Growl

Reply all
Reply to author
Forward
0 new messages