I'm using python (Exchangelib) to read all emails;
it's working fine,
the question is my inbox folder has +60K email;
is there a way to get theme all ?
i tryed this using 1000000 but it's not getting all the emails
for item in account.inbox.all().only('subject').order_by('-datetime_received')[:1000000]:
print(item.subject)