X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lib%2Fsup%2Fimap.rb;h=6c04d885d5856a719ba46460b465f51186034a3e;hb=587964eb45aed7c2d1f05ecefe52461d032c679c;hp=e785597ab086402712ae5e834eb1be37a7236e85;hpb=7e5ce394774ae31db65122314c48e51eb5e8b076;p=sup diff --git a/lib/sup/imap.rb b/lib/sup/imap.rb index e785597..6c04d88 100644 --- a/lib/sup/imap.rb +++ b/lib/sup/imap.rb @@ -5,6 +5,9 @@ require 'time' require 'rmail' require 'cgi' +## TODO: remove synchronized method protector calls; use a Monitor instead +## (ruby's reentrant mutex) + ## fucking imap fucking sucks. what the FUCK kind of committee of dunces ## designed this shit. ## @@ -15,7 +18,7 @@ require 'cgi' ## restriction. it can change any time you log in. it can change EVERY ## time you log in. of course the imap spec "strongly recommends" that it ## never change, but there's nothing to stop people from just setting it -## to the current timestamp, and in fact that's exactly what the one imap +## to the current timestamp, and in fact that's EXACTLY what the one imap ## server i have at my disposal does. thus the so-called uids are ## absolutely useless and imap provides no cross-session way of uniquely ## identifying a message. but thanks for the "strong recommendation", @@ -90,7 +93,7 @@ class IMAP < Source def == o; o.is_a?(IMAP) && o.uri == self.uri && o.username == self.username; end def load_header id - MBox::read_header StringIO.new(raw_header(id)) + parse_raw_email_header StringIO.new(raw_header(id)) end def load_message id @@ -108,26 +111,51 @@ class IMAP < Source end synchronized :raw_header + def store_message date, from_email, &block + message = StringIO.new + yield message + message.string.gsub! /\n/, "\r\n" + + safely { @imap.append mailbox, message.string, [:Seen], Time.now } + end + def raw_message id unsynchronized_scan_mailbox get_imap_fields(id, 'RFC822').first.gsub(/\r\n/, "\n") end synchronized :raw_message + def mark_as_deleted ids + ids = [ids].flatten # accept single arguments + unsynchronized_scan_mailbox + imap_ids = ids.map { |i| @imap_state[i] && @imap_state[i][:id] }.compact + return if imap_ids.empty? + @imap.store imap_ids, "+FLAGS", [:Deleted] + end + synchronized :mark_as_deleted + + def expunge + @imap.expunge + unsynchronized_scan_mailbox true + true + end + synchronized :expunge + def connect return if @imap safely { } # do nothing! end synchronized :connect - def scan_mailbox - return if @last_scan && (Time.now - @last_scan) < SCAN_INTERVAL + def scan_mailbox force=false + return if !force && @last_scan && (Time.now - @last_scan) < SCAN_INTERVAL last_id = safely do @imap.examine mailbox @imap.responses["EXISTS"].last end @last_scan = Time.now + @ids = [] if force return if last_id == @ids.length range = (@ids.length + 1) .. last_id @@ -176,7 +204,7 @@ class IMAP < Source def end_offset unsynchronized_scan_mailbox - @ids.last + @ids.last + 1 end synchronized :end_offset @@ -259,7 +287,7 @@ private %w(RFC822.SIZE INTERNALDATE).each do |w| raise FatalSourceError, "requested data not in IMAP response: #{w}" unless imap_stuff.attr[w] end - + msize, mdate = imap_stuff.attr['RFC822.SIZE'] % 10000000, Time.parse(imap_stuff.attr["INTERNALDATE"]) sprintf("%d%07d", mdate.to_i, msize).to_i end