Sha256: 6fe5ed9f00ccc9444a072d4f96de5bd6e9d79e4348ec5097d0f04479cd07a46d

Contents?: true

Size: 1.67 KB

Versions: 1

Compression:

Stored size: 1.67 KB

Contents

module SanitizeEmail
  class Config
    cattr_accessor :config
    self.config ||= {
      # Adds the following class attributes to the classes that include NinthBit::SanitizeEmail
      :force_sanitize => nil,

      # Specify the BCC addresses for the messages that go out in 'local' environments
      :sanitized_bcc => nil,

      # Specify the CC addresses for the messages that go out in 'local' environments
      :sanitized_cc => nil,

      # The recipient addresses for the messages, either as a string (for a single
      # address) or an array (for multiple addresses) that go out in 'local' environments
      :sanitized_to => nil,

      # a white list
      :good_list => nil,

      # a black list
      :bad_list => nil,

      # Use the 'real' email address as the username for the sanitized email address
      # e.g. "real@example.com <sanitized@example.com>"
      :use_actual_email_as_sanitized_user_name => false,

      # Prepend the 'real' email address onto the Subject line of the message
      # e.g. "real@example.com rest of subject"
      :use_actual_email_prepended_to_subject => false,

      :local_environment_proc => Proc.new { true }
    }

    def self.configure &block
      yield self.config

      # Gracefully handle deprecated config values.
      # Actual deprecation warnings are thrown in the top SanitizeEmail module thanks to our use of dynamic methods.
      if config[:local_environments] && defined?(Rails)
        config[:local_environment_proc] = Proc.new { SanitizeEmail.local_environments.include?(Rails.env) }
      end
      if config[:sanitize_recipients]
        config[:sanitize_to] = SanitizeEmail.sanitized_recipients
      end
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sanitize_email-1.0.0.rc1 lib/sanitize_email/config.rb