Methods
Attributes
[W] strict_base64decode
[W] strict_parse
Public Class methods
new( strict )
    # File lib/action_mailer/vendor/tmail/config.rb, line 15
15:     def initialize( strict )
16:       @strict_parse = strict
17:       @strict_base64decode = strict
18:     end
to_config( arg )
    # File lib/action_mailer/vendor/tmail/config.rb, line 44
44:   def Config.to_config( arg )
45:     return DEFAULT_STRICT_CONFIG if arg == true
46:     return DEFAULT_CONFIG        if arg == false
47:     arg or DEFAULT_CONFIG
48:   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 32
32:     def new_body_port( mail )
33:       StringPort.new
34:     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 26
26:     def strict_base64decode?
27:       @strict_base64decode
28:     end
strict_parse?()
    # File lib/action_mailer/vendor/tmail/config.rb, line 20
20:     def strict_parse?
21:       @strict_parse
22:     end