var fDesc=new Array(); fDesc[0] = "HS POP3 is a software library written in C (supplied with full source code) which implements the client side of Post Office Protocol Version 3 (POP3) over TCP socket layer according to RFC 1939. Among other features, the library supports user authentication, reception of internet headers and text, message deletion and statistics.

HS POP3 supports secure POP3 over TLS / SSL using two methods: POP3S (used by Gmail) and RFC 2595.

HS POP3 supports extracting binary file attachments in MIME v1.0 base64 format..

Features

- POP3 Client Operation
- Server name resolution
- Header Reception & Parsing
- Message Text Reception
- Asynchonous non-blocking Operation
- MIME v1.0 base64 binary file attachments
- Secure POP3 over SSL / TLS using POP3S or RFC 2595
- POP3 COMMANDS: USER, PASS, STAT, LIST, UIDL, RETR, DELE, QUIT, TLS"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }