Hi, I think you can query the mysql database for that. I would try with a query like
(SELECT v_messages.from AS email FROM v_messages) UNION DISTINCT (SELECT v_messages.to AS email FROM v_messages) But this would give you all email addresses you ever received from or mailed to. I am not sure if that is helpful. mysql --batch outputs something similar to csv. Regards Michael Am 11.02.2015 um 13:33 schrieb QUBE RUBBIK: > Hello > > I run happily a piler setup and I would like to extract all email adresses, > to send offers or greetings > > can it be achieved? > > thank you >
