Re: E-mail server, minimalist approach

2006-03-26 Thread Vaaf
At 00:08 26.03.2006, Matthew Seaman wrote: On Sat, Mar 25, 2006 at 09:38:42PM +0100, Vaaf wrote: My minimalist approach to using MySQL for instance, is to stay away from phpMyAdmin and just create my databases like this: CREATE DATABASE IF NOT EXISTS database; GRANT USAGE ON database.* TO

Re: E-mail server, minimalist approach

2006-03-25 Thread Matthew Seaman
On Sat, Mar 25, 2006 at 09:38:42PM +0100, Vaaf wrote: My minimalist approach to using MySQL for instance, is to stay away from phpMyAdmin and just create my databases like this: CREATE DATABASE IF NOT EXISTS database; GRANT USAGE ON database.* TO [EMAIL PROTECTED] IDENTIFIED BY 'password';