Mail’s Mail.app keeps a list of recent recipients, but it doesn’t let you export them to a file. You could do as some others on the Internet have suggested and grep the file of addresses for everything that looks like an email address, or you could work with your system instead of against it!
The trick is twofold: knowing where the addresses are stored, and knowing how. They’re stored in a file in your user directory, Library/Application Support/AddressBook/MailRecents-v4.abcdmr.
The “how” is the fun part. It’s an SQLite database file. Now all you have to do is open the file with SQLite and select the data from it! The full power of SQL is at your disposal. Here’s a sample:
$ sqlite3 ~/Library/Application\ Support/AddressBook/MailRecents-v4.abcdmr
Here is an SQL command you can enter to select all of the emails, with first and last names:
select '"' || ZFIRSTNAME || ' ' || ZLASTNAME || '" ^lt;' || ZEMAILNORMALIZED || '>' from ZABCDMAILRECENT;
Further Reading:
- GnuCash to MySQL export script
- How to find next and previous records in SQL
- How to train Thunderbird to detect junk mail
- Switching from Ubuntu to Fedora, and Thunderbird to Claws Mail
- There’s a European OpenSQL Camp coming up
PlanetMySQL Voting: Vote UP / Vote DOWN