class documentation

An SMTP domain which add messages to a queue intended for relaying.

Method __init__ Undocumented
Method exists Check whether mail can be relayed to a user.
Method startMessage Create an envelope and a message receiver for the relay queue.
Method willRelay Check whether we agree to relay.
Instance Variable authed Undocumented
Instance Variable service Undocumented
def __init__(self, service, authenticated=False): (source)

Undocumented

def exists(self, user): (source)

Check whether mail can be relayed to a user.

Parameters
user:UserA user.
Returns
no-argument callable which returns IMessage providerA function which takes no arguments and returns a message receiver for the user.
Raises
SMTPBadRcptWhen mail cannot be relayed to the user.
def startMessage(self, user): (source)

Create an envelope and a message receiver for the relay queue.

Parameters
user:UserA user.
Returns
IMessageA message receiver.
def willRelay(self, address, protocol): (source)

Check whether we agree to relay.

The default is to relay for all connections over UNIX sockets and all connections from localhost.

Undocumented

Undocumented