mirror of https://github.com/n1nj4sec/pupy.git
Bug fix for outlook
This commit is contained in:
parent
1bafddc114
commit
4bff7ea89b
|
@ -226,7 +226,7 @@ class outlook():
|
|||
'''
|
||||
folders = {}
|
||||
for inx, folder in enumerate(list(self.mapi.Folders)):
|
||||
logging.debug("New folder: {0}({1})".format(folder.Name, folder.EntryID))
|
||||
logging.debug("New folder: {0}({1})".format(folder.Name.encode('utf-8'), folder.EntryID))
|
||||
folders[folder.Name] = {}
|
||||
if "Dossiers publics" not in folder.Name and "Public folders" not in folder.Name: #Bug in my version of outlook when getting emails in public folder
|
||||
for inx,subfolder in enumerate(list(folder.Folders)):
|
||||
|
|
Loading…
Reference in New Issue