Example: pop3_free

In the following example, the pop3_free function frees up the POP3 server.

...
// Logon to the POP3 server
pop3_logon( "Login", "
        URL=pop3://user0004t:my_pwd@techno.merc-int.com",
        LAST );
// Retrieve all messages on the server without deleting any of them
pop3_retrieve("POP3", "RetrieveList=ALL", "DeleteMail=false", LAST );
// Free the server
pop3_free();
...