mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 17:35:27 +08:00
Add ForwardEmailLog.bounced col
This commit is contained in:
parent
a9a5f145aa
commit
0e7a77130c
1 changed files with 4 additions and 0 deletions
|
@ -665,6 +665,10 @@ class ForwardEmailLog(db.Model, ModelMixin):
|
|||
# for ex if alias is disabled, this forwarding is blocked
|
||||
blocked = db.Column(db.Boolean, nullable=False, default=False)
|
||||
|
||||
# can happen when user email service refuses the forwarded email
|
||||
# usually because the forwarded email is too spammy
|
||||
bounced = db.Column(db.Boolean, nullable=False, default=False, server_default="0")
|
||||
|
||||
|
||||
class Subscription(db.Model, ModelMixin):
|
||||
# Come from Paddle
|
||||
|
|
Loading…
Reference in a new issue