|
How to set up Neomail for Tripanel.
Before configuring NEOMAIL you need to have Tripanel running on
the server.
1). First we need to configure the NeoMail configuration file.
Edit "/home/tripanel/cfg/neomail/neomail.conf"
and find the following line:
@domainnames = qw( {HOSTNAME}
);
Change it to:
@domainnames = qw( your.server.hostname
);
Example: @domainnames = qw( server1.tripanel.com );
2). The MD5 perl module is required.
OPTION 1.
The simplest way to do this is with the CPAN interactive shell.
Run the following command.
| $> perl -MCPAN -e 'install MD5' |
OPTION 2.
If you have any trouble with this then download the MD5 archive
from http://search.cpan.org/
(direct
link) and unpack it.
| $> tar zvxf MD5-{ver}.tar.gz |
Change into the new directory created
Run the following commands to install MD5
$> perl Makefile.PL
$> make
$> make install |
Done.
Related:
Installing Tripanel for Red Hat Linux
Tripanel tutorials index
Reference:
Red Hat Linux
Website
|