Setup connection to remote server on "host:port". (default: localhost:standard IMAP4 SSL port). This connection will be used by the routines: read, readline, send, shutdown.
(self, host='', port=IMAP4_SSL_PORT, timeout=None)
| 1328 | server_hostname=self.host) |
| 1329 | |
| 1330 | def open(self, host='', port=IMAP4_SSL_PORT, timeout=None): |
| 1331 | """Setup connection to remote server on "host:port". |
| 1332 | (default: localhost:standard IMAP4 SSL port). |
| 1333 | This connection will be used by the routines: |
| 1334 | read, readline, send, shutdown. |
| 1335 | """ |
| 1336 | IMAP4.open(self, host, port, timeout) |
| 1337 | |
| 1338 | __all__.append("IMAP4_SSL") |
| 1339 |