-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sign in issue #14
Comments
Same here.. were you ever able to figure out the issue? |
Same here, it loops and only shows sign in. |
K so I just found this, experienced the same thing, but do not have time to dig into What everyone here is experiencing happens b/w lines 17-30. An exception is getting thrown...:def login(self, username, password):
self.username = username
self.password = password
while True:
try:
#########################
# RIGHT IN HERE SOMEWHERE.
self.imap = imaplib.IMAP4_SSL(config.imap_server,config.imap_port)
r, d = self.imap.login(username, password)
assert r == 'OK', 'login failed'
print(" > Sign as ", d)
#########################
except: # <=======CAUSING THIS TO CATCH,
print(" > Sign In ...")
continue # <====FOREVER
# self.imap.logout()
break |
Try adding a shbang to the config file eg: #!/usr/bin/env python |
I'm with the same problem.. I'am trying to use via cloud9 in my workplace and it gave me this loop, but when i tried at home in Ubuntu 16 it worked normally. |
It is also giving me the "Sign in" loop. I also tried it on a different network and still getting the same issue. |
I just copied the config data to the main file and changed the references. It's working fine now! |
it is showing only sign in multiple times in console
The text was updated successfully, but these errors were encountered: