thunderbird_accounts.mail.models
Stalwart models live here Schema is based on init scripts: https://stalw.art/docs/storage/backends/postgresql#initialization-statements
Classes
|
The Stalwart account model |
|
|
|
|
|
A TextArea field with a CharField-sized widget |
- class thunderbird_accounts.mail.models.SmallTextField(*args, db_collation=None, **kwargs)[source]
Bases:
TextField
A TextArea field with a CharField-sized widget
- class thunderbird_accounts.mail.models.Account(*args, **kwargs)[source]
Bases:
Model
The Stalwart account model
- Parameters:
name (SmallTextField) – Name. The account name (this must be unique.)
description (TextField) – Description. The account description (used in groups.)
secret (TextField) – Secret. Text area of account secrets (password, app password, etc…)<br/> App Passwords must be in the format of <pre>$app$app_password_name$hashed_app_password</pre><br/> So with a password of test it could be: <pre>$app$Thunderbird$(hashed password goes here)</pre>
type (TextField) – Type
quota (IntegerField) – Quota
active (BooleanField) – Active
django_pk (UUIDField) – Primary key: Django pk
Relationship fields:
- Parameters:
django_user (
ForeignKey
toUser
) – Django user (related name:account
)
Reverse relationships:
- Parameters:
groupmember (Reverse
ForeignKey
fromGroupMember
) – All group members of this account (related name ofname
)email (Reverse
ForeignKey
fromEmail
) – All emails of this account (related name ofname
)
- save_app_password(label, password)[source]
Hashes a given password, formats it with the label and saves it to the secret field.
- exception DoesNotExist
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned
Bases:
MultipleObjectsReturned
- class thunderbird_accounts.mail.models.GroupMember(name, member_of, django_pk)[source]
Bases:
Model
- Parameters:
member_of (TextField) – Member of. The name of a group account (an account with the type of <b>group</b>.)
django_pk (UUIDField) – Primary key: Django pk
Relationship fields:
- Parameters:
name (
ForeignKey
toAccount
) – Name (related name:groupmember
)
- exception DoesNotExist
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned
Bases:
MultipleObjectsReturned
- class thunderbird_accounts.mail.models.Email(name, address, type, django_pk)[source]
Bases:
Model
- Parameters:
address (SmallTextField) – Address. Full email address.
type (TextField) – Type
django_pk (UUIDField) – Primary key: Django pk
Relationship fields:
- Parameters:
name (
ForeignKey
toAccount
) – Name (related name:email
)
- exception DoesNotExist
Bases:
ObjectDoesNotExist
- exception MultipleObjectsReturned
Bases:
MultipleObjectsReturned