Installing the required Perl modules

The Mail::Address and XML::Parser Perl modules are required on the install machine.

You only need to perform this procedure on the install machine. These modules aren't required on any other nodes.

To install the required Perl modules:

  1. Install Mail::Address:
    1. Download Mail::Address from http://pkgs.fedoraproject.org/repo/pkgs/perl-MailTools/MailTools-2.14.tar.gz/813ae849683367bb75e6be89e4e8cc46/MailTools-2.14.tar.gz.
    2. Extract MailTools-2.14.tar.gz:
      tar -xvf MailTools-2.14.tar.gz
      This creates a directory called /MailTools-2.14.
    3. Go to /MailTools-2.14 and run the following commands to install the module:
      perl Makefile.PL
      make
      make test
      sudo make install
  2. Install XML::Parser:
    1. Download XML::Parser from http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/XML-Parser-2.44.tar.gz.
    2. Extract XML-Parser-2.44.tar.gz:
      tar -xvf XML-Parser-2.44.tar.gz
      This creates a directory called /XML-Parser-2.44.
    3. Go to /XML-Parser-2.44 and run the following commands to install the module:
      perl Makefile.PL
      make
      make test
      sudo make install