Commit b207170d authored by Neal Norwitz's avatar Neal Norwitz

Comment out cap, it was unused.

Should all the commented out code be removed?
parent 3f401f07
...@@ -330,7 +330,8 @@ class IMAP4: ...@@ -330,7 +330,8 @@ class IMAP4:
be sent instead. be sent instead.
""" """
mech = mechanism.upper() mech = mechanism.upper()
cap = 'AUTH=%s' % mech # XXX: shouldn't this code be removed, not commented out?
#cap = 'AUTH=%s' % mech
#if not cap in self.capabilities: # Let the server decide! #if not cap in self.capabilities: # Let the server decide!
# raise self.error("Server doesn't allow %s authentication." % mech) # raise self.error("Server doesn't allow %s authentication." % mech)
self.literal = _Authenticator(authobject).process self.literal = _Authenticator(authobject).process
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment