Hi, I want to know if is possible to connect with Amazon SES in order to send the osqa emails?

why?

  • don't want to maintain mail servers.
  • already deployed on EC2 (In-bound traffic to SES is free from EC2 instances).
  • need to send a high volume of email.
  • don't want to have to worry about PTR records, Reverse DNS, email whitelist/blacklist services.
  • Django-SES is a truely drop-in replacement for the default mail backend.

I wonder if is simple like change the email backend

EMAIL_BACKEND = 'django_ses.SESBackend'

But I dont know how is osqa sending the emails, for that is my question :) thanks in advance.

asked 12 Oct '11, 10:27

panchicore's gravatar image

panchicore
112
accept rate: 0%


Currently OSQA uses only SMTP as a primary email send mechanism. If SES can be used as a valid SMTP server you can make OSQA connected directly to it. Other than that I suppose you can add some proxy SMTP server that directly communicates with Amazon SES and make OSQA connect to the proxy.

link

answered 14 Oct '11, 09:17

Jordan's gravatar image

Jordan ♦♦
3.1k618
accept rate: 39%

thanks, here is a how-to implement/connect Postfix with AmazonSES, the proxy @Jordan means: http://netwiser.blogspot.com/2011/02/setup-amazon-ses-to-relay-email-by.html

(14 Oct '11, 22:24) panchicore
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×101
×24
×5
×1

Asked: 12 Oct '11, 10:27

Seen: 462 times

Last updated: 14 Oct '11, 22:24

powered by OSQA