* 'create_tables.pgsql'
- Removed unneeded sequences 'alias_id' and 'relocated_id'
- Removed unneeded column 'id' from table 'alias' and 'relocated'.
#!/bin/bash# $Id$## Installation script for the Virtual Mail Manager# run: ./install.shLANG=CPATH=/bin:/usr/sbin:/usr/binINSTALL_OPTS="-g 0 -o 0 -p -v"PREFIX=/usr/localPF_CONFDIR=$(postconf-hconfig_directory)PF_GID=$(id-gpostfix)DOC_DIR=${PREFIX}/share/doc/vmmDOCS="ChangeLog COPYING INSTALL README"if[$(id-u)-ne0];thenecho"Run this script as root."exit1fipythonsetup.pyinstall--prefix${PREFIX}pythonsetup.pyclean--all>/dev/nullinstall-b-m0600${INSTALL_OPTS}vmm.cfg${PREFIX}/etc/install-b-m0640-g${PF_GID}-o0-p-vpgsql-*.cf${PF_CONFDIR}/install-m0700${INSTALL_OPTS}vmm${PREFIX}/sbin[-d${DOC_DIR}]||mkdir-m0755-p${DOC_DIR}forDOCin${DOCS};doinstall-m0644${INSTALL_OPTS}${DOC}${DOC_DIR}done[-d${DOC_DIR}/examples]||mkdir-m0755-p${DOC_DIR}/examplesinstall-m0644${INSTALL_OPTS}pgsql-*.cf${DOC_DIR}/examplesinstall-m0644${INSTALL_OPTS}vmm.cfg${DOC_DIR}/examplesechoecho"Don't forget to edit ${PREFIX}/etc/vmm.cfg"echo"and ${PF_CONFDIR}/pgsql-*.cf files."echo