In Files

  • resolv.rb

Methods

Resolv::DNS::Resource::MX

Mail Exchanger resource.

Attributes

exchange[R]

The host of this MX.

preference[R]

The preference for this MX.

Public Class Methods

new(preference, exchange) click to toggle source

Creates a new MX record with preference, accepting mail at exchange.

 
               # File resolv.rb, line 1765
def initialize(preference, exchange)
  @preference = preference
  @exchange = exchange
end