AtMail Open, I just know if atmail have free version.
Being curious on how it goes in FreeBSD box, I give it a try as my campus interface.
As usual I try to record it in notepad plus screenshot for guide, perhaps useful 🙂
1. Download latest version
mail# wget http://atmail.org/download/atmailopen.tgz
2. Extract and change ownership
mail# tar xvzf atmailopen.tgz
mail# chown -R www:www atmailopen
3. Create database and grant access
mail# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or
\g.
Your MySQL connection id is 35030
Server version: 5.0.51a-log FreeBSD port:
mysql-server-5.0.51a
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the
buffer.
mysql> create database atmail;
Query OK, 1 row affected (0.00 sec)
mysql> grant all privileges on atmail.* to
atmail@localhost identified by ‘atmailpass’ with grant
option;
Query OK, 0 rows affected (0.05 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.04 sec)