VMware Images:
|
Virtual Users And Domains With Postfix, Courier And MySQL (CentOS 5.1)
|
Submitted by falko (Contact Author) (Forums) on Sun, 2007-12-09 17:56. :: Anti-Spam/Virus | CentOS | Postfix
Virtual Users And Domains With Postfix, Courier And MySQL (CentOS 5.1)Version 1.0 This tutorial is Copyright (c) 2007 by Falko Timme. It is derived from a tutorial from Christoph Haas which you can find at http://workaround.org. You are free to use this tutorial under the Creative Commons license 2.5 or any later version. This document describes how to install a Postfix mail server that is based on virtual users and domains, i.e. users and domains that are in a MySQL database. I'll also demonstrate the installation and configuration of Courier (Courier-POP3, Courier-IMAP), so that Courier can authenticate against the same MySQL database Postfix uses. The resulting Postfix server is capable of SMTP-AUTH and TLS and quota (quota is not built into Postfix by default, I'll show how to patch your Postfix appropriately). Passwords are stored in encrypted form in the database (most documents I found were dealing with plain text passwords which is a security risk). In addition to that, this tutorial covers the installation of Amavisd, SpamAssassin and ClamAV so that emails will be scanned for spam and viruses. The advantage of such a "virtual" setup (virtual users and domains in a MySQL database) is that it is far more performant than a setup that is based on "real" system users. With this virtual setup your mail server can handle thousands of domains and users. Besides, it is easier to administrate because you only have to deal with the MySQL database when you add new users/domains or edit existing ones. No more postmap commands to create db files, no more reloading of Postfix, etc. For the administration of the MySQL database you can use web based tools like phpMyAdmin which will also be installed in this howto. The third advantage is that users have an email address as user name (instead of a user name + an email address) which is easier to understand and keep in mind. This tutorial is based on CentOS 5.1 (i386). You should already have set up a basic CentOS system, as described here: http://www.howtoforge.com/centos-5.1-server-lamp-email-dns-ftp-ispconfig and http://www.howtoforge.com/centos-5.1-server-lamp-email-dns-ftp-ispconfig-p2. Plus, you should make sure that the firewall is off (at least for now) and that SELinux is disabled (this is important!), as shown in the chapter six on http://www.howtoforge.com/centos-5.1-server-lamp-email-dns-ftp-ispconfig-p3. This howto is meant as a practical guide; it does not cover the theoretical backgrounds. They are treated in a lot of other documents in the web. This document comes without warranty of any kind! I want to say that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!
1 Edit /etc/hostsOur hostname in this example is server1.example.com, and it has the IP address 192.168.0.100, so we change /etc/hosts as follows: vi /etc/hosts
2 Install Some SoftwareFirst we import the GPG keys for software packages: rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY* Then we update our existing packages on the system: yum update Now we install some software that we need later on: yum groupinstall 'Development Tools' yum groupinstall 'Development Libraries'
3 Install Apache, MySQL, phpMyAdminFirst we enable the RPMforge repository on our CentOS system as lots of the packages that we are going to install in the course of this tutorial are not available in the official CentOS 5.1 repositories: rpm -Uhv http://apt.sw.be/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm (If the above link doesn't work anymore, you can find the current version of rpmforge-release here: http://apt.sw.be/packages/rpmforge-release/) Afterwards we can install the needed packages with one single command (including the packages we need to build Courier-IMAP): yum install ntp httpd mysql-server php php-mysql php-mbstring php-mcrypt phpmyadmin rpm-build gcc mysql-devel openssl-devel cyrus-sasl-devel pkgconfig zlib-devel pcre-devel openldap-devel postgresql-devel expect libtool-ltdl-devel openldap-servers libtool gdbm-devel pam-devel gamin-devel
4 Install Courier-IMAP, Courier-Authlib, And MaildropUnfortunately there are no rpm packages for Courier-IMAP, Courier-Authlib, and Maildrop, therefore we have to install them as described in this tutorial: How To Install courier-imap, courier-authlib, And maildrop On Fedora, RedHat, CentOS In case you have problems creating the rpm packages, you can download mine:
5 Apply Quota Patch To PostfixWe have to get the Postfix source rpm, patch it with the quota patch, build a new Postfix rpm package and install it. cd /usr/src The last command will show some warnings that you can ignore: warning: user mockbuild does not exist - using root cd /usr/src/redhat/SOURCES Now we must edit the file postfix.spec: vi postfix.spec Change %define MYSQL 0 to %define MYSQL 1, add Patch0: postfix-2.3.3-vda.patch to the # Patches stanza, and finally add %patch0 -p1 -b .vda to the %setup -q stanza:
Then we build our new Postfix rpm package with quota and MySQL support: rpmbuild -ba postfix.spec You will see lots of warnings like these that you can ignore: msg.h:12:1: warning: "/*" within comment Our Postfix rpm package is created in /usr/src/redhat/RPMS/i386, so we go there: cd /usr/src/redhat/RPMS/i386 The command ls -l shows you the available packages: [root@server1 i386]# ls -l Pick the Postfix package and install it like this: rpm -ivh postfix-2.3.3-2.i386.rpm (In case you have problems creating the Postfix rpm package, you can download mine from here: postfix-2.3.3-2.i386.rpm.)
6 Set MySQL Passwords And Configure phpMyAdminStart MySQL: chkconfig --levels 235 mysqld on Then set passwords for the MySQL root account: mysqladmin -u root password yourrootsqlpassword Now we configure phpMyAdmin. We change the Apache configuration so that phpMyAdmin allows connections not just from localhost (by commenting out the <Directory "/usr/share/phpmyadmin"> stanza): vi /etc/httpd/conf.d/phpmyadmin.conf
Next we change the authentication in phpMyAdmin from cookie to http: vi /usr/share/phpmyadmin/config.inc.php
Then we create the system startup links for Apache and start it: chkconfig --levels 235 httpd on Now you can direct your browser to http://server1.example.com/phpmyadmin/ or http://192.168.0.100/phpmyadmin/ and log in with the user name root and your new root MySQL password.
|



![Creative Commons Attribution-NonCommercial-ShareAlike 2.0 License [Creative Commons Attribution-NonCommercial-ShareAlike 2.0 License]](http://creativecommons.org/images/public/somerights20.gif)

print: 
Recent comments
1 hour 39 min ago
3 hours 8 min ago
4 hours 17 min ago
8 hours 25 min ago
11 hours 41 min ago
11 hours 55 min ago
15 hours 2 min ago
15 hours 55 min ago
16 hours 20 min ago
18 hours 39 min ago