Methods
Attributes
[W] strict_base64decode
[W] strict_parse
Public Class methods
new( strict )
    # File lib/action_mailer/vendor/tmail/config.rb, line 34
34:     def initialize( strict )
35:       @strict_parse = strict
36:       @strict_base64decode = strict
37:     end
to_config( arg )
    # File lib/action_mailer/vendor/tmail/config.rb, line 63
63:   def Config.to_config( arg )
64:     return DEFAULT_STRICT_CONFIG if arg == true
65:     return DEFAULT_CONFIG        if arg == false
66:     arg or DEFAULT_CONFIG
67:   end
Public Instance methods
new_body_port( mail )
This method is also aliased as new_preamble_port new_part_port
    # File lib/action_mailer/vendor/tmail/config.rb, line 51
51:     def new_body_port( mail )
52:       StringPort.new
53:     end
new_part_port( mail )

Alias for new_body_port

new_preamble_port( mail )

Alias for new_body_port

strict_base64decode?()
    # File lib/action_mailer/vendor/tmail/config.rb, line 45
45:     def strict_base64decode?
46:       @strict_base64decode
47:     end
strict_parse?()
    # File lib/action_mailer/vendor/tmail/config.rb, line 39
39:     def strict_parse?
40:       @strict_parse
41:     end