Install Postfix dovecot with mysql backgroud -
i have spent 3 days install postfix, dovecot , mysql on vps server. has been frustrating process. have googled painfully 3 days , collected information piece piece , made combination work. just want list steps , configuration files together, useful undergoing painful process. make mysql ready, , create database postfix (or whatever name want), create mysql user postfix , grant privilege postfix database. create following tables: create table virtual_domains ( id int(11) not null auto_increment, name varchar(50) not null, primary key (id) ) engine=innodb default charset=utf8; create table virtual_aliases ( id int(11) not null auto_increment, domain_id int(11) not null, source varchar(100) not null, destination varchar(100) not null, primary key (id), foreign key (domain_id) references virtual_domains(id) on delete cascade ) engine=innodb default charset=utf8; create table virtual_users ( id int(11) not null auto_increment, domain_id int(11) not null, password varchar(32...