Return the raw results of the POP3 LIST command with no arguments. @return InputStream containing results @exception IllegalStateException if the folder isn't open @exception IOException for I/O errors talking to the server @exception MessagingException for other errors @since JavaMail 1.3.3
()
| 536 | * @since JavaMail 1.3.3 |
| 537 | */ |
| 538 | public synchronized InputStream listCommand() |
| 539 | throws MessagingException, IOException { |
| 540 | checkOpen(); |
| 541 | return port.list(); |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * Close the folder when we're finalized. |