Class: IsEmail::Diagnosis::CFWS Private

Inherits:
Base
  • Object
show all
Defined in:
lib/is_email/diagnosis/cfws.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 has a Comment or Folding White Space

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 within the message but cannot be used unmodified for the envelope."
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.

{
  "COMMENT" => 17,
  "FWS" => 18
}.freeze
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.

{
  "COMMENT" => "Address contains messages",
  "FWS" => "Address contains Folding White Space"
}.freeze
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.

{
  "COMMENT" => ["dot-atom"],
  "FWS" => ["local-part"]
}.freeze

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