$VERSION
=
'2.081'
;
sub
init($)
{
my
(
$self
,
$args
) =
@_
;
$args
->{via} =
'pop3'
;
$args
->{port} ||= 110;
$self
->SUPER::init(
$args
) or
return
;
$self
->{MTP_auth} =
$args
->{authenticate} ||
'AUTO'
;
return
unless
$self
->
socket
;
$self
;
}
sub
ids(;@)
{
my
$self
=
shift
;
return
unless
$self
->
socket
;
wantarray
? @{
$self
->{MTP_n2uidl}} :
$self
->{MTP_n2uidl};
}
sub
messages()
{
my
$self
=
shift
;
$self
->
log
(
ERROR
=>
"Cannot get the messages of pop3 via messages()."
),
return
()
if
wantarray
;
$self
->{MTP_messages};
}
sub
folderSize() {
shift
->{MTP_total} }
sub
header($;$)
{
my
(
$self
,
$uidl
) = (
shift
,
shift
);
return
unless
$uidl
;
my
$bodylines
=
shift
|| 0;;
my
$socket
=
$self
->
socket
or
return
;
my
$n
=
$self
->id2n(
$uidl
) or
return
;
$self
->sendList(
$socket
,
"TOP $n $bodylines$CRLF"
);
}
sub
message($;$)
{
my
(
$self
,
$uidl
) =
@_
;
return
unless
$uidl
;
my
$socket
=
$self
->
socket
or
return
;
my
$n
=
$self
->id2n(
$uidl
) or
return
;
my
$message
=
$self
->sendList(
$socket
,
"RETR $n$CRLF"
);
return
unless
$message
;
pop
@$message
if
@$message
&&
$message
->[-1] =~ m/^[\012\015]*$/;
$self
->{MTP_fetched}{
$uidl
} =
undef
unless
exists
$self
->{MTP_nouidl};
$message
;
}
sub
messageSize($)
{
my
(
$self
,
$uidl
) =
@_
;
return
unless
$uidl
;
my
$list
;
unless
(
$list
=
$self
->{MTP_n2length})
{
my
$socket
=
$self
->
socket
or
return
;
my
$raw
=
$self
->sendList(
$socket
,
"LIST$CRLF"
) or
return
;
my
@n2length
;
foreach
(
@$raw
)
{ m
$n2length
[$1] = $2;
}
$self
->{MTP_n2length} =
$list
= \
@n2length
;
}
my
$n
=
$self
->id2n(
$uidl
) or
return
;
$list
->[
$n
];
}
sub
deleted($@)
{
my
$dele
=
shift
->{MTP_dele} ||= {};
(
shift
) ?
@$dele
{
@_
} = () :
delete
@$dele
{
@_
};
}
sub
deleteFetched()
{
my
$self
=
shift
;
$self
->deleted(1,
keys
%{
$self
->{MTP_fetched}});
}
sub
disconnect()
{
my
$self
=
shift
;
my
$quit
;
if
(
$self
->{MTP_socket})
{
if
(
my
$socket
=
$self
->
socket
)
{
my
$dele
=
$self
->{MTP_dele} || {};
while
(
my
$uidl
=
each
%$dele
)
{
my
$n
=
$self
->id2n(
$uidl
) or
next
;
$self
->
send
(
$socket
,
"DELE $n$CRLF"
) or
last
;
}
$quit
=
$self
->
send
(
$socket
,
"QUIT$CRLF"
);
close
$socket
;
}
}
delete
@$self
{
qw(
MTP_socket
MTP_dele
MTP_uidl2n
MTP_n2uidl
MTP_n2length
MTP_fetched
)
};
OK(
$quit
);
}
sub
fetched(;$)
{
my
$self
=
shift
;
return
if
exists
$self
->{MTP_nouidl};
$self
->{MTP_fetched};
}
sub
id2n($;$) {
shift
->{MTP_uidl2n}{
shift
()} }
sub
socket
(;$)
{
my
$self
=
shift
;
my
$socket
=
$self
->_connection;
return
$socket
if
defined
$socket
;
if
(
exists
$self
->{MTP_nouidl})
{
$self
->
log
(
ERROR
=>
"Can not re-connect reliably to server which doesn't support UIDL"
);
return
;
}
return
unless
$socket
=
$self
->login;
return
unless
$self
->status(
$socket
);
$self
->{MTP_socket} =
$socket
;
}
sub
send
($$)
{
my
$self
=
shift
;
my
$socket
=
shift
;
my
$response
;
if
(
eval
{
print
$socket
@_
})
{
$response
= <
$socket
>;
$self
->
log
(
ERROR
=>
"Cannot read POP3 from socket: $!"
)
unless
defined
$response
;
}
else
{
$self
->
log
(
ERROR
=>
"Cannot write POP3 to socket: $@"
);
}
$response
;
}
sub
sendList($$)
{
my
$self
=
shift
;
my
$socket
=
shift
;
my
$response
=
$self
->
send
(
$socket
,
@_
) or
return
;
return
unless
OK(
$response
);
my
@list
;
local
$_
;
while
(<
$socket
>)
{
last
if
m
s
push
@list
,
$_
;
}
\
@list
;
}
sub
DESTROY()
{
my
$self
=
shift
;
$self
->SUPER::DESTROY;
$self
->disconnect
if
$self
->{MTP_socket};
}
sub
OK($;$) {
substr
(
shift
||
''
, 0, 3) eq
'+OK'
}
sub
_connection(;$)
{
my
$self
=
shift
;
my
$socket
=
$self
->{MTP_socket};
defined
$socket
or
return
undef
;
eval
{
print
$socket
"NOOP$CRLF"
};
if
($@ || ! <
$socket
> )
{
delete
$self
->{MTP_socket};
return
undef
;
}
$socket
;
}
sub
login(;$)
{
my
$self
=
shift
;
local
$_
;
my
(
$interval
,
$retries
,
$timeout
) =
$self
->retry;
my
(
$host
,
$port
,
$username
,
$password
) =
$self
->remoteHost;
unless
(
$username
&&
$password
)
{
$self
->
log
(
ERROR
=>
"POP3 requires a username and password."
);
return
;
}
my
$socket
=
eval
{IO::Socket::INET->new(
"$host:$port"
)};
unless
(
$socket
)
{
$self
->
log
(
ERROR
=>
"Cannot connect to $host:$port for POP3: $!"
);
return
;
}
my
$connected
;
my
$authenticate
=
$self
->{MTP_auth};
my
$welcome
= <
$socket
>;
unless
(OK(
$welcome
))
{
$self
->
log
(
ERROR
=>
"Server at $host:$port does not seem to be talking POP3."
);
return
;
}
if
(
$authenticate
eq
'AUTO'
||
$authenticate
eq
'APOP'
)
{
if
(
$welcome
=~ m
{
my
$md5
= Digest::MD5::md5_hex($1.
$password
);
my
$response
=
$self
->
send
(
$socket
,
"APOP $username $md5$CRLF"
);
$connected
= OK(
$response
)
if
$response
;
}
}
unless
(
$connected
)
{
if
(
$authenticate
eq
'AUTO'
||
$authenticate
eq
'LOGIN'
)
{
my
$response
=
$self
->
send
(
$socket
,
"USER $username$CRLF"
)
or
return
;
if
(OK(
$response
))
{
$response
=
$self
->
send
(
$socket
,
"PASS $password$CRLF"
)
or
return
;
$connected
= OK(
$response
);
}
}
}
unless
(
$connected
)
{
$self
->
log
(
ERROR
=>
$authenticate
eq
'AUTO'
?
"Could not authenticate using any login method"
:
"Could not authenticate using '$authenticate' method"
);
return
;
}
$socket
;
}
sub
status($;$)
{
my
(
$self
,
$socket
) =
@_
;
my
$stat
=
$self
->
send
(
$socket
,
"STAT$CRLF"
) or
return
;
if
(
$stat
=~ m
{
@$self
{
qw(MTP_messages MTP_total)
} = ($1,$2);
}
else
{
delete
$self
->{MTP_messages};
delete
$self
->{MTP_size};
$self
->
log
(
ERROR
=>
"POP3 Could not do a STAT"
);
return
;
}
my
$uidl
=
$self
->
send
(
$socket
,
"UIDL$CRLF"
) or
return
;
$self
->{MTP_nouidl} =
undef
;
delete
$self
->{MTP_uidl2n};
if
(OK(
$uidl
))
{
my
@n2uidl
;
$n2uidl
[
$self
->{MTP_messages}] =
undef
;
local
$_
;
while
(<
$socket
>)
{
last
if
substr
(
$_
, 0, 1) eq
'.'
;
s
$n2uidl
[$1] = $2
if
m
}
shift
@n2uidl
;
$self
->{MTP_n2uidl} = \
@n2uidl
;
delete
$self
->{MTP_n2length};
delete
$self
->{MTP_nouidl};
}
else
{
my
$list
=
$self
->
send
(
$socket
,
"LIST$CRLF"
) or
return
;
my
@n2length
;
my
@n2uidl
;
if
(OK(
$list
))
{
my
$messages
=
$self
->{MTP_messages};
my
(
$host
,
$port
) =
$self
->remoteHost;
$n2length
[
$messages
] =
$n2uidl
[
$messages
] =
undef
;
while
(<
$socket
>)
{
last
if
substr
(
$_
, 0, 1) eq
'.'
;
m
$n2length
[$1] = $2;
$n2uidl
[$1] =
"$host:$port:$1"
;
}
shift
@n2length
;
shift
@n2uidl
;
}
$self
->{MTP_n2length} = \
@n2length
;
$self
->{MTP_n2uidl} = \
@n2uidl
;
}
my
$i
= 1;
my
%uidl2n
;
foreach
(@{
$self
->{MTP_n2uidl}})
{
$uidl2n
{
$_
} =
$i
++;
}
$self
->{MTP_uidl2n} = \
%uidl2n
;
1;
}
sub
url(;$)
{
my
(
$host
,
$port
,
$user
,
$pwd
) =
shift
->remoteHost;
}
1;