Part of twisted.mail.maildir View Source View In Hierarchy
Implements interfaces: twisted.cred.portal.IRealm, twisted.mail.mail.IAliasableDomain
Method | __init__ | Initialize |
Method | userDirectory | Get the directory for a user |
Method | addUser | Undocumented |
Method | getCredentialsCheckers | Undocumented |
Method | requestAvatar | Return avatar which provides one of the given interfaces. |
Inherited from AbstractMaildirDomain:
Method | setAliasGroup | Undocumented |
Method | exists | Check for existence of user in the domain |
Method | startMessage | Save a message for a given user |
Method | willRelay | Undocumented |
The first argument is where the Domain directory is rooted. The second is whether non-existing addresses are simply forwarded to postmaster instead of outright bounce
The directory structure of a MailddirDirdbmDomain is:
/passwd <-- a dirdbm file /USER/{cur,new,del} <-- each user has these three directories
If the user exists in the dirdbm file, return the directory os.path.join(root, name), creating it if necessary. Otherwise, returns postmaster's mailbox instead if bounces go to postmaster, otherwise return None
Parameters | avatarId | a string that identifies an avatar, as returned by ICredentialsChecker.requestAvatarId
(via a Deferred). Alternatively, it may be
twisted.cred.checkers.ANONYMOUS . |
mind | usually None. See the description of mind in Portal.login . | |
interfaces | the interface(s) the returned avatar should implement, e.g.
IMailAccount . See the description of Portal.login . | |
Returns | a deferred which will fire a tuple of (interface, avatarAspect, logout), or the tuple itself. The interface will be one of the interfaces passed in the 'interfaces' argument. The 'avatarAspect' will implement that interface. The 'logout' object is a callable which will detach the mind from the avatar. |