aboutsummaryrefslogtreecommitdiffstats
path: root/python/exchange_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/exchange_example.py')
-rw-r--r--python/exchange_example.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/python/exchange_example.py b/python/exchange_example.py
deleted file mode 100644
index c253d7b4..00000000
--- a/python/exchange_example.py
+++ /dev/null
@@ -1,8 +0,0 @@
-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)