diff --git a/django_mailbox/models.py b/django_mailbox/models.py index fd0ecf8..4e62041 100644 --- a/django_mailbox/models.py +++ b/django_mailbox/models.py @@ -109,6 +109,9 @@ class Mailbox(models.Model): objects = models.Manager() active_mailboxes = ActiveMailboxManager() + + def __str__(self): + return self.name @property def _protocol_info(self):