Returns a domain name that specifies the mailbox for the responsible person.
A domain name that specifies a TXT record containing further information about the responsible person.
# File lib/Dnsruby/resource/RP.rb, line 38 def from_hash(hash) @mailbox = Name.create(hash[:mailbox]) @txtdomain = Name.create(hash[:txtdomain]) end
# File lib/Dnsruby/resource/RP.rb, line 34 def mailbox=(s) @mailbox = Name.create(s) end
# File lib/Dnsruby/resource/RP.rb, line 30 def txtdomain=(s) @txtdomain = Name.create(s) end