From cc93e2349da909fcc8f5d1681e2feae90f5d5ef7 Mon Sep 17 00:00:00 2001 From: lnu Date: Mon, 13 Feb 2006 21:18:00 +0000 Subject: now upload with the item time git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@87 f70e237a-67f3-0310-a06c-d2b8a7116972 --- lib/feed2imap/feed2imap.rb | 5 +++-- lib/feed2imap/imap.rb | 10 +++++----- 2 files changed, 8 insertions(+), 7 deletions(-) (limited to 'lib/feed2imap') diff --git a/lib/feed2imap/feed2imap.rb b/lib/feed2imap/feed2imap.rb index 41c75eb..f1ba506 100644 --- a/lib/feed2imap/feed2imap.rb +++ b/lib/feed2imap/feed2imap.rb @@ -156,11 +156,12 @@ class Feed2Imap if !cacherebuild updateditems.each do |i| email = item_to_mail(i, i.cacheditem.index, true, f.name) - f.imapaccount.updatemail(f.folder, email, i.cacheditem.index) + f.imapaccount.updatemail(f.folder, email, + i.cacheditem.index, i.date || Time::new) end newitems.each do |i| email = item_to_mail(i, i.cacheditem.index, false, f.name) - f.imapaccount.putmail(f.folder, email) + f.imapaccount.putmail(f.folder, email, i.date || Time::new) end end rescue diff --git a/lib/feed2imap/imap.rb b/lib/feed2imap/imap.rb index ca81a9f..e9bbb63 100644 --- a/lib/feed2imap/imap.rb +++ b/lib/feed2imap/imap.rb @@ -94,12 +94,12 @@ class ImapAccount # Put the mail in the given folder # You should check whether the folder exist first. - def putmail(folder, mail) - @connection.append(folder, mail.gsub(/\n/, "\r\n")) + def putmail(folder, mail, date = Time::now) + @connection.append(folder, mail.gsub(/\n/, "\r\n"), [:Recent], date) end # update a mail - def updatemail(folder, mail, idx) + def updatemail(folder, mail, idx, date = Time::now) @connection.select(folder) searchres = @connection.search(['HEADER', 'X-CacheIndex', "-#{idx}-"]) flags = nil @@ -109,13 +109,13 @@ class ImapAccount searchres.each { |m| @connection.store(m, "+FLAGS", [:Deleted]) } @connection.expunge end - @connection.append(folder, mail.gsub(/\n/, "\r\n"), flags) + @connection.append(folder, mail.gsub(/\n/, "\r\n"), flags, date) end # convert to string def to_s u2 = uri.clone - u2.password = nil + u2.password = 'PASSWORD' u2.to_s end -- cgit v1.2.3-54-g00ecf