summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Boehm <hollow@gentoo.org>2009-10-11 08:39:32 +0000
committerBenedikt Boehm <hollow@gentoo.org>2009-10-11 08:39:32 +0000
commit687319dd8243309e6bf653e9d57a07606b0611c9 (patch)
tree1d0a31e3f4c4790a21ba8ccab215cfa738542eab /www-apps/postfixadmin/files
parentMerge from Prefix (diff)
downloadhistorical-687319dd8243309e6bf653e9d57a07606b0611c9.tar.gz
historical-687319dd8243309e6bf653e9d57a07606b0611c9.tar.bz2
historical-687319dd8243309e6bf653e9d57a07606b0611c9.zip
fix #278410; remove old ebuilds
Package-Manager: portage-2.2_rc40/cvs/Linux i686
Diffstat (limited to 'www-apps/postfixadmin/files')
-rw-r--r--www-apps/postfixadmin/files/config-hook.sh10
-rw-r--r--www-apps/postfixadmin/files/postinstall-en-mysql.txt45
-rw-r--r--www-apps/postfixadmin/files/postinstall-en-postgres.txt25
-rw-r--r--www-apps/postfixadmin/files/postinstall-en.txt45
4 files changed, 0 insertions, 125 deletions
diff --git a/www-apps/postfixadmin/files/config-hook.sh b/www-apps/postfixadmin/files/config-hook.sh
deleted file mode 100644
index bc2222716509..000000000000
--- a/www-apps/postfixadmin/files/config-hook.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-case "$1" in
- install)
- sed -i "s:^\(AuthUserFile \).*$:\1${MY_INSTALLDIR}/admin/.htpasswd:gI" ${MY_INSTALLDIR}/admin/.htaccess || exit
- ;;
- *)
- # Nothing to do for clean up
- ;;
-esac
diff --git a/www-apps/postfixadmin/files/postinstall-en-mysql.txt b/www-apps/postfixadmin/files/postinstall-en-mysql.txt
deleted file mode 100644
index c2a85aa696b9..000000000000
--- a/www-apps/postfixadmin/files/postinstall-en-mysql.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-To complete installation, you must:
- 1. Create the needed MySQL database and tables and user:
- mysql -u root -p < ${MY_SQLSCRIPTSDIR}/mysql/${PVR}_create.sql
- 2. Reload MySQL:
- /etc/init.d/mysql restart
- 3. Change the password for the admin user! Inital password is
- "admin" (without the quotes).
-
-
-Updating from older version of Postfix Admin:
- * When you are upgrading from an older Postfix Admin version, make sure you
- * backup your database before you run the update script on your database.
- * mysqldump -a -u root -p > /tmp/postfixadmin-backup.sql
-
- For update from 2.0.x version of Postfix Admin:
- 1. Please read the BACKUP_MX.TXT
- 2. Update the needed MySQL database and tables:
- mysql -u root -p < ${MY_SQLSCRIPTSDIR}/mysql/2.0.x_to_${PVR}.sql
- 3. Reload MySQL:
- /etc/init.d/mysql restart
-
- For update from 1.5x (or older) version of Postfix Admin:
- 1. Please read the UPGRADE.TXT
- 2. Update the needed MySQL database and tables:
- mysql -u root -p < ${MY_SQLSCRIPTSDIR}/mysql/1.5x_to_${PVR}.sql
- 3. Reload MySQL:
- /etc/init.d/mysql restart
-
-
-To use Virtual Vacation, please read VIRTUAL_VACATION_INSTALL.
-
-Check the config.inc.php file. There you can specify settings that are
-relevant to your setup.
-
-Postfix Admin contains 3 views of administration:
- 1. Site Admin view, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/admin/.
- 2. Domain Admin view, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/.
- 3. User Admin View, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/users/.
-
-In order to do the initial configuration you have to go to the Site Admin view.
-
-The default password for the Site Admin view of Postfix Admin is admin/admin.
-
-This is specified in the .htpasswd file in the /admin directory. Make sure
-that the location of the .htpasswd file matches your path.
diff --git a/www-apps/postfixadmin/files/postinstall-en-postgres.txt b/www-apps/postfixadmin/files/postinstall-en-postgres.txt
deleted file mode 100644
index 66f303eff672..000000000000
--- a/www-apps/postfixadmin/files/postinstall-en-postgres.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-To complete installation, you must:
- 1. Create the needed PostgreSQL database and tables and user:
- creatuser -P postfix
- creatuser -P postfixadmin
- createdb -U postgres postfix
- psql -U postgres -p < ${MY_SQLSCRIPTSDIR}/postgresql/${PVR}_create.sql
- 2. Reload PostgreSQL:
- /etc/init.d/postgresql restart
- 3. Change the password for the admin user! Inital password is
- "admin" (without the qotes).
-
-Check the config.inc.php file. There you can specify settings that are
-relevant to your setup.
-
-Postfix Admin contains 3 views of administration:
- 1. Site Admin view, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/admin/.
- 2. Domain Admin view, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/.
- 3. User Admin View, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/users/.
-
-In order to do the initial configuration you have to go to the Site Admin view.
-
-The default password for the Site Admin view of Postfix Admin is admin/admin.
-
-This is specified in the .htpasswd file in the /admin directory. Make sure
-that the location of the .htpasswd file matches your path.
diff --git a/www-apps/postfixadmin/files/postinstall-en.txt b/www-apps/postfixadmin/files/postinstall-en.txt
deleted file mode 100644
index c28ec3092ea3..000000000000
--- a/www-apps/postfixadmin/files/postinstall-en.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-To complete installation, you must:
- 1. Create the needed MySQL database and tables and user:
- mysql -u root -p < ${MY_SQLSCRIPTSDIR}/mysql/${PVR}_create.sql
- 2. Reload MySQL:
- /etc/init.d/mysql restart
- 3. Change the password for the admin user! Inital password is
- "admin" (without the qotes).
-
-
-Updating from older version of Postfix Admin:
- * When you are upgrading from an older Postfix Admin version, make sure you
- * backup your database before you run the update script on your database.
- * mysqldump -a -u root -p > /tmp/postfixadmin-backup.sql
-
- For update from 2.0.x version of Postfix Admin:
- 1. Please read the BACKUP_MX.TXT
- 2. Update the needed MySQL database and tables:
- mysql -u root -p < ${MY_SQLSCRIPTSDIR}/mysql/2.0.x_to_${PVR}.sql
- 3. Reload MySQL:
- /etc/init.d/mysql restart
-
- For update from 1.5x (or older) version of Postfix Admin:
- 1. Please read the UPGRADE.TXT
- 2. Update the needed MySQL database and tables:
- mysql -u root -p < ${MY_SQLSCRIPTSDIR}/mysql/1.5x_to_${PVR}.sql
- 3. Reload MySQL:
- /etc/init.d/mysql restart
-
-
-To use Virtual Vacation, please read VIRTUAL_VACATION_INSTALL.
-
-Check the config.inc.php file. There you can specify settings that are
-relevant to your setup.
-
-Postfix Admin contains 3 views of administration:
- 1. Site Admin view, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/admin/.
- 2. Domain Admin view, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/.
- 3. User Admin View, located at http://${VHOST_HOSTNAME}${VHOST_APPDIR}/users/.
-
-In order to do the initial configuration you have to go to the Site Admin view.
-
-The default password for the Site Admin view of Postfix Admin is admin/admin.
-
-This is specified in the .htpasswd file in the /admin directory. Make sure
-that the location of the .htpasswd file matches your path.