SES suppressing all addresses to a domain

0

All mails sent to a domain are being bounced with:
"bounceType":"Permanent","bounceSubType":"OnAccountSuppressionList".
However none of the destinations are visible in account supression list.
I am using this to examine list:
aws sesv2 list-suppressed-destinations | grep "my-domain-name"
Is there any other setting which suppresses a domain?
The destination domain itself is a SES verified domain.
If I disable BOUNCE reason from account suppression settings, the emails get delivered correctly.
Any pointers to reolve much appericitaed.

asked 2 years ago1023 views
1 Answer
0

The only other suppression list would be the global suppression list [1] although given that it succeeds when disabling your account suppression list sure seems the domain is on the account level list. Would be worth attempting to remove the destinations [2] in question from your account suppression list to see if that succeeds or fails.

[1] https://docs.aws.amazon.com/ses/latest/dg/sending-email-global-suppression-list.html [2] https://docs.aws.amazon.com/ses/latest/dg/sending-email-suppression-list.html#sending-email-suppression-list-manual-delete

lp901
answered 2 years ago
  • Thanks for your answer. It was a rather silly issue. I did'nt realize that 'aws sesv2 list-sppressed-destinations' command does not list all the destination in a single invocation. It returns a 'NextToken' in json output, if there are more to be listed. Caller is then required to invoke command again with the token passed in --next-token arguement. Wish there was an option though to dump the entire list in single shot, for convinience in scripts etc.

  • Ah thats fair, yh some commands will handle the pagination or are supposed to but seems like its not supported on all commands

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions