core.signals.save_Account module

Save signal receivers for the core.models.Account model.

core.signals.save_Account.post_save_account_is_healthy(sender, instance, created, **kwargs)[source]

Receiver function flagging all mailboxes of an account as unhealthy once that account becomes unhealthy.

Parameters:
  • sender (Account) – The class type that sent the post_save signal.

  • instance (Account) – The instance that has been saved.

  • created (bool) – Whether the instance was newly created.

  • **kwargs (Any) – Other keyword arguments.

Return type:

None