A DNS record lookup plugin for Lita.
Add lita-dig to your Lita instance's Gemfile:
gem "lita-dig"
Configuring the default resolver is optional. If nothing specifed, 8.8.8.8 is used.
config.handlers.dig.default_resolver = '127.0.0.1'
Examples:
dig example.com [+short] - Lookup the A record for example.com using the default resolver (optionally just IP addressses)
dig example.com MX - Lookup the MX record for example.com using the default resolver
dig @8.8.8.8 example.com [+short] - Lookup the A record for example.com using 8.8.8.8 as a resolver (optionally just IP addressses)
dig @8.8.8.8 example.com NS - Lookup the NS record for example.com using 8.8.8.8 as a resolver
The majority of DNS record types (including "any") are supported.