Per RFC 2821 4.5.3.1, SMTP lines may not be longer than 1000 octets including the <CRLF>.
# File lib/mail/encodings/8bit.rb, line 29 def self.compatible_input?(str) !str.lines.find { |line| line.length > 998 } end
Idenity encodings have a fixed cost, 1 byte out per 1 byte in
# File lib/mail/encodings/8bit.rb, line 24 def self.cost(str) 1.0 end
Decode the string
# File lib/mail/encodings/8bit.rb, line 14 def self.decode(str) ::Mail::Utilities.to_lf str end
Encode the string
# File lib/mail/encodings/8bit.rb, line 19 def self.encode(str) ::Mail::Utilities.to_crlf str end