Methods
Attributes
| [W] | strict_base64decode | |
| [W] | strict_parse |
Public Class methods
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 34
34: def initialize( strict )
35: @strict_parse = strict
36: @strict_base64decode = strict
37: end
[ show source ]
# 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
This method is also aliased as
new_preamble_port
new_part_port
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 51
51: def new_body_port( mail )
52: StringPort.new
53: end
Alias for new_body_port
Alias for new_body_port
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 45
45: def strict_base64decode?
46: @strict_base64decode
47: end
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 39
39: def strict_parse?
40: @strict_parse
41: end