If you get the binary RPMS you will need at least the vmailmgr and vmailmgr-daemon packages.
Simply compile the src.rpm file with the `rpm --rebuild
` command.
-Example-
rpm -ivh vmailmgr-0.96.6-1.src.rpm
After compiling the source rpms, the binaries will be located
in `/usr/src/redhat/RPMS/i386/
` or something similar.
Simply run the following command for each package
rpm -ivh <location>/<package.i386.rpm>-Example-
rpm -ivh /usr/src/redhat/RPMS/i386/vmailmgr-0.96.6-1.i386.rpm rpm -ivh /usr/src/redhat/RPMS/i386/VMailMgr-daemon-0.96.6-1.i386.rpm
If you dont ue RPMS you can install from source.
Run the following command
(As non-root user) tar zxf <package.tar.gz> cd <newly created dir> ./configure make (As root) make install-Example-
(As non-root user) tar zxf vmailmgr-0.96.6.tar.gz cd vmailmgr-0.96.6 ./configure make (As root) make install