Abhir Joshi wrote:
When using fetchmail, how do I delete oversized messages from the server without actually fetching them? The man page of
It's not possible with fetchmail AFAIK. :(
If fetchmail is unable to do it, is there any other way?
Yes, with my POP accounts I do it directly like this:
$ telnet <pop-server> 110
USER <username>
OK
PASS <password>
OK
DELE <message-number>
OK
QUIT
You can check the size of the messages with LIST, etc.
Hope that solves your prob for now.
Manish