Tagged Questions
0
votes
1answer
24 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:
...
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 ...
0
votes
1answer
95 views
Rails IMAP: Get name of sender
How can one get the name of the sender of an e-mail (not e-mail address) in Rails, via Net::IMAP ?
Here is the code I use in Rails to get the e-mail of the sender:
imap = ...
1
vote
0answers
56 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', ...
0
votes
0answers
74 views
IMAP Could Not Parse Command error
In my redmine setup I am getting "Could not parse command" error when I try to fetch incoming emails.This only happens for some emails, for rest everything is working fine.
0
votes
1answer
321 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?
0
votes
1answer
37 views
How do I pass additional information to into ActionMailer to handle incoming messages?
I have an application that checks multiple email accounts (think Webmail). Because I'm retrieving multiple accounts, I need to associate the inbound email with a user's account. However, I can't seem ...
2
votes
1answer
297 views
Create new email account programmatically
I can't seem to find an answer to this. How would I go about creating new email accounts programatically. I have users sign up for my service and would like to create an email account for them to use ...
1
vote
0answers
77 views
How to authenticate using imap with rails
I've been looking around for an imap plugin for rails or devise.
I've found this one notably https://github.com/joshk/devise_imapable but it is too old.
How would I go about rolling my own ...
0
votes
1answer
90 views
Options for converting incoming emails into POST requests?
Currently we're converting emails into POST requests using Sendgrid's Parse API, but we find this is unreliable, with sometimes emails apparently being delivered but never posted etc. I'd like to have ...
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
3answers
459 views
Convert text/plain content out of e-mail to normal text
When i try to read some email from my IMAP account:
imap.search(['NOT','SEEN']).each do |message_id|
mail = imap.fetch(message_id, "BODY[1]")
end
i get all kinds of ascii?? codes in my string, ...
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 - ...
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 ...
2
votes
3answers
663 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.
2
votes
2answers
627 views
Ruby IMAP library doesn't decode mail subject
I have got mail message with following subject in my Gmail accout:
"400, значение, значение"
Here is the code I use to grab mail:
imap = Net::IMAP.new('imap.gmail.com', 993, true, nil, false)
...
0
votes
2answers
557 views
How to receive email via IMAP protocol in Rails 3
What is the best way to receive email via IMAP protocol in Rails 3?
2
votes
1answer
1k views
Rails send mail with GMail
I am on rails 2.3.5 and have the latest Ruby installed and my application is running well, except, GMail emails.
I am trying to setup my gmail imap connection which has worked previously but now ...
2
votes
2answers
659 views
How to save copy of outgoing email in IMAP “Sent” box using ActionMailer?
When I use my regular client and send email through SMTP for an IMAP account, that outbound email gets saved in the IMAP "Sent" box.
How can I have the same behavior when I send email using Ruby on ...
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 ...
6
votes
1answer
2k views
Fetching emails in rails via IMAP
I have this rails app that's running on our local intranet, with a thousand regular users. I am looking to integrate it with our email server(MS Exchange). Basically -
1) For each user, the app ...