On Mon, 9 Jul 2001, Thomas Mueller wrote:
> You can delete a message from a POP3 server using telnet to the POP3 server,
> specifying port 110 in most cases. You would use 'dele' command, but would need
> to make sure you were deleting the correct message.
Here are the typical commands in the typical order
(and what they mean if not obvious):
telnet <pop3 server> 110 OR
telnet <pop3 server>:110 (depends on your telnet client)
user <username>
pass <password>
list (gives number of messages and sizes)
top 1 10 (gives first 10 lines of message #1)
dele 1
quit
- Steve