Install AtMail Open on Ubuntu Server 9.04
Download AtMailOpen
# wget -c http://atmail.org/download/atmailopen.tgz
Extract and put on the right place
# tar xvzf atmailopen.tgz
# mv atmailopen /var/www/nginx-default/
# chown -R www-data:www-data /var/www/nginx-default/atmailopen/
Create mysql database and assign user
# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 43
Server version: 5.1.31-1ubuntu2 (Ubuntu)
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql> create database atmail;
Query OK, 1 row affected (0.07 sec)
mysql> grant all privileges on atmail.* to atmail@localhost identified by’atmailpass’ with grant option;
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
Edit /etc/nginx/sites-available/default
Add these lines
server {
listen 80;
server_name mail3.digitalfusi.com;location / {
index index.php index.html;
root /var/www/nginx-default/atmailopen;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/nginx-default/atmailopen$fastcgi_script_name;
include fastcgi_params;
}}
Save and restart nginx.
# /etc/init.d/nginx restart
Open http://mail3.digitalfusi.com from browser.
dasd
Just follow the screen and fill required information.
Continue till finish.
Incoming search terms for the article:
- atmail postfix
- atmail open configuration
- instalar atmail
- como instalar atmail
- Install Atmail Centos
- atmail ubuntu
- postfix atmail
- atmailopen ubuntu
- atmailopen install
- ubuntu atmail









































