123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #
- # Postfix Admin
- # by Mischa Peters <mischa at high5 dot net>
- # Copyright (c) 2002 - 2005 High5!
- # Licensed under GPL for more info check GPL-LICENSE.TXT
- #
-
- REQUIRED!!
- ----------
- - You are using Postfix 2.0 or higher.
- - You are using Apache 1.3.27 / Lighttpd 1.3.15 or higher.
- - You are using PHP 5.1.2 or higher.
- - You are using MySQL 3.23 or higher OR PostgreSQL v7.4+
-
-
- READ THIS FIRST!
- ----------------
-
- This document describes upgrading from an older PostfixAdmin version
- (>= v1.5x)
-
- It's recommend that you install Postfix Admin in a new folder and not
- on-top of the old install!! (At the very least, make sure you have backups of
- the database and relevant filesystem!)
-
- When upgrading Postfix Admin, make sure you backup your database before
- running upgrade.php.
-
-
- 1. Backup the Database
- ----------------------
- When you install from a previous version make sure you backup your database
- first. There are a lot of changes in the database structure since Postfix Admin
- 1.5.4.
-
- $ mysqldump -a -u root -p > /tmp/postfixadmin-backup.sql
- or
- $ pg_dump -ad -u postfix postfix > /tmp/postfixadmin-backup.sql
-
-
- 2. Unarchive new Postfix Admin
- ------------------------------
- Make sure that you are in your WWW directory and then unarchive the
- Postfix Admin archive (whatever the filename is):
-
- $ tar -zxvf postfixadmin-X.X.tgz
-
-
- 3. Change permissions
- ----------------------
- Since the database password is stored in the config.inc.php it's a good idea
- to have change the permissions for Postfix Admin.
-
- $ cd /usr/local/www/postfixadmin
- $ find -type f -print0 | xargs -0 chmod 640
- $ find -type f -print0 | xargs -0 chown root:www
-
- (the last command assumes your Apache is running with group "www")
-
- Since version 2.4 we use smarty templates. That means the templates_c directory
- needs to be writeable for your webserver.
-
- $ chown -R www-data templates_c/
-
- (if your Apache runs as user "www-data")
-
-
- 4. Configure
- ------------
- Check the config.inc.php file. There you can specify settings that are
- relevant to your setup.
-
- Comparing config.inc.php with your previous using "diff" might save you some
- time.
-
- You can use a config.local.php file to contain your local settings. These will override any
- defined in config.inc.php - and save some time when upgrading to a new version of PostfixAdmin ;-)
-
- 5. Run setup.php
- ----------------------------------------
-
- Access setup.php through a web browser.
-
- It will attempt to upgrade your database, and also allow you to create a superadmin user.
- (In case the database upgrade fails, you can run setup.php?debug=1 to see the last executed query.)
-
- From version 2.3, you need to specify a setup_password in config.inc.php -
- setup.php should guide you through this process. If you do not have a setup_password, type one
- into the form, and setup.php will echo out the hashed value (which needs to go into config.inc.php).
- The setup_password removes the requirement for you to delete setup.php, and also closes a security hole.
-
- Since version 2.2 of Postfixadmin, setup.php can perform the needed database
- updates automatically .
-
- If you update from 2.1 or older, also create a superadmin account using setup.php.
-
- Note that admin/ has been merged into the main directory. Login with the
- superadmin account to setup domains and domain admins.
-
- 6. Upgrade your postfix config
- ------------------------------
-
- Since version 2.3, PostfixAdmin supports alias domains ($CONF['alias_domain']).
- If you want to use them, you have to add some queries to your postfix config -
- see POSTFIX_CONF for details.
-
-
- 7. Done
- -------
- This is all that is needed. Fire up your browser and go to the site that you
- specified to host Postfix Admin.
|