Project

General

Profile

Actions

Feature #11312

open

Add Resolv::DNS::Resource::IN::SPF

Added by postmodern (Hal Brodigan) over 8 years ago. Updated over 8 years ago.

Status:
Open
Target version:
-
[ruby-core:69748]

Description

The SPF type record (RFC4408 Section 3.1.1) is quite common now. The resolv library should probably support it. As a workaround I monkey patched in the resource class:

class Resolv::DNS::Resource::IN::SPF < Resolv::DNS::Resource::IN::TXT
  # resolv.rb doesn't define an SPF resource type.
  TypeValue = 99
  ClassValue = Resolv::DNS::Resource::IN::ClassValue

  Resolv::DNS::Resource::ClassHash[[TypeValue, ClassValue]] = self
end

I could formalize my monkeypatch into an actual patch. I would just need to know whether SPF should be listed in the ClassInsensitiveTypes array.

Updated by nagachika (Tomoyuki Chikanaga) over 8 years ago

  • Assignee set to akr (Akira Tanaka)
Actions

Also available in: Atom PDF

Like0
Like0