Postfix+Dovecot+mysql - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Server Administration (https://www.linux-noob.com/forums/forum-8.html) +--- Forum: SMTP (https://www.linux-noob.com/forums/forum-86.html) +--- Thread: Postfix+Dovecot+mysql (/thread-1794.html) |
Postfix+Dovecot+mysql - hijinks - 2006-09-29 Ok.. so recently I moved photoblog.com off a old crappy server that had cpanel on a nice server that doesn't run cpanel. So I needed a system for virtual hosting for emails mainly. I've setup postfix+mysql+courier before and courier can be a GIANT bitch. So I looked into dovecot and was very happy. So lets start off.. lets download PostfixAdmin. As of writting this you can use the following since its the current version Code: wget http://high5.net/postfixadmin/download.php?file=postfixadmin-2.1.0.tgz ok my wget saved it as download.php.... your results may vary Ok now once its installed we want to import the basic DB layout into mysql. Edit the file if you want to change the user/pass.. but you will have to change it in other files below.. so just take note if you edit it. Code: mysql -u root < DATABASE_MYSQL.TXT So that command is the default install of mysql that you didn't set a root password on.. use the -p flag if you did ok now that the layout is there lets get postfix and dovecot installed. Now the default version of postfix that ships with fedora/centos DOES NOT HAVE MYSQL FUNCTIONALITY BUILT IN. So this will be for centos or rhel you have to install the centos Plus version of it. Code: wget http://mirror.trouble-free.net/centos/4/centosplus/i386/RPMS/postfix-2.1.5-4.2.RHEL4.mysql.centos4.i386.rpm Ok great all the needed stuff is installed. So lets add a vmail user to the system Code: groupadd -g 901 vmail Then you want to edit /etc/postfix/main.cf and add this to the bottom. Take a note of /vmail change that to the location you want to store all your email in. Code: virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf ok save the file and create a new file in /etc/postfix/mysql_virtual_alias_maps.cf and add the following Code: user = postfix ok save the file and create a new file in /etc/postfix/mysql_virtual_domains_maps.cf and add the following Code: user = postfix ok save the file and create a new file in /etc/postfix/mysql_virtual_mailbox_maps.cf and add the following Code: user = postfix ok save the file and create a new file in /etc/postfix/mysql_virtual_mailbox_limit_maps.cf and add the following Code: user = postfix ok save the file and create a new file in /etc/postfix/mysql_relay_domains_maps.cf and add the following Code: user = postfix now save that and lets chown them Code: chmod 640 /etc/postfix/mysql_* Now lets create the /vmail dir and give it the correct permissions Code: mkdir /vmail now lets restart or start postfix in this case we will start it Code: service postfix start If you have sendmail on the machine already a nice little rpm to download is system-switch-mail once download run the command by the same name.. select postfix and it'll be running Now go back to the place you untared postfixadmin and point our browser to that location like [/url][url=http://jyiscool.com/postfixadmin/setup.php]http://jyiscool.com/postfixadmin/setup.php Make sure you pass all points.. then you want to remove the setup.php file Ok now in the postfixadmin dir do this Code: cd admin You need to setup the .htaccess file. So edit .htaccess in that dir and it will look something like this Code: AuthUserFile /some/dir/to/go/mail/admin/.htpasswd You want to change AuthUserFile to the path where that .htpasswd file is that you just put your postfixadmin app. Once thats installed delete the file and we will create a new one since we don't want to use the same admin user that is in there by default Code: rm -rf .htpasswd Now edit the config.inc.php file Code: cd .. Basically you just have to change some defaults to suit your needs.. From there you should be able to access the admin error by entering the user/pass you just made and create a new domain and create some new users.. Once you have done that you should be able to use the local mail command to send off a test email to make sure its in the /vmail dir Code: echo testing 1 2 3 | mail -s test user@jyiscool.com if you see a /vmail/user@jyiscool.com directory then it worked.. yayaya Now I like setting up new services like I like my women.. easy So create a new file called /etc/dovecot-mysql.conf with the following contents Code: db_host = 127.0.0.1 Save that and edit the /etc/dovecot.conf file and add the following at the bottom Code: auth_userdb = mysql /etc/dovecot-mysql.conf i also turned off ssl.. I might enable it in the future and append to this howto.. but for now in my dovecot.conf there is ssl_disable = yes Now start dovecot Code: service dovecot start You should not be able to grab that email you just sent that user via imap/pop3 Now make sure both get loaded on boot Code: chkconfig dovecot on Now I am pretty drunk now while doing this so there could be many errors.. deal with it Postfix+Dovecot+mysql - anyweb - 2006-09-29 Quote:Now I am pretty drunk now while doing this so there could be many errors.. deal with it heh, great post Jy keep it up ! pinned :) cheers anyweb Postfix+Dovecot+mysql - MilligaN - 2006-09-30 Looks like an ace post! Im going to try it right away. You should get drunk more often! Postfix+Dovecot+mysql - kosta - 2007-08-21 Hello friends... I'm new here and I have one question... I followed the instructions above and everything in OK but quota doeasn't work... I entered YES for quota in postfixadmin, setup is 50MB for user mailboxes but I still can receive more then 50MB in mailboxes... When I enter #du in user maildir it is above 50MB... Here is few lines from main.cf Quote:virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cfvirtual_gid_maps = static:1001 You will notice that some things in not the same like here but It works for me. Except Quota... Postfix+Dovecot+mysql - speeddemon92 - 2010-03-07 Thanks man this is a life saver. I use Ubuntu and used their page which used courier and quickly found problems. I since found this page and have used it for the second time with success! (First time my server was hacked because I forgot to harden it [img]<___base_url___>/uploads/emoticons/default_dry.png[/img] Oh well, I learned better) I just set up my server for the second time just a few hours ago and is working now after looking at my error in the log. I just want to say thank you for this simple instruction page. Also if anyone ever has problems with your server and your postfix log says something about the mysql sockets like this Quote:"postfix/cleanup[4486]: warning: connect to mysql server localhost: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)"there is a quick fix. change this line in your mysql_* files from: Code: hosts = localhost to: Code: hosts = 127.0.0.1 this will help as linux sometimes forgets that it is localhost or if it is chrooted. Postfix+Dovecot+mysql - Chandana - 2010-05-27 When I'm sending mail from Telnet. In Mail log it log as Permission Denied Message Code: May 27 14:27:45 localhost pipe[21486]: fatal: pipe_command: execvp /usr/lib/dovecot/deliver: Permission denied Any one have idea of this issue? May I want to set permission for deliver folder? Postfix+Dovecot+mysql - Dungeon-Dave - 2010-05-27 Looks like postfix can't pass the mail to dovecot. Is dovecot actually running? |