Initialize a new instance.
(self, host='', port=LMTP_PORT, local_hostname=None,
source_address=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT)
| 1082 | ehlo_msg = "lhlo" |
| 1083 | |
| 1084 | def __init__(self, host='', port=LMTP_PORT, local_hostname=None, |
| 1085 | source_address=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): |
| 1086 | """Initialize a new instance.""" |
| 1087 | super().__init__(host, port, local_hostname=local_hostname, |
| 1088 | source_address=source_address, timeout=timeout) |
| 1089 | |
| 1090 | def connect(self, host='localhost', port=0, source_address=None): |
| 1091 | """Connect to the LMTP daemon, on either a Unix or a TCP socket.""" |