/usr/share/perl5/AAT/SMTP.pm is in octopussy 1.0.6-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | # $HeadURL$
# $Revision: 457 $
# $Date: 2011-02-24 00:21:42 +0000 (Thu, 24 Feb 2011) $
# $Author: sebthebert $
=head1 NAME
AAT::SMTP - AAT SMTP module
=cut
package AAT::SMTP;
use strict;
use warnings;
use Readonly;
use Mail::Sender;
use Net::Telnet;
use AAT::Application;
use AAT::Syslog;
use AAT::Utils qw( ARRAY NOT_NULL );
use AAT::XML;
Readonly my $SMTP_PORT => 25;
Readonly my $SMTP_TIMEOUT => 3;
my %conf_file = ();
=head1 FUNCTIONS
=head2 Configuration($appli)
Returns SMTP configuration
=cut
sub Configuration
{
my $appli = shift;
$conf_file{$appli} ||= AAT::Application::File($appli, 'smtp');
my $conf = AAT::XML::Read($conf_file{$appli}, 1);
return ($conf->{smtp});
}
=head2 Connection_Test($appli)
Checks the SMTP connection
=cut
sub Connection_Test
{
my $appli = shift;
my $status = 0;
my $conf = Configuration($appli);
if ( NOT_NULL($conf->{server})
&& NOT_NULL($conf->{sender}))
{
my $con = new Net::Telnet(
Host => $conf->{server},
Port => $SMTP_PORT,
Errmode => 'return',
Timeout => $SMTP_TIMEOUT
);
my $sender = (
NOT_NULL($conf->{auth_type})
? new Mail::Sender {
smtp => $conf->{server},
from => $conf->{sender},
auth => $conf->{auth_type},
authid => $conf->{auth_login},
authpwd => $conf->{auth_password}
}
: new Mail::Sender {smtp => $conf->{server}, from => $conf->{sender}}
);
if ((defined $con) && (defined $sender) && (ref $sender))
{
$status = 1;
$con->close();
}
}
return ($status);
}
=head2 Send_Message($appli, $msg_data)
Send message to @dests
=cut
sub Send_Message
{
my ($appli, $msg_data) = @_;
my $conf = Configuration($appli);
if (NOT_NULL($conf->{server}) && NOT_NULL($conf->{sender}))
{
my $from = $msg_data->{from} || $conf->{sender};
my $subject = $msg_data->{subject};
my $body = $msg_data->{body};
my $sender = (
NOT_NULL($conf->{auth_type})
? new Mail::Sender {
smtp => $conf->{server},
from => $from,
auth => $conf->{auth_type},
authid => $conf->{auth_login},
authpwd => $conf->{auth_password}
}
: new Mail::Sender {smtp => $conf->{server}, from => $from}
);
if ((defined $sender) && (ref $sender))
{
foreach my $dest (ARRAY($msg_data->{dests}))
{
if (defined $msg_data->{file})
{
$sender->MailFile(
{
to => $dest,
subject => $subject,
msg => $body,
file => $msg_data->{file}
}
);
}
else
{
$sender->MailMsg({to => $dest, subject => $subject || 'Your Subject', msg => $body || 'Your Body'});
}
}
$sender->Close();
return (1);
}
}
else
{
AAT::Syslog::Message('AAT_SMTP', 'SMTP_INVALID_CONFIG');
}
return (0);
}
1;
=head1 AUTHOR
Sebastien Thebert <octo.devel@gmail.com>
=cut
|