from exchangelib import Credentials, Mailbox credentials = Credentials(username='LEEMUNDER\\ghorel', password='') config = Configuration(server='autodiscover.lmcg.com', credentials=credentials) account = Account(primary_smtp_address='ghorel@lmcg.com',config=config, autodiscover=False, access_type=DELEGATE) folder = account.root.get_folder_by_name('Citi') for item in folder.all(): print(item.subject)