Full Mail Server Solution w/ Virtual Domains & Users - Page 06 (Mail Delivery Server - DSPAM)
V. Mail Delivery ServerThe mail delivery server is the server that checks for SPAM using a bayesian algorithm via a service known as DSPAM. DSPAM is incredibly capable, and comes with a good deal of documentation regarding its various setups. Our particular setup is rather simple. MX-1 & MX-2 deliver mail to postman.internal.example.com via LMTP. LMTP is the Local Mail Transfer Protocol, you can find some basic information here. DSPAM receives the mail, checks against its own algorithms, and passes the mail over to ClamAV for virus detection. Assuming all is well, the mail is then given to Dovecot for final delivery. We'll go over the sections one at a time. So, let's get things humming on postman.internal.example.com. A. NFS SettingsSince Dovecot will be delivering our mail for us, we're going to want to get the vmail directory mapped onto the mail delivery server. Go ahead and create the vmail user and directory like this: # useradd -r -u 150 -g mail -d
/var/vmail -s /sbin/nologin -c "Virtual Mailbox" vmail Now we need to install the NFS client tools: # apt-get install nfs-common portmap The directory then needs to be mounted to the NFS share. To do a simple test, run the following: # mount files-1.internal.example.com:/vmail /vmail You should now have access to the /vmail share from files-1. Try writing a file:
# cd /vmail It should work fine this time (postman has read-write access to the NFS mount... the MX servers just had read access). Assuming everything is working, go ahead and unmount the NFS: # cd / And then make the mount permanent by putting the following into your /etc/fstab: [...] Go ahead and mount the file system one last time: # mount /vmail ... and you're good to go! B. Install DSPAMOnce again, debian makes this rediculously simple: # apt-get install dspam dspam-doc libdspam7-drv-mysql You will be asked if you want to configure the database for libdspam7-drv-mysql with dbconfig-common, choose 'No'. Honestly, if you wanted to use dbconfig, there's nothing stopping you, but for the sake of documentation, I'm going to spell out the settings C. Setup the MySQL DatabaseYou're going to need to set up some tables in the MySQL database, so log in to sql-1.internal.example.com, and fire up the mysql client as root: # mysql -u root -p Then go ahead and create the new DSPAM database and user:
MYSQL> CREATE DATABASE dspam_db; NOTE: Change the dspam_user_password to a secure password! D. Setup DSPAM for MySQLNow that MySQL has a DSPAM database and User Account, we can go ahead and import the tables from the DSPAM MySQL driver. These are stored in /usr/share/doc/libdspam7-drv-mysql on the mail delivery server (postman.internal.example.com). There are two different versions of the schemas, one built for speed, the other to save hard disk space. We'll be using the one for speed, but you can choose whichever you want. Remember, read the documentation, that's why it's there! Install the main schema: # mysql -u dspam_user -h sql-1.internal.example.com -p dspam_db < /usr/share/doc/libdspam7-drv-mysql/mysql_objects-speed.sql If you get permission errors, then go back to the mysql server and check to make sure you made the user correctly. Assuming all went well, we're also going to want to feed in the tables for virtual users: # mysql -u dspam_user -h sql-1.internal.example.com -p dspam_db < /usr/share/doc/libdspam7-drv-mysql/virtual_users.sql Now, we just need to tell DSPAM how to talk to our MySQL DB. This is done via the /etc/dspam/dspam.d/mysql.conf file. Edit it accordingly: [...] Now DSPAM will store all of its information inside of the MySQL DB. NOTE: This is a temporary setup, just because we hadn't finished the DSPAM virtual user install prior to writing this guide. Ideally, you'd want DSPAM looking at the same virtual user table as Postfix in order to get all the token information stored correctly. I'll update the guide as soon as we've completed that change-over.
|



![Creative Commons Attribution License [Creative Commons Attribution License]](http://creativecommons.org/images/public/somerights20.gif)
print: 


Recent comments
1 day 9 hours ago
1 day 20 hours ago
2 days 12 hours ago
2 days 22 hours ago
3 days 2 hours ago
3 days 8 hours ago
4 days 21 hours ago
4 days 22 hours ago
5 days 20 hours ago
5 days 21 hours ago