Methods
Attributes
| [W] | strict_base64decode | |
| [W] | strict_parse |
Public Class methods
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 15
15: def initialize( strict )
16: @strict_parse = strict
17: @strict_base64decode = strict
18: end
[ show source ]
# 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
This method is also aliased as
new_preamble_port
new_part_port
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 32
32: def new_body_port( mail )
33: StringPort.new
34: end
Alias for new_body_port
Alias for new_body_port
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 26
26: def strict_base64decode?
27: @strict_base64decode
28: end
[ show source ]
# File lib/action_mailer/vendor/tmail/config.rb, line 20
20: def strict_parse?
21: @strict_parse
22: end