The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'         => 'Net::Server::Mail',
    'VERSION_FROM' => 'lib/Net/Server/Mail.pm',
    'PREREQ_PM'    => {
        'Net::SMTP'       => 0,
        'IO::Socket::SSL' => '1.831',
    },
    'BUILD_REQUIRES' => { 'Test::Most' => 0, },
    (
        $] >= 5.005
        ? (
            ABSTRACT_FROM => 'lib/Net/Server/Mail.pm',
            AUTHOR        => 'Xavier Guimard <x.guimard@free.fr>'
          )
        : ()
    ),
    META_MERGE => {
        recommends => {
            'IO::Socket::SSL' => 1.831,
        },
    },
);