Feat request: redeliver with suppression list ignore #2809
Replies: 3 comments 15 replies
-
I think the way to remove someone from the suppression list is to release a held message to them. A message that was held because they were on the suppression list. It may in fact be a bug if you cannot click on redeliver on an already failed message in order to take them off the list. |
Beta Was this translation helpful? Give feedback.
-
Hi @arthurzenika, Thank you for the return. I tried to update my Postal server from version 2.1.4 to 2.3.2 and I couldn't. When executing the command "postal upgrade 2.3.2" the Docker images were not updated. Postal continued to work, but in version 2.1.4. If you could share how the update went, if everything went as expected, that would be great. Thanks! |
Beta Was this translation helpful? Give feedback.
-
@arthurzenika I had the same issue, I resolved it by updating the config parameter default_suppression_list_automatic_removal_days to 0, I don't know if this is present in older version but maybe this will help you |
Beta Was this translation helpful? Give feedback.
-
We have something that happens quite often on our postal instances : something is wrong on the recipient side (over quota, smtp migration, ssl wrongly configured, etc) so postal rightfully goes into soft fail/hard fail and the email ends up on the suppression list. So far so good. That's a great feature.
But... when the recipient side fixes the problem and we are still in the 30 days "pause" period, we want to redeliver a message or even a test message, but that will be intercepted by the suppression list. What we do is we go and do an SQL query
delete from suppressions where address = '[email protected]';
and then go and click "Redeliver message". That seems to fix the problem and we can then (if the older messages are still in the database) go back and redeliver a bunch of failed messages.The feature could look like : having an "advanced" button (hidden somewhere) that enables a "Redeliver message while ignoring suppression list".
Beta Was this translation helpful? Give feedback.
All reactions