diff options
author | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2006-02-13 21:18:00 +0000 |
---|---|---|
committer | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2006-02-13 21:18:00 +0000 |
commit | cc93e2349da909fcc8f5d1681e2feae90f5d5ef7 (patch) | |
tree | 336ec6f8ef06b07eebd8e96fb399f25b2d3198b5 /lib | |
parent | e4a177729121f189a051f0b496812bf810fd4be1 (diff) | |
download | feed2imap-cc93e2349da909fcc8f5d1681e2feae90f5d5ef7.tar.gz feed2imap-cc93e2349da909fcc8f5d1681e2feae90f5d5ef7.tar.bz2 feed2imap-cc93e2349da909fcc8f5d1681e2feae90f5d5ef7.zip |
now upload with the item time
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@87 f70e237a-67f3-0310-a06c-d2b8a7116972
Diffstat (limited to '')
-rw-r--r-- | lib/feed2imap/feed2imap.rb | 5 | ||||
-rw-r--r-- | lib/feed2imap/imap.rb | 10 |
2 files changed, 8 insertions, 7 deletions
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 |