otherinbox-mail 2.4.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +607 -0
- data/CONTRIBUTING.md +45 -0
- data/Dependencies.txt +3 -0
- data/Gemfile +26 -0
- data/Gemfile.lock +44 -0
- data/README.md +663 -0
- data/Rakefile +40 -0
- data/TODO.rdoc +9 -0
- data/lib/VERSION +4 -0
- data/lib/mail.rb +101 -0
- data/lib/mail/attachments_list.rb +104 -0
- data/lib/mail/body.rb +291 -0
- data/lib/mail/configuration.rb +75 -0
- data/lib/mail/core_extensions/nil.rb +17 -0
- data/lib/mail/core_extensions/object.rb +13 -0
- data/lib/mail/core_extensions/shell_escape.rb +56 -0
- data/lib/mail/core_extensions/smtp.rb +25 -0
- data/lib/mail/core_extensions/string.rb +33 -0
- data/lib/mail/core_extensions/string/access.rb +145 -0
- data/lib/mail/core_extensions/string/multibyte.rb +78 -0
- data/lib/mail/elements.rb +14 -0
- data/lib/mail/elements/address.rb +306 -0
- data/lib/mail/elements/address_list.rb +74 -0
- data/lib/mail/elements/content_disposition_element.rb +30 -0
- data/lib/mail/elements/content_location_element.rb +25 -0
- data/lib/mail/elements/content_transfer_encoding_element.rb +24 -0
- data/lib/mail/elements/content_type_element.rb +35 -0
- data/lib/mail/elements/date_time_element.rb +26 -0
- data/lib/mail/elements/envelope_from_element.rb +34 -0
- data/lib/mail/elements/message_ids_element.rb +29 -0
- data/lib/mail/elements/mime_version_element.rb +26 -0
- data/lib/mail/elements/phrase_list.rb +21 -0
- data/lib/mail/elements/received_element.rb +30 -0
- data/lib/mail/encodings.rb +274 -0
- data/lib/mail/encodings/7bit.rb +31 -0
- data/lib/mail/encodings/8bit.rb +31 -0
- data/lib/mail/encodings/base64.rb +33 -0
- data/lib/mail/encodings/binary.rb +31 -0
- data/lib/mail/encodings/quoted_printable.rb +38 -0
- data/lib/mail/encodings/transfer_encoding.rb +58 -0
- data/lib/mail/envelope.rb +35 -0
- data/lib/mail/field.rb +234 -0
- data/lib/mail/field_list.rb +33 -0
- data/lib/mail/fields.rb +35 -0
- data/lib/mail/fields/bcc_field.rb +56 -0
- data/lib/mail/fields/cc_field.rb +55 -0
- data/lib/mail/fields/comments_field.rb +41 -0
- data/lib/mail/fields/common/address_container.rb +16 -0
- data/lib/mail/fields/common/common_address.rb +125 -0
- data/lib/mail/fields/common/common_date.rb +42 -0
- data/lib/mail/fields/common/common_field.rb +51 -0
- data/lib/mail/fields/common/common_message_id.rb +44 -0
- data/lib/mail/fields/common/parameter_hash.rb +58 -0
- data/lib/mail/fields/content_description_field.rb +19 -0
- data/lib/mail/fields/content_disposition_field.rb +69 -0
- data/lib/mail/fields/content_id_field.rb +63 -0
- data/lib/mail/fields/content_location_field.rb +42 -0
- data/lib/mail/fields/content_transfer_encoding_field.rb +50 -0
- data/lib/mail/fields/content_type_field.rb +198 -0
- data/lib/mail/fields/date_field.rb +57 -0
- data/lib/mail/fields/from_field.rb +55 -0
- data/lib/mail/fields/in_reply_to_field.rb +55 -0
- data/lib/mail/fields/keywords_field.rb +44 -0
- data/lib/mail/fields/message_id_field.rb +83 -0
- data/lib/mail/fields/mime_version_field.rb +53 -0
- data/lib/mail/fields/optional_field.rb +13 -0
- data/lib/mail/fields/received_field.rb +75 -0
- data/lib/mail/fields/references_field.rb +55 -0
- data/lib/mail/fields/reply_to_field.rb +55 -0
- data/lib/mail/fields/resent_bcc_field.rb +55 -0
- data/lib/mail/fields/resent_cc_field.rb +55 -0
- data/lib/mail/fields/resent_date_field.rb +35 -0
- data/lib/mail/fields/resent_from_field.rb +55 -0
- data/lib/mail/fields/resent_message_id_field.rb +34 -0
- data/lib/mail/fields/resent_sender_field.rb +62 -0
- data/lib/mail/fields/resent_to_field.rb +55 -0
- data/lib/mail/fields/return_path_field.rb +65 -0
- data/lib/mail/fields/sender_field.rb +67 -0
- data/lib/mail/fields/structured_field.rb +51 -0
- data/lib/mail/fields/subject_field.rb +16 -0
- data/lib/mail/fields/to_field.rb +55 -0
- data/lib/mail/fields/unstructured_field.rb +191 -0
- data/lib/mail/header.rb +265 -0
- data/lib/mail/indifferent_hash.rb +146 -0
- data/lib/mail/mail.rb +255 -0
- data/lib/mail/matchers/has_sent_mail.rb +124 -0
- data/lib/mail/message.rb +2059 -0
- data/lib/mail/multibyte.rb +42 -0
- data/lib/mail/multibyte/chars.rb +474 -0
- data/lib/mail/multibyte/exceptions.rb +8 -0
- data/lib/mail/multibyte/unicode.rb +392 -0
- data/lib/mail/multibyte/utils.rb +60 -0
- data/lib/mail/network.rb +14 -0
- data/lib/mail/network/delivery_methods/exim.rb +53 -0
- data/lib/mail/network/delivery_methods/file_delivery.rb +40 -0
- data/lib/mail/network/delivery_methods/sendmail.rb +62 -0
- data/lib/mail/network/delivery_methods/smtp.rb +153 -0
- data/lib/mail/network/delivery_methods/smtp_connection.rb +74 -0
- data/lib/mail/network/delivery_methods/test_mailer.rb +40 -0
- data/lib/mail/network/retriever_methods/base.rb +63 -0
- data/lib/mail/network/retriever_methods/imap.rb +168 -0
- data/lib/mail/network/retriever_methods/pop3.rb +140 -0
- data/lib/mail/network/retriever_methods/test_retriever.rb +47 -0
- data/lib/mail/parsers/address_lists.rb +64 -0
- data/lib/mail/parsers/address_lists.treetop +19 -0
- data/lib/mail/parsers/content_disposition.rb +535 -0
- data/lib/mail/parsers/content_disposition.treetop +46 -0
- data/lib/mail/parsers/content_location.rb +139 -0
- data/lib/mail/parsers/content_location.treetop +20 -0
- data/lib/mail/parsers/content_transfer_encoding.rb +162 -0
- data/lib/mail/parsers/content_transfer_encoding.treetop +20 -0
- data/lib/mail/parsers/content_type.rb +967 -0
- data/lib/mail/parsers/content_type.treetop +68 -0
- data/lib/mail/parsers/date_time.rb +114 -0
- data/lib/mail/parsers/date_time.treetop +11 -0
- data/lib/mail/parsers/envelope_from.rb +194 -0
- data/lib/mail/parsers/envelope_from.treetop +32 -0
- data/lib/mail/parsers/message_ids.rb +45 -0
- data/lib/mail/parsers/message_ids.treetop +15 -0
- data/lib/mail/parsers/mime_version.rb +144 -0
- data/lib/mail/parsers/mime_version.treetop +19 -0
- data/lib/mail/parsers/phrase_lists.rb +45 -0
- data/lib/mail/parsers/phrase_lists.treetop +15 -0
- data/lib/mail/parsers/received.rb +71 -0
- data/lib/mail/parsers/received.treetop +11 -0
- data/lib/mail/parsers/rfc2045.rb +464 -0
- data/lib/mail/parsers/rfc2045.treetop +36 -0
- data/lib/mail/parsers/rfc2822.rb +5341 -0
- data/lib/mail/parsers/rfc2822.treetop +410 -0
- data/lib/mail/parsers/rfc2822_obsolete.rb +3768 -0
- data/lib/mail/parsers/rfc2822_obsolete.treetop +241 -0
- data/lib/mail/part.rb +116 -0
- data/lib/mail/parts_list.rb +55 -0
- data/lib/mail/patterns.rb +34 -0
- data/lib/mail/utilities.rb +215 -0
- data/lib/mail/version.rb +24 -0
- data/lib/mail/version_specific/ruby_1_8.rb +98 -0
- data/lib/mail/version_specific/ruby_1_9.rb +113 -0
- data/lib/tasks/corpus.rake +125 -0
- data/lib/tasks/treetop.rake +10 -0
- metadata +253 -0
@@ -0,0 +1,75 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Thanks to Nicolas Fouché for this wrapper
|
4
|
+
#
|
5
|
+
require 'singleton'
|
6
|
+
|
7
|
+
module Mail
|
8
|
+
|
9
|
+
# The Configuration class is a Singleton used to hold the default
|
10
|
+
# configuration for all Mail objects.
|
11
|
+
#
|
12
|
+
# Each new mail object gets a copy of these values at initialization
|
13
|
+
# which can be overwritten on a per mail object basis.
|
14
|
+
class Configuration
|
15
|
+
include Singleton
|
16
|
+
|
17
|
+
def initialize
|
18
|
+
@delivery_method = nil
|
19
|
+
@retriever_method = nil
|
20
|
+
super
|
21
|
+
end
|
22
|
+
|
23
|
+
def delivery_method(method = nil, settings = {})
|
24
|
+
return @delivery_method if @delivery_method && method.nil?
|
25
|
+
@delivery_method = lookup_delivery_method(method).new(settings)
|
26
|
+
end
|
27
|
+
|
28
|
+
def lookup_delivery_method(method)
|
29
|
+
case method
|
30
|
+
when nil
|
31
|
+
Mail::SMTP
|
32
|
+
when :smtp
|
33
|
+
Mail::SMTP
|
34
|
+
when :sendmail
|
35
|
+
Mail::Sendmail
|
36
|
+
when :exim
|
37
|
+
Mail::Exim
|
38
|
+
when :file
|
39
|
+
Mail::FileDelivery
|
40
|
+
when :smtp_connection
|
41
|
+
Mail::SMTPConnection
|
42
|
+
when :test
|
43
|
+
Mail::TestMailer
|
44
|
+
else
|
45
|
+
method
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def retriever_method(method = nil, settings = {})
|
50
|
+
return @retriever_method if @retriever_method && method.nil?
|
51
|
+
@retriever_method = lookup_retriever_method(method).new(settings)
|
52
|
+
end
|
53
|
+
|
54
|
+
def lookup_retriever_method(method)
|
55
|
+
case method
|
56
|
+
when nil
|
57
|
+
Mail::POP3
|
58
|
+
when :pop3
|
59
|
+
Mail::POP3
|
60
|
+
when :imap
|
61
|
+
Mail::IMAP
|
62
|
+
when :test
|
63
|
+
Mail::TestRetriever
|
64
|
+
else
|
65
|
+
method
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def param_encode_language(value = nil)
|
70
|
+
value ? @encode_language = value : @encode_language ||= 'en'
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# The following is an adaptation of ruby 1.9.2's shellwords.rb file,
|
4
|
+
# it is modified to include '+' in the allowed list to allow for
|
5
|
+
# sendmail to accept email addresses as the sender with a + in them
|
6
|
+
#
|
7
|
+
module Mail
|
8
|
+
module ShellEscape
|
9
|
+
# Escapes a string so that it can be safely used in a Bourne shell
|
10
|
+
# command line.
|
11
|
+
#
|
12
|
+
# Note that a resulted string should be used unquoted and is not
|
13
|
+
# intended for use in double quotes nor in single quotes.
|
14
|
+
#
|
15
|
+
# open("| grep #{Shellwords.escape(pattern)} file") { |pipe|
|
16
|
+
# # ...
|
17
|
+
# }
|
18
|
+
#
|
19
|
+
# +String#shellescape+ is a shorthand for this function.
|
20
|
+
#
|
21
|
+
# open("| grep #{pattern.shellescape} file") { |pipe|
|
22
|
+
# # ...
|
23
|
+
# }
|
24
|
+
#
|
25
|
+
def escape_for_shell(str)
|
26
|
+
# An empty argument will be skipped, so return empty quotes.
|
27
|
+
return "''" if str.empty?
|
28
|
+
|
29
|
+
str = str.dup
|
30
|
+
|
31
|
+
# Process as a single byte sequence because not all shell
|
32
|
+
# implementations are multibyte aware.
|
33
|
+
str.gsub!(/([^A-Za-z0-9_\s\+\-.,:\/@])/n, "\\\\\\1")
|
34
|
+
|
35
|
+
# A LF cannot be escaped with a backslash because a backslash + LF
|
36
|
+
# combo is regarded as line continuation and simply ignored.
|
37
|
+
str.gsub!(/\n/, "'\n'")
|
38
|
+
|
39
|
+
return str
|
40
|
+
end
|
41
|
+
|
42
|
+
module_function :escape_for_shell
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
class String
|
47
|
+
# call-seq:
|
48
|
+
# str.shellescape => string
|
49
|
+
#
|
50
|
+
# Escapes +str+ so that it can be safely used in a Bourne shell
|
51
|
+
# command line. See +Shellwords::shellescape+ for details.
|
52
|
+
#
|
53
|
+
def escape_for_shell
|
54
|
+
Mail::ShellEscape.escape_for_shell(self)
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
module Net
|
3
|
+
class SMTP
|
4
|
+
# This is a backport of r30294 from ruby trunk because of a bug in net/smtp.
|
5
|
+
# http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=30294
|
6
|
+
#
|
7
|
+
# Fixed in what will be Ruby 1.9.3 - tlsconnect also does not exist in some early versions of ruby
|
8
|
+
remove_method :tlsconnect if defined?(Net::SMTP.new.tlsconnect)
|
9
|
+
|
10
|
+
def tlsconnect(s)
|
11
|
+
verified = false
|
12
|
+
s = OpenSSL::SSL::SSLSocket.new s, @ssl_context
|
13
|
+
logging "TLS connection started"
|
14
|
+
s.sync_close = true
|
15
|
+
s.connect
|
16
|
+
if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE
|
17
|
+
s.post_connection_check(@address)
|
18
|
+
end
|
19
|
+
verified = true
|
20
|
+
s
|
21
|
+
ensure
|
22
|
+
s.close unless verified
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
class String #:nodoc:
|
3
|
+
def to_crlf
|
4
|
+
to_str.gsub(/\n|\r\n|\r/) { "\r\n" }
|
5
|
+
end
|
6
|
+
|
7
|
+
def to_lf
|
8
|
+
to_str.gsub(/\n|\r\n|\r/) { "\n" }
|
9
|
+
end
|
10
|
+
|
11
|
+
unless String.instance_methods(false).map {|m| m.to_sym}.include?(:blank?)
|
12
|
+
def blank?
|
13
|
+
self !~ /\S/
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
unless method_defined?(:ascii_only?)
|
18
|
+
# Provides all strings with the Ruby 1.9 method of .ascii_only? and
|
19
|
+
# returns true or false
|
20
|
+
US_ASCII_REGEXP = %Q{\x00-\x7f}
|
21
|
+
def ascii_only?
|
22
|
+
!(self =~ /[^#{US_ASCII_REGEXP}]/)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def not_ascii_only?
|
27
|
+
!ascii_only?
|
28
|
+
end
|
29
|
+
|
30
|
+
unless method_defined?(:bytesize)
|
31
|
+
alias :bytesize :length
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,145 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# This is not loaded if ActiveSupport is already loaded
|
4
|
+
|
5
|
+
# This is an almost cut and paste from ActiveSupport v3.0.6, copied in here so that Mail
|
6
|
+
# itself does not depend on ActiveSupport to avoid versioning conflicts
|
7
|
+
|
8
|
+
class String
|
9
|
+
unless '1.9'.respond_to?(:force_encoding)
|
10
|
+
# Returns the character at the +position+ treating the string as an array (where 0 is the first character).
|
11
|
+
#
|
12
|
+
# Examples:
|
13
|
+
# "hello".at(0) # => "h"
|
14
|
+
# "hello".at(4) # => "o"
|
15
|
+
# "hello".at(10) # => ERROR if < 1.9, nil in 1.9
|
16
|
+
def at(position)
|
17
|
+
mb_chars[position, 1].to_s
|
18
|
+
end
|
19
|
+
|
20
|
+
# Returns the remaining of the string from the +position+ treating the string as an array (where 0 is the first character).
|
21
|
+
#
|
22
|
+
# Examples:
|
23
|
+
# "hello".from(0) # => "hello"
|
24
|
+
# "hello".from(2) # => "llo"
|
25
|
+
# "hello".from(10) # => "" if < 1.9, nil in 1.9
|
26
|
+
def from(position)
|
27
|
+
mb_chars[position..-1].to_s
|
28
|
+
end
|
29
|
+
|
30
|
+
# Returns the beginning of the string up to the +position+ treating the string as an array (where 0 is the first character).
|
31
|
+
#
|
32
|
+
# Examples:
|
33
|
+
# "hello".to(0) # => "h"
|
34
|
+
# "hello".to(2) # => "hel"
|
35
|
+
# "hello".to(10) # => "hello"
|
36
|
+
def to(position)
|
37
|
+
mb_chars[0..position].to_s
|
38
|
+
end
|
39
|
+
|
40
|
+
# Returns the first character of the string or the first +limit+ characters.
|
41
|
+
#
|
42
|
+
# Examples:
|
43
|
+
# "hello".first # => "h"
|
44
|
+
# "hello".first(2) # => "he"
|
45
|
+
# "hello".first(10) # => "hello"
|
46
|
+
def first(limit = 1)
|
47
|
+
if limit == 0
|
48
|
+
''
|
49
|
+
elsif limit >= size
|
50
|
+
self
|
51
|
+
else
|
52
|
+
mb_chars[0...limit].to_s
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
# Returns the last character of the string or the last +limit+ characters.
|
57
|
+
#
|
58
|
+
# Examples:
|
59
|
+
# "hello".last # => "o"
|
60
|
+
# "hello".last(2) # => "lo"
|
61
|
+
# "hello".last(10) # => "hello"
|
62
|
+
def last(limit = 1)
|
63
|
+
if limit == 0
|
64
|
+
''
|
65
|
+
elsif limit >= size
|
66
|
+
self
|
67
|
+
else
|
68
|
+
mb_chars[(-limit)..-1].to_s
|
69
|
+
end
|
70
|
+
end
|
71
|
+
else
|
72
|
+
def at(position)
|
73
|
+
self[position]
|
74
|
+
end
|
75
|
+
|
76
|
+
def from(position)
|
77
|
+
self[position..-1]
|
78
|
+
end
|
79
|
+
|
80
|
+
def to(position)
|
81
|
+
self[0..position]
|
82
|
+
end
|
83
|
+
|
84
|
+
def first(limit = 1)
|
85
|
+
if limit == 0
|
86
|
+
''
|
87
|
+
elsif limit >= size
|
88
|
+
self
|
89
|
+
else
|
90
|
+
to(limit - 1)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def last(limit = 1)
|
95
|
+
if limit == 0
|
96
|
+
''
|
97
|
+
elsif limit >= size
|
98
|
+
self
|
99
|
+
else
|
100
|
+
from(-limit)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
if Module.method(:const_get).arity == 1
|
106
|
+
# Tries to find a constant with the name specified in the argument string:
|
107
|
+
#
|
108
|
+
# "Module".constantize # => Module
|
109
|
+
# "Test::Unit".constantize # => Test::Unit
|
110
|
+
#
|
111
|
+
# The name is assumed to be the one of a top-level constant, no matter whether
|
112
|
+
# it starts with "::" or not. No lexical context is taken into account:
|
113
|
+
#
|
114
|
+
# C = 'outside'
|
115
|
+
# module M
|
116
|
+
# C = 'inside'
|
117
|
+
# C # => 'inside'
|
118
|
+
# "C".constantize # => 'outside', same as ::C
|
119
|
+
# end
|
120
|
+
#
|
121
|
+
# NameError is raised when the name is not in CamelCase or the constant is
|
122
|
+
# unknown.
|
123
|
+
def constantize
|
124
|
+
names = self.split('::')
|
125
|
+
names.shift if names.empty? || names.first.empty?
|
126
|
+
|
127
|
+
constant = Object
|
128
|
+
names.each do |name|
|
129
|
+
constant = constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name)
|
130
|
+
end
|
131
|
+
constant
|
132
|
+
end
|
133
|
+
else
|
134
|
+
def constantize #:nodoc:
|
135
|
+
names = self.split('::')
|
136
|
+
names.shift if names.empty? || names.first.empty?
|
137
|
+
|
138
|
+
constant = Object
|
139
|
+
names.each do |name|
|
140
|
+
constant = constant.const_defined?(name, false) ? constant.const_get(name) : constant.const_missing(name)
|
141
|
+
end
|
142
|
+
constant
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# This is not loaded if ActiveSupport is already loaded
|
4
|
+
|
5
|
+
# This is an almost cut and paste from ActiveSupport v3.0.6, copied in here so that Mail
|
6
|
+
# itself does not depend on ActiveSupport to avoid versioning conflicts
|
7
|
+
|
8
|
+
require 'mail/multibyte'
|
9
|
+
|
10
|
+
class String
|
11
|
+
if RUBY_VERSION >= "1.9"
|
12
|
+
# == Multibyte proxy
|
13
|
+
#
|
14
|
+
# +mb_chars+ is a multibyte safe proxy for string methods.
|
15
|
+
#
|
16
|
+
# In Ruby 1.8 and older it creates and returns an instance of the Mail::Multibyte::Chars class which
|
17
|
+
# encapsulates the original string. A Unicode safe version of all the String methods are defined on this proxy
|
18
|
+
# class. If the proxy class doesn't respond to a certain method, it's forwarded to the encapsuled string.
|
19
|
+
#
|
20
|
+
# name = 'Claus Müller'
|
21
|
+
# name.reverse # => "rell??M sualC"
|
22
|
+
# name.length # => 13
|
23
|
+
#
|
24
|
+
# name.mb_chars.reverse.to_s # => "rellüM sualC"
|
25
|
+
# name.mb_chars.length # => 12
|
26
|
+
#
|
27
|
+
# In Ruby 1.9 and newer +mb_chars+ returns +self+ because String is (mostly) encoding aware. This means that
|
28
|
+
# it becomes easy to run one version of your code on multiple Ruby versions.
|
29
|
+
#
|
30
|
+
# == Method chaining
|
31
|
+
#
|
32
|
+
# All the methods on the Chars proxy which normally return a string will return a Chars object. This allows
|
33
|
+
# method chaining on the result of any of these methods.
|
34
|
+
#
|
35
|
+
# name.mb_chars.reverse.length # => 12
|
36
|
+
#
|
37
|
+
# == Interoperability and configuration
|
38
|
+
#
|
39
|
+
# The Chars object tries to be as interchangeable with String objects as possible: sorting and comparing between
|
40
|
+
# String and Char work like expected. The bang! methods change the internal string representation in the Chars
|
41
|
+
# object. Interoperability problems can be resolved easily with a +to_s+ call.
|
42
|
+
#
|
43
|
+
# For more information about the methods defined on the Chars proxy see Mail::Multibyte::Chars. For
|
44
|
+
# information about how to change the default Multibyte behaviour see Mail::Multibyte.
|
45
|
+
def mb_chars
|
46
|
+
if Mail::Multibyte.proxy_class.consumes?(self)
|
47
|
+
Mail::Multibyte.proxy_class.new(self)
|
48
|
+
else
|
49
|
+
self
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def is_utf8? #:nodoc
|
54
|
+
case encoding
|
55
|
+
when Encoding::UTF_8
|
56
|
+
valid_encoding?
|
57
|
+
when Encoding::ASCII_8BIT, Encoding::US_ASCII
|
58
|
+
dup.force_encoding(Encoding::UTF_8).valid_encoding?
|
59
|
+
else
|
60
|
+
false
|
61
|
+
end
|
62
|
+
end
|
63
|
+
else
|
64
|
+
def mb_chars
|
65
|
+
if Mail::Multibyte.proxy_class.wants?(self)
|
66
|
+
Mail::Multibyte.proxy_class.new(self)
|
67
|
+
else
|
68
|
+
self
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
# Returns true if the string has UTF-8 semantics (a String used for purely byte resources is unlikely to have
|
73
|
+
# them), returns false otherwise.
|
74
|
+
def is_utf8?
|
75
|
+
Mail::Multibyte::Chars.consumes?(self)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|