Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Mar 2006 21:38:42 +0100
From:      Vaaf <vaaf@broadpark.no>
To:        questions@freebsd.org
Subject:   E-mail server, minimalist approach
Message-ID:  <7.0.1.0.2.20060325213043.023916c8@broadpark.no>

next in thread | raw e-mail | index | archive | help

Hello!

I am curious about the best practices of hosting other people's e-mails
in FreeBSD, using Postfix and MySQL if necessary.

I used to use Postfixadmin but lately I feel sick when using badly laid out
web user interfaces like that. Maintaining stuff graphically not only makes me
want to change and redesign everything I see---it also makes it difficult for
me to store my configurations in my configuration repository.

Is there a minimalist approach to this?
Any recommendations?

(the following is off topic)

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 database@localhost IDENTIFIED BY 'password';
GRANT ALL ON database.* TO database@localhost;

Those are 3 lines that go well into my mysql.txt file, further subjected to
encryption, DVD burning and then burrial somewhere deep inside the
Sahara desert. Thanks folks!

-- Vaaf




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?7.0.1.0.2.20060325213043.023916c8>