0
votes
1answer
28 views

IMAP + Ruby: How to search emails with multiple parameters with optional conditioning

I have code using which I am able to fetch emails from authenticated gmail account. At the moment there is a basic filter applied on it. But my requirement needs me to apply multiple filters like: ...
0
votes
0answers
37 views

How best to encode or clean up the email body when collecting mails through Ruby Net::IMAP

I am collecting emails from an IMAP server with the code beneath, but the content of the email body is often very ugly, and sometimes impossible to understand. Many of the emails contains Danish and ...
0
votes
1answer
98 views

Is it possible to only download IMAP messages without attachments?

I want to process a bunch of my emails with Net::IMAP, but I want to skip the ones with attachments because they take too long. Any hints? Ultimately, I'm looking to download all the text and HTML ...
0
votes
1answer
64 views

Ruby + Imap: searching a subject with special characters doesn't work

When using Ruby + IMAP and trying to search a subject with special chars: imap.uid_search(['SUBJECT', subject, 'NOT', 'SEEN']) where subject is "Olá", it will fail with: ...
0
votes
2answers
96 views

How to decode subject fetched via Net::IMAP which in UTF8? (ruby)

I'm using Net::IMAP.fetch to fetch some messages from Gmail. However, when I fetch a message which has a UTF8 subject (i.e., in cyrillic) I get something like this: ...
2
votes
1answer
105 views

mail gem SSL_read:: wrong version number when trying to connect to Exchange 2003 IMAP

Its very late & I'm very tired but will provide more details later. Problem: Testing ruby Mail gem doing IMAP stuff against GMail, Yahoo & Exchange 2003. GMail is good. Yahoo is good. ...
0
votes
1answer
59 views

Net:IMAP speed and performance advice

I am using Mikel's mail https://github.com/mikel/mail ruby gem to read from an IMAP server. It all works great however I was wondering if you guys know a way to speed up SEARCH command requests. A ...
1
vote
0answers
57 views

Ruby Net::IMAP sort method not working

I am using Net::IMAP to connect to gmail or any other IMAP server. It works great however when I try to sort it returns an error and I can't figure out why. imap = Net::IMAP.new('imap.gmail.com', ...
1
vote
1answer
172 views

Convert from iso-2022-jp to UTF in ruby

I am getting a string from our mail server in iso-2022-jp, and I am having trouble converting it to UTF. sub #=> "=?iso-2022-jp?Q?Auto-Asia-JP-1=1B$B$N$4M=3DLsFbMF$N3NG'=1B(B?=" sub.encoding ...
1
vote
0answers
62 views

Ruby IMAP Net::IMAP::DataFormatError: nil when not using date

Setting: using RubyMine 4.5 and Ruby 1.9.3 This following is the full code I have in a method to search my email and the has one variable in which is the emailaddress which is being passed in with no ...
0
votes
0answers
430 views

Ruby Imap OpenSSL::SSL::SSLError: read server certificate B: certificate verify failed

I am trying to use IMAP and it does not work. I tried the same with 'https' and it worked. require 'net/imap' => true irb(main):002:0> Net::IMAP.new("xxx", 993, true).login("redmine", ...
1
vote
0answers
127 views

Receiving old emails with POP3 using Mailman

I'm very new to mailman, just trying to create a handler so I can get notification when I receive new mail , something like that : require "rubygems" require "mailman" Mailman.config.pop3 = { ...
0
votes
0answers
63 views

Accessing the forward mail using ruby Net::IMAP

I am accessing my gmail using Net::IMAP in ruby. I could access the mail in each folder.But can anybody tell me how to access the forwarded mail in each?
0
votes
1answer
324 views

Do not mark emails as read/seen using imap

In my rails application I have a rake task that reads emails using imap. The emails are read and are marked as read/seen. I do not want to mark the emails as read/seen. How can I do this?
2
votes
1answer
490 views

How to search message in mailbox with net/imap in Ruby?

I have some script on Ruby 1.9.3: require "net/imap" imap = Net::IMAP.new(mail_imap_server) imap.login(mail_login, mail_password) imap.select("INBOX") puts imap.search(["FROM", "homer@simpson.com"]) ...
1
vote
1answer
179 views

Mail gem determine whether plaintext or html

I'm using the mail gem from https://github.com/mikel/mail I use it to parse raw mail data: e.g require 'mail' maildata = Mail.new(body) #where body is the raw text of an email message #from there ...
1
vote
2answers
1k views

Ruby IMAP “changes” since last check

I'm working on an IMAP client using Ruby and Rails. I can successfully import messages, mailboxes, and more... However, after the initial import, how can I detect any changes that have occurred since ...
1
vote
2answers
143 views

Implementing accessor methods in Ruby

This is a follow up question to: ruby variable scoping across classes. The solution makes sense to me conceptually, but I can't get it to work. Thought maybe with more code someone could help me. I ...
1
vote
2answers
114 views

ruby variable scoping across classes

RuNubie here. I've got a class Login that logs into gmail using the net/IMAP library. What is happening is that I create a new instance of that class, such as: a = Login.new("username", "gmail.com", ...
1
vote
2answers
1k views

Ruby grep - searching an array for parts of a string

I'm new to Ruby and a bit confused by the grep command in this block of code. I'm trying to gather all the mailbox names via Net::IMAP and then check them against a mailbox argument. Likely the ...
0
votes
1answer
414 views

Searching between two dates with Ruby IMAP

I am new to Ruby, I'm trying to return the number of emails between 9am and 11am. For example. @received_today = imap.search(["SINCE", @today.strftime("%d-%b-%Y-%H"):"BEFORE", ...
0
votes
2answers
313 views

How to limit using conditional with Ruby IMAP

I'm a super-novice with Ruby, and playing around with the IMAP library. The below program seems to work but it goes on forever until all messages are loaded. How would I limit the output to an X ...
0
votes
1answer
249 views

Too many parameters on Imap::new

I am trying the following, but Imap::new is complaining about too many parameters require 'rubygems' require 'highline/import' require 'net/imap' puts "username" username = gets password = ...
0
votes
1answer
297 views

IMAP server implementation in Ruby EventMachine

I am looking for IMAP server protocol implementation in Ruby EventMachine. Can someone advice a library or share some source code?
0
votes
2answers
363 views

IMAP (Ruby) : Fail to fetch/save audio (.wav) attachment in correct format

I am using IMAP apis to access my mailbox and download attachments (.wav audio file) if any. After saving the attachment, I expect it to be a valid .wav file which I could play, but it gives me ...
1
vote
1answer
416 views

Connecting to yahoo mail from Ruby

I try to connect to mail yahoo account from Ruby using both net/imap and net/pop. But I ramndomly get error EOFile (from IMAP) or Connection Refused/Reset by peer (from POP). Anybody tries to connect ...
3
votes
1answer
1k views

ruby net/imap : archive mail

require 'net/imap' imap = Net::IMAP.new('imap.gmail.com',993,true) imap.login('user','passwd') imap.select('INBOX') mailIds = imap.search(['ALL']) mailIds.each do |id| msg = ...
3
votes
2answers
716 views

Check unread count of Gmail messages with Ruby

How can I check the number of unread Gmail message in my inbox with a short Ruby script?
0
votes
1answer
550 views

Ruby/IMAP getting messages starting from the last saved mesage uid

I'm trying to get new messages starting from the last saved message id of a folder. Here's my code so far: self.imap_connection.examine(folder) imap_query = "UID SEARCH #{last_uid}:*" messages = ...
2
votes
1answer
593 views

Pulling in email via IMAP to rails application

I am pulling email into my app via imap using Net::IMAP and copying the mail into an All Mail folder then marking it in inbox as deleted. This then enables a backup of all emails for the user in All ...
0
votes
1answer
188 views

What's the difference between the sender and the from field in Net::IMAP::Envelope?

If you look at the doc for Net::IMAP::Envelope here http://www.ruby-doc.org/stdlib/libdoc/net/imap/rdoc/classes/Net/IMAP.html the struct includes these two fields: from: Returns an array of ...
1
vote
1answer
571 views

Ruby IMAP IDLE concurrency - how to tackle?

I'm trying to build a (private, for now) web application that will utilize IMAP IDLE connections to show peoples emails as they arrive. I'm having a hard time figuring out how to hack this together - ...
2
votes
1answer
506 views

Efficiently check unread count on entire account

To my understanding, there is no way to query an entire IMAP account for a total unread count, or the UIDs of all recent messages, regardless of mailbox. That to get a total unread count for the ...
1
vote
2answers
267 views

Imap folder only returning a subset of emails with it

The following script only return 1000 messages within from the sent folder when the actual number of sent messages is in the 3000+ How can I get the rest of the messages? username = ask("Enter your ...
0
votes
1answer
245 views

Ruby on Rails IMAP segfaults with Ruby 1.9.2

I was trying to do a simple test to pull emails from gmail following these instructions. However, when I do this with Ruby 1.9.2p136 it throws a segmentation fault on this line: imap = ...
5
votes
2answers
2k views

Select mailbox “sent mail” or “all mail” in Ruby Net::IMAP

I'm trying to use Net::IMAP in Ruby to search all mail sent by me, but I'm having trouble selecting anything other than INBOX. imap.select('INBOX') works fine, but imap.select('Mail/sent-mail') ...
0
votes
1answer
2k views

Ruby, how to correctly decode mails with MIME multipart?

I'm trying to write a system which could pull mails from gmail and get the content in Ruby. (using imap or pop) And as far as I know, there are 'ruby-gmail', 'mail' (the newer version of tmail) and ...
3
votes
1answer
347 views

How do I cache/serialize an Net::IMAP object in Ruby/Rails?

I am creating a web-based IMAP client in Rails, and want to cache the IMAP object between requests. I was planning to serialize the object and save it in Redis (since it caches strings only), however ...
3
votes
1answer
1k views

How IMAP idle works?

Can someone explain to me how IMAP IDLE works? Does it fork a new process for each connection that it opens? Can I somehow use eventmachine with it? I am trying to implement it in ruby on heroku ...
2
votes
3answers
664 views

Does imap.fetch(uid,'RFC822')[0].attr['RFC822'] return the entire message, including attachments?

Wondering if there's a way I can avoid fetching the attachments as well.
1
vote
1answer
2k views

Ruby on rails IMAP

My Ruby script: imap = Net::IMAP.new('imap.gmail.com') imap.login("some_email@host.com", password) I get exception A connection attempt failed because the connected party did not properly respon ...
8
votes
3answers
8k views

SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A

I have a ruby client that connects to an exchange server using IMAP & SSL. I use the Ruby Net::IMAP library (which uses openssl under the covers) to connect. Its been working fine for months. The ...
1
vote
1answer
288 views

Ruby Net::IMAP: closing a connection

Ruby Net::IMAP library provides a good API for IMAP stuff (http://railsapi.com/doc/ruby-v1.8/classes/Net/IMAP.html). There are two methods related to closing the IMAP connection: logout() and ...
0
votes
1answer
76 views

How to search emails that are not listed in a given MessageUIds using IMAP?

I'm using http://ruby-doc.org/stdlib/libdoc/net/imap/rdoc/index.html to access gmail. I can search for emails with a particular label, but I'm trying to avoid to search an email twice. So in order ...
2
votes
1answer
1k views

How to get the recipient address of an email via IMAP in Ruby

We have a user whose mail account is deluged with spam. I'm suspecting that he fields a large number of email accounts and therefore is subject to more than he might be with only one or two addresses. ...
4
votes
1answer
2k views

GMail threading, IMAP and Ruby

I am using the Ruby IMAP library to get a GMail conversation. The way that GMail threads conversations is via "Message-ID" and "In-Reply-To" message headers. For example: In-Reply-To: ...
2
votes
2answers
688 views

Java/Ruby based IMAP proxy library

I'm looking to create an IMAP proxy to a custom back-end mail and document storage engine and was wondering if there are already any production-ready, stable libraries I can pull on for interacting ...
7
votes
3answers
6k views

How to read the body text of an email using ruby's net/imap library?

Maybe i've just got a bad brain today, but i suddenly can't figure out how to read an email with ruby's net/imap library. I've been at it for several hours. I typed several variations of "ruby imap ...
8
votes
3answers
4k views

Getting only new mail from an IMAP server

I am writing a client application that fetches emails from an IMAP server and then stores them in a database. The problem is that once I have checked the mail, the next time I only want to download ...
7
votes
4answers
2k views

Support for IMAP IDLE in ruby

Ok, I have been suck on it for hours. I thought net/imap.rb with ruby 1.9 supported the idle command, but not yet. Can anyone help me in implementing that? From here, I though this would work: class ...

1 2