Giter Site home page Giter Site logo

Comments (5)

dcparker avatar dcparker commented on July 29, 2024

Yes, it should. I'd like to get the pure-ruby parser to be able to parse everything; but it seems there are small kinks in it sometimes.

If you would be willing to send a copy of the raw email text (optionally scrubbed of any sensitive info), I will find out what is causing the trouble parsing.

Also, TMail is another rubygem that is very capable for parsing these messages and will probably get things right. Just have TMail parse the gmail_message.body.

from ruby-gmail.

justinko avatar justinko commented on July 29, 2024

Well, I grabbed the email that is causing the error, and did this:

def from_parsed(parsed)
    case parsed
    when Array
        raise parsed.inspect
        if parsed[0].is_a?(Hash) && (parsed[1].is_a?(Hash) || parsed[1].is_a?(String))

The parsed argument DOES contain a hash at index 0 AND a hash at index 1. I do not know why raise is being called, the first condition should be returning true.

from ruby-gmail.

justinko avatar justinko commented on July 29, 2024

I can't just parse the body with TMail because I need to grab the message.to, and currently that is the only way. Correct me if I'm wrong.

from ruby-gmail.

justinko avatar justinko commented on July 29, 2024

I've resorted to just using net/imap and TMail for my app. Btw, doesn't the "mail" gem that's going into Rails3 kinda make this gem un-needed?

from ruby-gmail.

jackbit avatar jackbit commented on July 29, 2024

The same problem with me, if i am using GMAIL Account from domain gmail.com but when i use business gmail account using domain. it is fine.

I got this error when accessing email.message, My codes:

@imap = Gmail.new(current_user.gmail.account, current_user.gmail.password) do |g|
  emails = g.inbox.emails(:after => 3.days.ago)
  emails.each do |email|
    user_email = Mail.create({ :subject => email.message.subject,
                               :message => email.message.text,
                               :sender  => email.message.from,
                               :receiver => email.message.to,
                               :received_date => email.message.headers['date']
                             })
        end
  end

The error is :
D:/ruby/lib/ruby/gems/1.8/gems/ruby-gmail-0.0.8/lib/mime/entity.rb:47:in from_parsed' D:/ruby/lib/ruby/gems/1.8/gems/ruby-gmail-0.0.8/lib/mime/entity.rb:40:infrom_parsed'
D:/ruby/lib/ruby/gems/1.8/gems/ruby-gmail-0.0.8/lib/mime/entity.rb:40:in collect' D:/ruby/lib/ruby/gems/1.8/gems/ruby-gmail-0.0.8/lib/mime/entity.rb:40:infrom_parsed'
D:/ruby/lib/ruby/gems/1.8/gems/ruby-gmail-0.0.8/lib/mime/entity.rb:20:in initialize' D:/ruby/lib/ruby/gems/1.8/gems/ruby-gmail-0.0.8/lib/gmail/message.rb:36:innew'
D:/ruby/lib/ruby/gems/1.8/gems/ruby-gmail-0.0.8/lib/gmail/message.rb:36:in `message'

from ruby-gmail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.