B
bone61
Unregistered / Unconfirmed
GUEST, unregistred user!
我用indy10写了个收邮件程序,居然发现接收163.com的邮箱邮件时,连接上pop.163.com需要30秒左右啊,其他126.com,sohu 等都是1秒左右连接上。因为发现用foxmail连接pop.163.com也只要1-2秒,我就不知道是indy的问题还是163的问题,还是foxmail用什么特别方法的。不知道还有没有碰到过这中问题啊!
代码如下:
With IdPOP3 do
begin
UserName:='***';
Password:='*****';
Host:='pop.163.com';
Port:='110';
begintime:=getTickcount;
Try
Connect;
endtime:=getTickcount;
ShowMessage('连接成功,耗时 '+floattostr((endtime-begintime)/1000)+' 秒!');
Except
on E: Exception do
begin
ShowMessageFmt('Error: %s', [E.Message]);
end;
end;
代码如下:
With IdPOP3 do
begin
UserName:='***';
Password:='*****';
Host:='pop.163.com';
Port:='110';
begintime:=getTickcount;
Try
Connect;
endtime:=getTickcount;
ShowMessage('连接成功,耗时 '+floattostr((endtime-begintime)/1000)+' 秒!');
Except
on E: Exception do
begin
ShowMessageFmt('Error: %s', [E.Message]);
end;
end;