# File lib/sup/mbox/loader.rb, line 131
  def each_raw_message_line offset
    @mutex.synchronize do
      @f.seek offset
      yield @f.gets
      until @f.eof? || MBox::is_break_line?(l = @f.gets)
        yield l
      end
    end
  end