blob: c7c3862ab6589f872d8e315f166de0c8ad87ab7c (
plain)
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
|
#!./perl -w
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
use Net::Config;
use Net::SMTP;
unless(@{$NetConfig{smtp_hosts}} && $NetConfig{test_hosts}) {
print "1..0\n";
exit 0;
}
print "1..3\n";
my $i = 1;
$smtp = Net::SMTP->new(Debug => 0)
or (print("not ok 1\n"), exit);
print "ok 1\n";
$smtp->domain or print "not ";
print "ok 2\n";
$smtp->quit or print "not ";
print "ok 3\n";
|