| 348 | return self[0].all_mailboxes |
| 349 | |
| 350 | class MailboxList(TokenList): |
| 351 | |
| 352 | token_type = 'mailbox-list' |
| 353 | |
| 354 | @property |
| 355 | def mailboxes(self): |
| 356 | return [x for x in self if x.token_type=='mailbox'] |
| 357 | |
| 358 | @property |
| 359 | def all_mailboxes(self): |
| 360 | return [x for x in self |
| 361 | if x.token_type in ('mailbox', 'invalid-mailbox')] |
| 362 | |
| 363 | |
| 364 | class GroupList(TokenList): |
no outgoing calls
no test coverage detected
searching dependent graphs…