Methods
N
S
T
Attributes
[W] strict_base64decode
[W] strict_parse
Class Public methods
new( strict )
# File rails/actionmailer/lib/action_mailer/vendor/tmail/config.rb, line 34
def initialize( strict )
  @strict_parse = strict
  @strict_base64decode = strict
end
to_config( arg )
# File rails/actionmailer/lib/action_mailer/vendor/tmail/config.rb, line 63
def Config.to_config( arg )
  return DEFAULT_STRICT_CONFIG if arg == true
  return DEFAULT_CONFIG        if arg == false
  arg or DEFAULT_CONFIG
end
Instance Public methods
new_body_port( mail )
Also aliased as: new_preamble_port, new_part_port
# File rails/actionmailer/lib/action_mailer/vendor/tmail/config.rb, line 51
def new_body_port( mail )
  StringPort.new
end
new_part_port( mail )
new_preamble_port( mail )
strict_base64decode?()
# File rails/actionmailer/lib/action_mailer/vendor/tmail/config.rb, line 45
def strict_base64decode?
  @strict_base64decode
end
strict_parse?()
# File rails/actionmailer/lib/action_mailer/vendor/tmail/config.rb, line 39
def strict_parse?
  @strict_parse
end