diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-08 11:13:13 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-08 11:13:13 +0100 |
commit | 558e32fbd27be9a81144571b4baf318293be1344 (patch) | |
tree | 238e785d2c72dfff6015f78a340246750e45e4a2 /tests | |
parent | 35fd24ee46d8162cffe3aebcb32d0db1f35bd220 (diff) | |
download | aerogramme-558e32fbd27be9a81144571b4baf318293be1344.tar.gz aerogramme-558e32fbd27be9a81144571b4baf318293be1344.zip |
UID sequence are now correctly fetched
Diffstat (limited to 'tests')
-rw-r--r-- | tests/instrumentation/mbox-to-imap.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/instrumentation/mbox-to-imap.py b/tests/instrumentation/mbox-to-imap.py index 63ff391..79e8b41 100644 --- a/tests/instrumentation/mbox-to-imap.py +++ b/tests/instrumentation/mbox-to-imap.py @@ -25,6 +25,8 @@ if args.tls: else: imap = IMAP4 + +print(args) with imap(host=args.host, port=args.port) as M: print(M.login(args.user, args.password)) print(M.select(args.mailbox)) |