D
devecom
Unregistered / Unconfirmed
GUEST, unregistred user!
我们公司有两个网站(一个自己的,一个客户的),装的邮件服务器是Imail,现在我用Delphi
5的NMPop3不能把上面的邮件删除(可以阅读),但可以删除别的网站的帐号,比如网易、新浪,
不知为什么,我把NMPop31的DeleteOnRead设为false,在程序中删除,我的代码:
NMPop31.connect;
if (NMPop31.connected) and (NMPop31.Mailcount>0) then
begin
for i := 1 to NMPop31.mailcount do
begin
NMPop31.GetMessage(i);
NMPop31.DeleteMessage(i);
end;
end;
不知什么原因,但Foxmail却可以删除,各位帮帮忙!
5的NMPop3不能把上面的邮件删除(可以阅读),但可以删除别的网站的帐号,比如网易、新浪,
不知为什么,我把NMPop31的DeleteOnRead设为false,在程序中删除,我的代码:
NMPop31.connect;
if (NMPop31.connected) and (NMPop31.Mailcount>0) then
begin
for i := 1 to NMPop31.mailcount do
begin
NMPop31.GetMessage(i);
NMPop31.DeleteMessage(i);
end;
end;
不知什么原因,但Foxmail却可以删除,各位帮帮忙!