5

My domain is already with Amazon Route 53 and I can use the cli53 command line tool quite happily to maintain it.

We are moving to use Amazon SES and I would like to add an SPF record to the domain, as per the docs... we have no prior existing record. This is just for automated emails to customers, not internal user accounts.

I can't for the life of me figure out what the command line is to do this, can anyone provide an example?

$ cli53 rrcreate -x 3600 -r --wait mydomain.com '' 'SPF' 'v=spf1 include:amazonses.com ?all'

Traceback (most recent call last):
...
boto.route53.exception.DNSServerError: DNSServerError: 400 Bad Request
...
  
    Sender
    InvalidChangeBatch
    Invalid Resource Record: FATAL problem: InvalidTXTRDATA encountered at v=spf1 include:amazonses.com ?all
  
Aitch
  • 1,179
  • 8
  • 14
  • 4
    Does `cli53 rrcreate -x 3600 -r --wait mydomain.com '' 'SPF' '"v=spf1 include:amazonses.com ?all"'` work? – ceejayoz Oct 27 '11 at 15:11
  • 1
    Genius! That worked! Why don't you post it as a proper response and I'll mark you as the correct answer! Many thanks! – Aitch Oct 27 '11 at 15:43

1 Answers1

7

@ceejayoz's comment has the answer, which is to add double quotes around the TXT record data.

cli53 rrcreate -x 3600 -r --wait mydomain.com '' 'SPF' '"v=spf1 include:amazonses.com ?all"'
mgorven
  • 30,036
  • 7
  • 76
  • 121