The easiest way would be to do it through the admin panel. In Support > SQL Management > SQL ToolboxAt bottom place this code for just the email addresses SELECT emailINTO OUTFILE '/tmp/email.log'LINES TERMINATED BY 'n'FROM members;Or this to get the name and email information SELECT name,emailINTO OUTFILE '/tmp/email.log'FIELDS TERMINATED BY ',' LINES TERMINATED BY 'n'FROM members;