Mailsmith
Other Programs
Scripts
Mailsmith.scpt
Archive to sub-mailbox
Check Spelling
Find reply
Change font size
Submit Script to JEM
Fix common spelling errors
Setting SMTP server
URL from Safari
Address from AB
linkMunge
Export to Address Book
Saving attachments
Digest Script
File with same
POP window position
Position of new windows
iCal and Mailsmith
Edit From Line
Modified Thread Script
Reply to Selection
Temporary Text Window
Compact gain
Tracking backups
Edit subject
Googler
Auto-rewrap
MMA
SMTP server
Open, fetch, and close
URL Manager
BrainForest
Thread by Author
Thread by subject
Export Email
Get Selection
Read Addresses
Export Email
Organize Email
Account setup
Mailsmith 2 BBEdit
BBEdit 2 Mailsmith
Search II
Check One
Delete Enclosure
Open, fetch, close
Set Answered
Set Redirected
Empty Trash
List found
Print Several
Del. old. msg.
Delete Enclosures
Accounts
Address Book
Editing
Filters
General
Import/Export
Links
Mailboxes
Memory
Scripting
Speed
send/receive
Tips/Tricks


Listing of found messages

Author Jim Correia
Last modified 1998-11-03
What is this?
Create a list of messages with the same subject as the selected one (see also the scripts "Thread by Subject" and "Thread by Author")

tell application "Mailsmith 1.1"
    set m_list to selection as list
    set m to item 1 of m_list
    set c to container of m
    set s to subject of m
    if s starts with "Re: " then
        set ct to count characters of s
        set s to characters 5 thru ct of s as text
    end if
    set n to "Thread: " & s as text
    make new mail list window with data every message of c whose subject contains s with properties {name:n}
end tell