Index: Lib/imaplib.py =================================================================== RCS file: /projects/cvsroot/python/dist/src/Lib/imaplib.py,v retrieving revision 1.4 diff -c -r1.4 imaplib.py *** imaplib.py 1998/04/11 03:11:51 1.4 --- imaplib.py 1998/05/05 02:29:39 *************** *** 275,283 **** (typ, [data]) = .list(user, password) """ - if not 'AUTH=LOGIN' in self.capabilities \ - and not 'AUTH-LOGIN' in self.capabilities: - raise self.error("server doesn't allow LOGIN authorisation") typ, dat = self._simple_command('LOGIN', user, password) if typ != 'OK': raise self.error(dat) --- 275,280 ----