Blob


1 #
2 # Postfix Admin
3 # by Mischa Peters <mischa at high5 dot net>
4 # Copyright (c) 2002 - 2005 High5!
5 # License Info: http://www.postfixadmin.com/?file=LICENSE.TXT
6 #
8 REQUIRED!!
9 ----------
10 - You are using Postfix 2.0 or higher.
11 - You are using Apache 1.3.27 or higher.
12 - You are using PHP 4.1 or higher.
13 - You are using MySQL 3.23 or higher.
16 READ THIS FIRST!
17 ----------------
18 When this is an upgrade from Postfix Admin 1.5.4 please read UPGRADE.TXT!!
20 When you are upgrading from 2.0.x please read TABLE_BACKUP_MX.TXT
22 More information is available on http://high5.net/howto/
25 1. Modify main.cf
26 -----------------
27 In order for Postfix to use MySQL for relay_domains add the following
28 to your main.cf
30 relay_domains = proxy:mysql:/usr/local/etc/postfix/mysql_relay_domains_maps.cf
33 2. mysql_relay_domains_maps.cf
34 ------------------------------
35 You will need to put this into a text file for postfix to pickup.
37 user = postfix
38 password = postfix
39 hosts = localhost
40 dbname = postfix
41 table = domain
42 select_field = domain
43 where_field = domain
44 additional_conditions = and backupmx = '1'
47 3. Restart Postfix
48 -------------------
49 When you are done make sure to restart Postfix so the changes take effect.