Fun with Python and Javascript

ontheplates.com - mybucket.co - Didip Kerabat

Posts tagged amazon

20 notes

system clock is too fast? Configure it with ntpdate

The problem that prompted this blog post is this AmazonSES error:

RequestExpired, it must be within 300secs/of server time

Let’s check my system clock:

date

Sat Aug  6 09:36:38 PDT 2011

Now let’s point my ntp daemon to do different server: pool.ntp.org

sudo ntpdate pool.ntp.org

Now, let’s do date again:

date

Sat Aug  6 09:30:31 PDT 2011

Yup. My system clock was 6 minutes too fast. And sure enough that fixed the AmazonSES error.

Filed under amazon ses ntp

0 notes

Thinking about using Amazon Simple Email Service?

Don’t forget to request production access at your earliest convenience. See documentation:

      http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/index.html?InitialSetup.Customer.html

To request production access:

      http://aws.amazon.com/ses/fullaccessrequest

Otherwise, you are faced with these terrible limitations:

  • Emails can be sent only to and from verified email addresses.

  • You can send a maximum of 200 messages per day.

  • You can send a maximum of one message per second.

It’s unfortunate that users don’t get a warning when they signed up for the service, explaining about these limitations.

Filed under amazon simple email service