Not receiving Amazon SES bounce notification emails - amazon-ses

I have an Amazon SES account - it's sending emails fine.
However - if I send to invalid email addresses I never get bounce notifications. I also do not get them if sending to bounce#simulator.amazonses.com as a test.
Sender email is just my mail email address.
Howe can I trouble shoot this?

Related

AWS SES - Receiving email to s3 not working

I have configured AWS SES for receiving emails to AWS S3 bucket. Followed Below Steps :-
Create Verified identities i.e. a#domain.com (using Email address so didn't setup any MX records).
Send a test mail from a#domain.com to another verified email address b#domain.com. It is working.
Setup Rule set to create rule :-
Status is Enabled
Spam and virus scanning is Enabled
Recipient condition - a#domain.com
Action - Deliver to Amazon S3 bucket (bucket created using SES so, policy is correct)
Got the file AMAZON_SES_SETUP_NOTIFICATION into the S3 bucket but whenever I receive any new mail to a#domain.com is not found in s3.
Rule set is also in active state.
Can anyone please help me why i am not receiving mail into s3.
Thank You
The error is in your setup. It is impossible for AWS SES to receive any information for the mail that you have, without specifying the MX records. Those records would point to the mail servers of Amazon, so that whenever an email is sent, it is received by them and they can process it.
The verified email addresses concept is used mostly for the sending. By approving the email address, you verify that you can use this email address to send on the behalf of it - not to receive the emails.
What is more, receiving an email works only on the domain level. So you cannot specify in the MX records the specific email addresses. The way to overcome this, is to use some subdomains for instance:
#a.domain.com to go to SES and normal emails will go to your normal email provider.
One last thing - the receipt rules in the amazon SES allow you for configuring the receiving emails on the specific address to give you the possibility to create the special address, such as no-reply/general/etc. Mostly you would prefer to have all of your emails routed in the similar way/routed based on the subdomain.

Amazon SES Sandbox is rejecting verified email address

I have Amazon SES working and I can send emails to verified addresses. I added a new address, verified it and I can not send email to that address. What else I need to do to send email to that verified address ? I understand email addresses are case sensitive. So that's not the issue
554 Message rejected: Email address is not verified. The following identities failed the check in region US-EAST-2: xyz#gmail.com

cPanel web mail does not receive or send mails

In my cPanel account few e-mail accounts are working properly, but some of the email account does not receive or send mails.
here are the errors that I got:
when sending from a gmail account to the cPanel mail:
SMTP error from remote mail server after end of data:
550 High probability of spam
When trying to send from the cPanel email account to my gmail account I get the following message:
Could not deliver message, address not found or don't receive messages.
Can anyone help me solve this?
There are many reasons why this error could occur.
Before that I would recommend that you turn on your Email accounts' Authentication (both SPF and DKIM), those are done through:
cPanel -> Authentication (under the Email section) -> Turn Off DKIM and SPF, then turn them back On
About the second issue - I believe that your domain's mail exchanger (a setting in cPanel) is not properly configured.
If you wish to receive emails for a domain in your cPanel account you need to the following:
cPanel -> Mail Exchanger -> Select your domain -> Select Local Mail Exchanger
You should also see if your mailbox is not Suspended or Partially Suspended

can't send email to google from webmail cpanel

I use my host for webmail. I can send email to yahoo and other webmail, but I can't send to Gmail or google app.
error:
Mail delivery failed: returning message to sender
tinhphaistc#gmail.com
SMTP error from remote mail server after end of data:
host gmail-smtp-in.l.google.com [74.125.129.26]:
550-5.7.1 [103.3.245.71 1] Our system has detected an unusual rate of
550-5.7.1 unsolicited mail originating from your IP address. To protect our
550-5.7.1 users from spam, mail sent from your IP address has been blocked.
550-5.7.1 Please visit http://www.google.com/mail/help/bulk_mail.html to review
550 5.7.1 our Bulk Email Senders Guidelines. hb2si3576957pac.234 - gsmtp
Your server must be on blacklist and Google is rejecting emails from your IP. Simple fix is Change IP :( and make sure your CMS (Joomla, or wordpress usually) is patched and up to date.
according to mail headers it seems that bulk mails had sent from your server due to this your IP has blocked in gmail. If you are sending bulk mails then go through Bulk Senders Guidelines or if you are not sending bulk mails then check if spam mails had sent from your server.

Sender address rejected error while sending emails

I am developing a ruby on rails application which sends out emails. When I try to send emails from mailer is says 553 : Sender address rejected: not owned by user X.
But I try to send an email manually using Net::SMTP it goes well. I am kind of stuck for the release. Please help!!!
Your mail server is configured to check if the client is allowed to send mail with the supplied sender address. Your application does not authenticate itself as a user who is allowed to use the email address ("x" in your question) as a sender.
See this forum post. Likely when you try it manually you are logging in under a different name than your application.