tmail
tmail copied to clipboard
TMail is a Ruby Email Handler.
d:/Ruby25/lib/ruby/gems/2.5.0/gems/tmail-1.2.7.1/lib/tmail/utils.rb:117:in `': /.../n has a non escaped non ASCII character in non ASCII-8BIT script (RegexpError) from d:/Ruby25/lib/ruby/gems/2.5.0/gems/tmail-1.2.7.1/lib/tmail/utils.rb:110:in `' from d:/Ruby25/lib/ruby/gems/2.5.0/gems/tmail-1.2.7.1/lib/tmail/utils.rb:53:in `' from d:/Ruby25/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require' from d:/Ruby25/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb:59:in `require' from d:/Ruby25/lib/ruby/gems/2.5.0/gems/tmail-1.2.7.1/lib/tmail/interface.rb:36:in `'...
full message: `.rvm/gems/ruby-2.4.1/gems/bundler-1.16.1/lib/bundler/runtime.rb:84:in `rescue in block (2 levels) in require': There was an error while trying to load the gem 'tmail'. Gem Load Error is: /.../n has a non escaped...
Reduce scope of special case for matching '@' in display name - was matching in case of multiple addresses with unquoted display names. Not a great way to patch but...
Hi, i've found issue with the multipart messages and its last boundary. Some mail generators loose CR LF after the last boundary, and TMail does accept it as a part...
In quoting.rb #is_binary_data? is called on a string. Looking at http://apidock.com/ruby/String/is_binary_data%3F it appears that this method was removed in Ruby 1.9.2 (This method is deprecated or moved on the latest...
Hello. I discover strange issue with TMail version 1.2.6 - 1.2.7.1. TMail adds unnecessary line breaks to headers with multiple email adresses. For example this code: ``` m=TMail::Mail.new m.to =...
Hi, i'm not sure this is an issue, it's also possible i'm missing something because i'm very new to RoR but i have a question regarding attachments. In attachment.rb you...
Hi, In the following example notice how 'custom2' header is deleted while deleting 'custom1': ``` >> m=Mail.new :custom1 => 'test1', :custom2 => 'test2' => \# >> m[:custom2] => # >>...
Seems there are instance variables in this method where there shouldn't be. Replace each so the method looks like this and you won't get any whiny nil errors about nil.header...
This isn't really a bug, since the passed string is wrong encoded. But since lot of sites seem to send this kind of encoded subjects it would be worth a...