Part of twisted.mail.alias View Source View In Hierarchy
Known subclasses: twisted.mail.alias.AddressAlias, twisted.mail.alias.AliasGroup, twisted.mail.alias.FileAlias, twisted.mail.alias.ProcessAlias
Instance Variable | domains | See __init__ . |
Instance Variable | original | The original address being aliased. (type: Address ) |
Method | __init__ | |
Method | domain | Return the domain associated with original address. |
Method | resolve | Map this alias to its ultimate destination. |
Returns | The domain for the original address. (type: IDomain provider) |
Parameters | aliasmap | A mapping of username to alias or group of aliases. (type: dict mapping bytes
to AliasBase ) |
memo | A record of the aliases already considered in the resolution process. If
provided, memo is modified to include this alias. (type: NoneType
or dict of AliasBase ) | |
Returns | A message receiver for the ultimate destination or None for an invalid
destination. (type: IMessage or NoneType ) |