scanner / as_email_service

A Django app and smtp relay service for working with 3rd party email services and asimap
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Fix how interpret "Inactive: True" bounce messages -- we can no longer send to that address. #22

Closed scanner closed 1 year ago

scanner commented 1 year ago

When we get a bounce notification that has "Inactive: True" set it means that postmark is going to prevent us from sending to that address again. If "CanActivate" is True then we can re-activate being able to send to that address.

We had interpreted as being unable to send anywhere.

So we need to mostly change our messaging to a user saying that they are blocked from sending to that address and if CanActivate is true say that this can be changed, please contact the admin of the system at ....

We should just count this as a regular hard bounce instead of deactivating their account.

scanner commented 1 year ago

This was fixed when GH-32 was closed.