[VW7.5] POP3Client

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

[VW7.5] POP3Client

Mani S Kartha
Hi,

1. Can any one help me find out how to delete a mailMessage from the
POP3 account? The situation is,
In the docs, it is written that  using #deleteMessageID: only updates
the message (if i have understood correctly--and i think it is right
because the mail is not moved from my Inbox).But it is not specified
about identifying the status in a later stage.

2.If i send a mail to an invalid Email ID (or if it was there in a list
of recipients) ,it causes a bounce. Is it possible to identify the
mailID from the bounced mail,which actually caused the bounce(i mean the
wrong EmailID to which i send the mail)?

I admit that i haven't checked previous versions of VW regarding this (i
thought authenticated login to a client is possible only by using the
7.5 version)

Thanks in advance,

maNi

Reply | Threaded
Open this post in threaded view
|

RE: [VW7.5] POP3Client

Kogan, Tamara
> 1. Can any one help me find out how to delete a mailMessage from the
> POP3 account? The situation is,
> In the docs, it is written that  using #deleteMessageID: only updates
> the message (if i have understood correctly--and i think it is right
> because the mail is not moved from my Inbox).But it is not specified
> about identifying the status in a later stage.

You should make sure after you delete the messages the POP3Client sends
#quit to the server.
POP3Client>>close
        self quit; disconnect.
If the server doesn't receive #quit it won't finish started
transactions.


>
> 2.If i send a mail to an invalid Email ID (or if it was there in a
list
> of recipients) ,it causes a bounce. Is it possible to identify the
> mailID from the bounced mail,which actually caused the bounce(i mean
the
> wrong EmailID to which i send the mail)?
>
> I admit that i haven't checked previous versions of VW regarding this
(i
> thought authenticated login to a client is possible only by using the
> 7.5 version)

You can try to catch the NetClientError and parse the error message.

Tamara