forked from KokaKiwi/boitalettres
8 lines
109 B
Python
8 lines
109 B
Python
|
#!/usr/bin/python
|
||
|
from imaplib import IMAP4
|
||
|
|
||
|
conn = IMAP4('127.0.0.1', port=4567)
|
||
|
conn.noop()
|
||
|
|
||
|
conn.logout()
|