Initialize a new instance.
(self, host='', port=LMTP_PORT, local_hostname=None,
source_address=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT)
| 1066 | ehlo_msg = "lhlo" |
| 1067 | |
| 1068 | def __init__(self, host='', port=LMTP_PORT, local_hostname=None, |
| 1069 | source_address=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): |
| 1070 | """Initialize a new instance.""" |
| 1071 | super().__init__(host, port, local_hostname=local_hostname, |
| 1072 | source_address=source_address, timeout=timeout) |
| 1073 | |
| 1074 | def connect(self, host='localhost', port=0, source_address=None): |
| 1075 | """Connect to the LMTP daemon, on either a Unix or a TCP socket.""" |