Project

General

Profile

Amazon SES for CiviCRM » History » Version 16

Joseph Lacey, 05/11/2015 01:16 PM

1 1 Jon Goldberg
h1. Amazon SES for CiviCRM
2
3 2 Jon Goldberg
_Pre-requisites: DNS access_
4
5
* Have client sign up for Amazon AWS, which involves credit cards, identity verification, etc.
6
* Ideally, have them click on "SES" at the AWS console, to do the phone verification.
7
* Log onto AWS, select SES.  Note that you only have sandbox access at this time.
8
* Click on "SMTP Settings" on the left, record the server info, generate SMTP credentials and record those too.
9
* Click on "Verified Senders: Domains".  Click "Verify a new Domain".  Enter the client's domain name; also click "Generate DKIM settings".
10
* Download these credentials, don't just copy/paste from the screen, because they tend to get cut off.
11
* Update the DNS with the verification credentials.
12 5 Jon Goldberg
** *NOTE: This will take several hours (3-4?), even after DNS has propagated.*
13 3 Jon Goldberg
* Also add your own e-mail address the the verified sender - email address list.  This just requires receiving a verification email. You need this because while you're still in sandbox mode, you can only send to verified addresses.  Note that if your normal mail account has greylisting, you'll probably want to use an alternate account here, like GMail.
14 4 Jon Goldberg
15
You now have two options for SMTP setup:
16 10 Jon Goldberg
17
h3. SMTP direct from CiviCRM
18
19 16 Joseph Lacey
* Set up the SMTP Outbound settings in CiviCRM to use the Amazon SMTP server.  
20
** Without changing the core Net package, prefix the SMTP server with @ssl://@ and select a port of @465@.
21
** If however the host doesn't allow mail to be sent over port 465, "patch the core file package/Net/SMTP.php":https://github.com/civicrm/civicrm-packages/pull/66/files and don't use the ssl:// prefix.  For more information, "see this post and the posted links":http://civicrm.stackexchange.com/questions/377/how-do-i-configure-smtp-with-starttls.
22 1 Jon Goldberg
* Click "Save and Test".
23 4 Jon Goldberg
* You may not see an error on the page - so check the ConfigAndLog log for error messages if necessary.
24 1 Jon Goldberg
25 10 Jon Goldberg
h3. SMTP relayed through Postfix (recommended)
26 4 Jon Goldberg
27 14 Jon Goldberg
See also here: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/postfix.html
28
29 10 Jon Goldberg
Postfix will give higher performance on large mailings, and also does a much better job of handling resends, greylisting, etc.  This should be implemented wherever possible.
30 1 Jon Goldberg
31 11 Jon Goldberg
32 1 Jon Goldberg
* Install Postfix.
33 11 Jon Goldberg
* Paste this at the bottom of @/etc/postfix/main.cf@:
34 12 Jon Goldberg
<pre>
35 11 Jon Goldberg
#jon@palantetech.coop SES setup
36
relayhost = email-smtp.us-west-1.amazonaws.com:25
37
smtp_sasl_auth_enable = yes
38
smtp_sasl_security_options = noanonymous
39
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
40
smtp_use_tls = yes
41
smtp_tls_security_level = encrypt
42 1 Jon Goldberg
smtp_tls_note_starttls_offer = yes
43 14 Jon Goldberg
#This last line isn't needed, I'm pretty sure
44
#smtp_tls_CAfile = /etc/ssl/certs/ca-bundle.crt
45 11 Jon Goldberg
46
#jon@palantetech.coop rate limiting to 4 messages/second for now
47
smtp_destination_rate_delay = 1s
48
smtp_destination_concurrency_limit = 4
49 12 Jon Goldberg
</pre>
50
51
* Create a file with credentials at @/etc/postfix/sasl_passwd@ in the format:
52
<pre>
53
email-smtp.us-east-1.amazonaws.com:25 username:password
54
</pre>
55 13 Jon Goldberg
* Run @postmap /etc/postfix/sasl_passwd@.
56 15 Jon Goldberg
* Configure CiviCRM's SMTP settings to either a) point to localhost, or b) use mail().
57 10 Jon Goldberg
58
h2. Bounce processing setup
59
60
See [[Set up local bounce processing]].
61
62
63
h2. Testing
64
65 7 Jon Goldberg
* To test bounce processing, set up a test group made up of at least one verified address and a test contact with the e-mail address "bounce@simulator.amazonses.com".
66 1 Jon Goldberg
* Send a mailing to that group.  You can speed up testing by manually running the "Send Scheduled Mailings" and "Fetch Bounces" scheduled jobs.
67
* Don't forget to request production access when you're done!
68 6 Jon Goldberg
69 10 Jon Goldberg
h3. SPECIAL NOTE FOR EC2 INSTANCES
70
71 9 Jon Goldberg
EC2 severely throttles outgoing mail on ports 25/465/587.  You need to submit a request to Amazon to have this throttle lifted.  This is separate from any user-configurable firewalling!  You can do that (and set up PTR) here: https://portal.aws.amazon.com/gp/aws/html-forms-controller/contactus/ec2-email-limit-rdns-request
Go to top