diff --git a/imap.js b/imap.js index 96e3ea8..d7d07cb 100644 --- a/imap.js +++ b/imap.js @@ -99,8 +99,7 @@ ImapConnection.prototype.connect = function(loginCb) { } // Lastly, get the top-level mailbox hierarchy delimiter used by the // server - self._send((self.capabilities.indexOf('XLIST') === -1 - ? 'LIST' : 'XLIST') + ' "" ""', loginCb); + self._send('LIST "" ""', loginCb); }); }); };