Issue a simple POP3 command and return the response.
(String cmd)
| 1156 | * Issue a simple POP3 command and return the response. |
| 1157 | */ |
| 1158 | private Response simpleCommand(String cmd) throws IOException { |
| 1159 | simpleCommandStart(cmd); |
| 1160 | issueCommand(cmd); |
| 1161 | Response r = readResponse(); |
| 1162 | simpleCommandEnd(); |
| 1163 | return r; |
| 1164 | } |
| 1165 | |
| 1166 | /** |
| 1167 | * Issue a two line POP3 command and return the response |
no test coverage detected