Commit 8b33565b authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

IMAP: Mark emails as Seen.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1571 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 268165a0
......@@ -30,14 +30,22 @@ module Redmine
imap.login(imap_options[:username], imap_options[:password]) unless imap_options[:username].nil?
imap.select(folder)
imap.search(['ALL']).each do |message_id|
puts "Receiving message #{message_id}"
msg = imap.fetch(message_id,'RFC822')[0].attr['RFC822']
logger.debug "Receiving message #{message_id}" if logger && logger.debug?
if MailHandler.receive(msg, options)
imap.store(message_id, "+FLAGS", [:Deleted])
imap.store(message_id, "+FLAGS", [:Seen, :Deleted])
else
imap.store(message_id, "+FLAGS", [:Seen])
end
end
imap.expunge
end
private
def logger
RAILS_DEFAULT_LOGGER
end
end
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment