diff options
| author | s@aa9ff9ce06b08acfd2a93ebd342ce6879430fbdd <s@web> | 2018-06-17 16:22:18 +0000 |
|---|---|---|
| committer | admin <admin@branchable.com> | 2018-06-17 16:22:18 +0000 |
| commit | ef2df05744838481aaec880bffe19376d5e22813 (patch) | |
| tree | d944a34cd43412ba75081b261d870d1967912168 | |
| parent | e8ece5052b14ae1a8336d8aa3b338dbc462b7818 (diff) | |
New post - DNS - Support for Multiline TXT records.
| -rw-r--r-- | doc/forum/DNS_-_Support_for_Multiline_TXT_records.mdwn | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/forum/DNS_-_Support_for_Multiline_TXT_records.mdwn b/doc/forum/DNS_-_Support_for_Multiline_TXT_records.mdwn new file mode 100644 index 00000000..69a62b59 --- /dev/null +++ b/doc/forum/DNS_-_Support_for_Multiline_TXT_records.mdwn @@ -0,0 +1,19 @@ +bind9 has a limit on the number of characters in a single line TXT record. I was unable to provision the DKIM TXT record using propellor due to this limit. + +I added a new MTXT record type to `Propellor.Types.DNS.Record` ([patch][1]). + +MTXT creates a multiline TXT record. It splits the record's text (say +"long string...\n...xyz") at `'\n'` and creates a TXT record of the +form: + + + domain IN TXT ( "long string..." + "...xyz" ) + + +I'm [currently using this recipe][2] to provision the DKIM TXT record. + +I want to know if there is a better way to do this without having to add the MTXT record type? + +[1]: https://ricketyspace.net/file/0001-add-MTXT-record-type-to-Propellor.Types.DNS.Record.patch +[2]: https://git.ricketyspace.net/propellor/tree/config.hs#n722 |
