Class: IsEmail::Diagnosis::RFC5321 Private

Inherits:
Base
  • Object
show all
Defined in:
lib/is_email/diagnosis/rfc5321.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Indicates an address is valid for SMTP but is unusual

Constant Summary collapse

DESCRIPTION =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

"Address is valid for SMTP but has unusual elements."
ERROR_CODES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

{
  "TLD" => 9,
  "TLDNUMERIC" => 10,
  "QUOTEDSTRING" => 11,
  "ADDRESSLITERAL" => 12,
  "IPV6DEPRECATED" => 13
}
MESSAGES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

{
  "TLD" => "Address is valid but at a Top Level Domain.",
  "TLDNUMERIC" => "Address is valid but the Top Level Domain begins with a number.",
  "QUOTEDSTRING" => "Address is valid but contains a quoted string.",
  "ADDRESSLITERAL" => "Address is valid but at a literal address, not a domain.",
  "IPV6DEPRECATED" => "Address is valid but contains a :: that only elides one zero group."
}
REFERENCES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

{
  "TLD" => ["TLD"],
  "TLDNUMERIC" => ["TLD-format"],
  "QUOTEDSTRING" => ["quoted-string"],
  "ADDRESSLITERAL" => ["address-literal", "address-literal-IPv4"],
  "IPV6DEPRECATED" => ["address-literal-IPv6"]
}

Instance Attribute Summary

Attributes inherited from Base

#code, #message, #references, #type

Method Summary

Methods inherited from Base

#<=>, #==, #hash, #initialize, #inspect

Constructor Details

This class inherits a constructor from IsEmail::Diagnosis::Base