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