(String capability)
| 1672 | } |
| 1673 | |
| 1674 | public synchronized void enable(String capability) throws ProtocolException, StoreClosedException { |
| 1675 | IMAPProtocol p = null; |
| 1676 | try { |
| 1677 | p = getStoreProtocol("enable(" + capability + ")"); |
| 1678 | p.enable(capability); |
| 1679 | } catch (ConnectionException cex) { |
| 1680 | throw new StoreClosedException(this, cex.getMessage()); |
| 1681 | } finally { |
| 1682 | releaseStoreProtocol(p); |
| 1683 | } |
| 1684 | } |
| 1685 | |
| 1686 | /** |
| 1687 | * Set the user name to be used with the PROXYAUTH command. |
no test coverage detected