twisted.mail.relaymanager.SMTPManagedRelayerFactory(protocol.ClientFactory) class documentationtwisted.mail.relaymanager
(View In Hierarchy)
Known subclasses: twisted.mail.relaymanager.ESMTPManagedRelayerFactory
A factory to create an SMTPManagedRelayer.
This factory creates a managed relayer which relays a set of messages over SMTP and informs an attempt manager of its progress.
| Instance Variable | messages | See __init__ | 
| Instance Variable | manager | See __init__ | 
| Instance Variable | protocol | A callable which returns a managed relayer for SMTP.  See SMTPManagedRelayer.__init__for parameters to the callable. (type: callable which returnsSMTPManagedRelayer) | 
| Instance Variable | pArgs | Positional arguments for SMTPClient.__init__(type: 1-tupleof (0)bytesor 2-tupleof (0)bytes,
(1),int) | 
| Instance Variable | pKwArgs | Keyword arguments for SMTPClient.__init__(type:dict) | 
| Method | __init__ | |
| Method | buildProtocol | Create an SMTPManagedRelayer. | 
| Method | clientConnectionFailed | Notify the attempt manager that a connection could not be established. | 
Inherited from ClientFactory:
| Method | startedConnecting | Called when a connection has been started. | 
| Method | clientConnectionLost | Called when an established connection is lost. | 
Inherited from Factory (via ClientFactory):
| Class Method | forProtocol | Create a factory for the given protocol. | 
| Method | logPrefix | Describe this factory for log messages. | 
| Method | doStart | Make sure startFactory is called. | 
| Method | doStop | Make sure stopFactory is called. | 
| Method | startFactory | This will be called before I begin listening on a Port or Connector. | 
| Method | stopFactory | This will be called before I stop listening on all Ports/Connectors. | 
SMTPManagedRelayer.__init__
for parameters to the callable. (type: callable which returns SMTPManagedRelayer)
  | Parameters | messages | The base filenames of messages to be relayed. (type: listofbytes) | 
| manager | An attempt manager. (type: _AttemptManager) | |
| args | Positional arguments for SMTPClient.__init__(type: 1-tupleof (0)bytesor 2-tupleof (0)bytes,
(1),int) | |
| kw | Keyword arguments for SMTPClient.__init__(type:dict) | 
Create an SMTPManagedRelayer.
| Parameters | addr | The address of the SMTP server. (type: IAddressprovider) | 
| Returns | A managed relayer for SMTP. (type: SMTPManagedRelayer) | |
Notify the attempt manager that a connection could not be established.
| Parameters | connector | A connector. (type: IConnectorprovider) | 
| reason | The reason the connection attempt failed. (type: Failure) |