MPP Manager is used to configure MPP and access spam quarantines and email archives.
MPP Manager is a web application with its own embedded http server, mppserver. MPP Manager
has a simple installation that is performed from the terminal.
MPP Manager install
curl -O ftp://ftp.messagepartners.com/pub/mpp3/beta/qreview/mppmanager.tar.gz
tar xzvf mppmanager.tar.gz
cd mppmanager
./setup.pl
When install is done please point your browser to:
1) http://host:20000 for spam quarantine and archives, login with admin/your_pass
2) http://host:20001 for MPP GUI, login with admin/your_pass
Before installing MPP GUI / Qreview we are going to install the following requirements:
- libexpat
- libgd
- MySQL client (libmyclient(_r).so)
- Perl modules
1. DBI
2. DBD::MySQL
3. XML::Parser
4. XML::Generator
5. MIME::Tools
6. GD::Graph
7. URI
8. Net::SSLeay
Expat install
Expat is required for XML::Parser Perl module.
curl -O ftp://ftp.messagepartners.com/pub/expat/expat-2.0.1.tar.gz
tar xzvf expat-2.0.1.tar.gz (gzip -d < expat-2.0.1.tar.gz | tar xvf - )
cd expat-2.0.1
./configure
make
make install
GD install
libgd is required for GD::Graph Perl module. It is recommended to use MacPorts (www.macports.org).
In order to install MacPorts (http://www.macports.org/install.php#source) please make sure
you have XCode and X11 SDK already installed (http://guide.macports.org/)
In a Terminal window run the following commands:
curl -O http://svn.macports.org/repository/macports/downloads/MacPorts-1.6.0/MacPorts-1.6.0.tar.bz2
tar xzvf MacPorts-1.6.0.tar.bz2
cd MacPorts-1.6.0
./configure
make
sudo make install
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
sudo port -d selfupdate
sudo port install gd2 +no_x11
Edit /etc/profile and add "/opt/local/sbin:/opt/local/bin" to PATH:
PATH="/bin:/sbin:/usr/bin:/usr/sbin:/opt/local/sbin:/opt/local/bin"
Edit /etc/csh.login and add "/opt/local/sbin:/opt/local/bin" to PATH:
setenv PATH "/bin:/sbin:/usr/bin:/usr/sbin:/opt/local/sbin:/opt/local/bin"
MySQL install
libmysqlclient(_r).dylib is required for DBD::MySQL. MySQL can be already
installed from custom packages available or from MacPorts too:
sudo port install mysql5 +server
Follow the steps available after mysql5 install from Ports.
Modules install
perl -MCPAN -e shell
install DBI
install DBD::mysql
install XML::Parser
install XML::Generator
install HTML::Entities
install GD::Graph
install URI
install Net::SSLeay