-1

Our email hosting company provided a SPF records which is too long. I can't put all into one record. what can I do?

Thanks in advance.

David

David
  • 1

1 Answers1

-1

You can break it up into two records.

mail  IN  TXT  "v=spf1 ...."
mail  IN  TXT  "text continues here"

The two strings will be concatenated and no space will be put between.

EDIT: Håkan Lindqvist is right, one record with two strings is the right way.

mail  IN  TXT  "v=spf1 .." "text continues here"
toppledwagon
  • 4,245
  • 25
  • 15