PostfixCompleteVirtualMailSystemHowto
|
Size: 10338
Comment:
|
Size: 10652
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 24: | Line 24: |
| * Individual domain administrators are asiking web-based interface to manage their mail domains | * Individual domain administrators are asiking a web-based interface to manage their mail domains * How do you setup a web-based management system for Postfix? |
| Line 26: | Line 28: |
| * | * Each user needs a web-base interface to change his mail account's password |
| Line 28: | Line 30: |
| * How you are going backup user account database and disater recovery?. Don't be panic, I will answer all these questions. Be happy and continue to read this howto. |
ContentsBRTableOfContents |
Abstract
There are many howtos in the Internet about setting up mail servers and various people has various choice of MTAs. Some like, Qmail, while some like Postfix or Exim. I have been using Qmail for a long time and it is an excellent MTA. The way the Qmail is licensed and distributed that there are no binary packages so that users can easily setup with their favorite distribution, and installing basic Qmail setup even is very difficult since users need applied various patches and tweaks etc. With all these hassles Qmail is the preferred choice of many geeks, no argument . The decision behind this guide is to use Postfix,an equally secure and fast MTA like Qmail, it is easy to configure and setup a [https://wiki.ubuntu.com/PostfixBasicSetupHowto basic system] in any Linux distribution. Postfix has many add-ons and support Maildir format, PostgreSQL and MySQL backend for storing and managing virtual domains very easily. This setup will be a complete virtual mail domain systems , with anti-virus and spam filtering for ISPs , hosting companies, and individual corporations who wish to use Ubuntu Linux as there preferred server platform.
System Overview
It is important to know how our system works before going to install. A virtual mail system needs to be able to handle email for numerous domains with multiple users over a variety of interfaces. When you handle multiple domains within the same mail system it presents you some management issues. We have to answer these issuses using our technology. Assume ,for example you may have following questions to answer.
- What will you do if you have two users which require same username for different domains?
- If you are providing imap access and smtp-auth, how do combine the various authentication daemons into a single system?
- How do you provide security for the numerous components that comprise the system?
- How do you manage all these issues together?
- What we can do, if users are asking their own spam filtering policies.
- Individual domain administrators are asiking a web-based interface to manage their mail domains
- How do you setup a web-based management system for Postfix?
- Each user needs a web-base interface to change his mail account's password
- How you are going backup user account database and disater recovery?.
Don't be panic, I will answer all these questions. Be happy and continue to read this howto.
How Postfix Mappings Work?
The generic literal meaning of mapping is assign one value to another. What we have to map in Postfix is email user accounts or email address. One example is /etc/aliases, the local aliases or local system users mapping file used by Postfix. The syntax of this file is:
postmaster: root
This makes all the mails which are coming to postmaster@yourdomain.tld are redirected to root@yourdomain.tld. We can divide the above syntax to Left Hand Side LHS and Right Hand Side RHS. This RHS and LHS are common abbreviations which we usually used in mappings. The following table will make this idea even more clear.
LHS |
RHS |
postmaster: |
root |
attachment:IconHint.png |
Usually we do not use colon(:) in LHS for Postfix and this has been done for backward compatibility with historical reasons. The local alias file is a special file that is compiled with newaliases command but not with usual Postfix mapping command postmap |
With a basic default Postfix installation we use text file for mappings. We write the mappings into this file and then convert it into a hash file using postmap command. For example, assume that we need to map our virtual mailboxes in a file called /etc/Postfix/virtual_mailboxes. The syntax of this file look like:
info@domain1.com sigiri info@domain2.com kala
You may have noticed that we don't have colon(:) in the LHS of the mappings file
Then you need to run:
postmap /etc/postfix/virtual_mailboxes
You can access this mappings in the Postfix configuration file using the code:
virtual_mailbox_maps=hash:/etc/postfix/virtual_mailboxes
In our setup , we will replace this text mapping files by PostgreSQL tables. Our intention is to make data handling lot more flexible, robust, and scalable. But as database tables usually contain more than just two columns you will need to tell Postfix which column is meant to be the LHS and which is the RHS. For same virtual_mailbox file can be defined in a text file 'like this:
user = postfix password = YJiNLQtubgnOE hosts = localhost dbname = postfix table = mailbox select_field = maildir where_field = username #additional_conditions = and active = '1'
Let's assume that we save this data in a file called /etc/postfix/mysql_virtual_mailbox_maps.cf.
You can use this mappings in postfix using the following entry in main.cf file.
virtual_mailbox_maps = mysql:/usr/local/etc/postfix/pgsql_virtual_mailbox_maps.cf
The LHS of the mapping is defined as where_field and the RHS is defined as select_field. In this example we will map the maildir
column to the username column. The other fields in this definition file are user that needs to connect to the PostgresSQL database, password that MySQL user, dbname, the name of the MySQL database, table ,the name of the table in PostgreSQL database and hosts, the name of the server that MySQL runs on. The following tables may clear the idea even more better.
LHS |
RHS |
select_filed |
where_filed |
maildir |
username |
Other fields:
Database User |
Database User's Password |
Database Name |
Database Table |
Database Host |
postfix |
YJiNLQtubgnOE |
postfix |
mailbox |
localhost |
How Postfix Virtual Domains Work?
Understanding how virtual domains work is very important to understand how our virtual mail setup works.
There are two types of domains in Postfix.
Local domains: All domains which are listed as mydestination are treated as local domains by Postfix. Emails for local domains are delivered to system users which are listed in /etc/passwd file and these mails are spooled in /var/mail directory.
Virtual domains: In addition to the local domains Postfix can deliver mails for virtual domains. Not like local domains, Postfix will let us to handle virtual domains in a very flexible manner. The good thing is with virtual domains is that we do not need system account in /etc/passwd for each and every mail account. This provides us a way to handle thousands of mail accounts very easily in our mail server system. The mapping which we discussed above is used to handle mail account information. You can use MySQL, PostgreSQL , or LDAP for the user account management. In our setup we use PostgreSQL backend to manage user accounts of virtual domains. Postfix handles virtual domains as two different categories and need to understand how they work.
Virtual alias domains: These domains are used to forward or alias mails from one email address to another email address. Such domains can be used receive mailboxes and store on your hard disk. You do not necessarily need to use virtual alias domains in your setup. Instead we can user virtual_alias_maps even if the domains are not listed as virtual alias domains. The virtual_alias_maps is a general-purpose redirection mapping that works for everything that passes your system including local domains.
Virtual mailbox domains: Postfix uses these domains to receive mails for users under the domains and store them in the mailboxes on the hard disk. This is parameter which will simply tell Postfix to receive the mails on behalf of the domain and store them in each user's mailbox. The virtual_mailbox_maps mapping is used by Postfix to determine the location of the mailbox on your hard disk. Please remember that you can still use the virtual_alias_maps mapping to forward email to other mailboxes or external email addresses so not every user on that domain must actually have a mailbox but can also just have the email forwarded somewhere else.
attachment:IconHint.png |
It is important to understand that a domain is either a virtual alias domain or a virtual mailbox domain or a local domain. If you make a domain a virtual alias domain you will not be able to receive email for that domain on your server. On the contrary you can use the virtual_alias_maps to forward/alias email for both types of domain. So the virtual mailbox domains are generally the more flexible to use. |
attachment:IconWarning.png |
A domain can either be virtual or local and you can not use one domain in the both of these roles. Please never both. So if you decide you want your default domain be a virtual domain then remove it from the mydestination definition. Just leave it blank or set it to mydestination=localhost. Email addresses like root@localhost would then be delivered to the local root user. |
Setup Overview
attachment:CompleteSetupOverview.png
Getting Started
System Setup and Packages
Basic Mail Setup
Admin Support Systems
MySQL
Postfix
Postfix to MySQL
Enhanced Mail Services
Postfixadmin
Courier-IMAP and Authentication Services
SMTP Authentication
Web Access
Refining the Setup
Anti-Spam Configuration
Installing Amavisd and SpamAssassin
Quarantine and Spam Management
Auto and Per-Recipient White/Black Lists
Amavis/Spamassassin UI
GreyListing
Distributed and Collaborative Networks
Anti-Virus Configuration
Configuring for ClamAV
Log Analyzer
Install and Configure AWStats
Wrapping it Up
Final Changes and Troubleshooting
Howto created by: ChinthakaDeshapriya.
PostfixCompleteVirtualMailSystemHowto (last edited 2008-08-06 16:17:41 by localhost)