VirtualMailManager/account.py
branchv0.6.x
changeset 329 41789df75339
parent 320 011066435e6f
child 333 1ed85e696748
equal deleted inserted replaced
328:85972d3ba936 329:41789df75339
   152     def address(self):
   152     def address(self):
   153         """The Account's EmailAddress instance."""
   153         """The Account's EmailAddress instance."""
   154         return self._addr
   154         return self._addr
   155 
   155 
   156     @property
   156     @property
   157     def domain_directory(self):
   157     def domain(self):
   158         """The directory of the domain the Account belongs to."""
   158         """The Domain to which the Account belongs to."""
   159         if self._domain:
   159         if self._domain:
   160             return self._domain.directory
   160             return self._domain
   161         return None
   161         return None
   162 
   162 
   163     @property
   163     @property
   164     def gid(self):
   164     def gid(self):
   165         """The Account's group ID."""
   165         """The Account's group ID."""