Java Question Extending POP3 library

wl

Well-Known Member
Licensed User
Longtime User
Hello,

I'm new to B4A but it seems very exciting. Thanks Erel !

I noticed there is a POP3/SMTP/FTP library but the list of POP3 commands seems rather limited. It seems a TOP command (supported by most POP3 servers) is not supported ?

Could this be added somehow ?

Thanks,

Wim
 

wl

Well-Known Member
Licensed User
Longtime User
Based on the POP3 code Erel gave me here: http://www.b4x.com/forum/80177-post7.html

I managed to add two methods to it:
- GetStatus with event _statuscompleted
- DownloadMessageTop

The implementations were really simple based on the given code.

So: if someone would need the STAT and TOP commands of POP3, I can send you a new library.
 
Last edited:

wl

Well-Known Member
Licensed User
Longtime User
Based on the POP3 code Erel gave me here: http://www.b4x.com/forum/80177-post7.html

I managed to add two methods to it:
- GetStatus with event _statuscompleted
- DownloadMessageTop

The implementations were really simple based on the given code.

So: if someone would need the STAT and TOP commands of POP3, I can send you a new library.

Meanwhile it will also allow you to showh the uniqueid for each mail, and it does some very simple parsing of the headers (from, to, subject, recipient-id).
 
Top