finally, I wrote a simple shell script to collect mail addresses. I provided
it here for further reference.
first, create a shell script
#! /bin/sh
sed -n -r '/^[fF]rom.*:.*\w+([-+.]\w+)*...@\w+([-.]\w+)*\.\w+([-.]\w+)*/p' - |
egrep -o '\w+([-+.]\w+)*...@\w+([-.]\w+)*\.\w+([-.]\w+)*' >>
/home/xi
I want to collect all email addresses in a folder, and organise them into a
new contact list or new address book. Thunderbird has a plugin which can do
it. How about evolution?
--
View this message in context:
http://gnome-evolution-general.1774414.n4.nabble.com/I-want-to-collect-all-email-a