Sha256: 4eaf9f8dee8008abdee53d7bb44c2b7ad33bbfb226d496d42d0324cbaa52c44a

Contents?: true

Size: 937 Bytes

Versions: 4

Compression:

Stored size: 937 Bytes

Contents

module EmailDetected
  MESSAGES = {
    -1 =>  'Validation failed (non-SMTP)',
    250 => 'Requested mail action okay, completed',
    251 => 'User not local; will forward to <forward-path>',
    550 => 'Requested action not taken:, mailbox unavailable',
    551 => 'User not local; please try <forward-path>',
    552 => 'Requested mail action aborted:, exceeded storage allocation',
    553 => 'Requested action not taken:, mailbox name not allowed',
    450 => 'Requested mail action not taken:, mailbox unavailable',
    451 => 'Requested action aborted:, local error in processing',
    452 => 'Requested action not taken:, insufficient system storage',
    500 => 'Syntax error, command unrecognised',
    501 => 'Syntax error in parameters or arguments',
    503 => 'Bad sequence of commands',
    521 => '<domain> does not accept mail [rfc1846]',
    421 => '<domain> Service not available, closing transmission channel'
  }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
email_detected-0.1.3 lib/email_detected/messages.rb
email_detected-0.1.2 lib/email_detected/messages.rb
email_detected-0.1.1 lib/email_detected/messages.rb
email_detected-0.1.0 lib/email_detected/messages.rb