Class: Vmail::ImapClient

Inherits:
Object
  • Object
show all
Includes:
AddressQuoter, FlaggingAndMoving, Helpers, ReplyTemplating, Searching, ShowingHeaders, ShowingMessage
Defined in:
lib/vmail/imap_client.rb

Direct Known Subclasses

InboxPoller

Constant Summary

Constants included from ShowingHeaders

ShowingHeaders::FLAGMAP

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ReplyTemplating

#reply_cc, #reply_headers, #reply_recipient, #reply_template

Methods included from FlaggingAndMoving

#convert_to_message_ids, #copy_to, #flag, #move_to

Methods included from ShowingMessage

#cached_full_message?, #current_mail, #current_message, #fetch_and_cache, #format_parts_info, #show_message

Methods included from ShowingHeaders

#extract_address, #fetch_and_cache_headers, #format_flags, #format_header_for_list, #get_message_headers, #with_more_message_line

Methods included from Searching

#search, #search_query?

Methods included from AddressQuoter

#quote_addresses

Methods included from Helpers

#divider, #number_to_human_size, #retry_if_needed

Constructor Details

#initialize(config) ⇒ ImapClient

Returns a new instance of ImapClient.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/vmail/imap_client.rb', line 30

def initialize(config)
  @username, @password = config['username'], config['password']
  @name = config['name']
  @signature = config['signature']
  @always_cc = config['always_cc']
  @always_bcc = config['always_bcc']
  @mailbox = nil
  @logger = Logger.new(config['logfile'] || STDERR)
  @logger.level = Logger::DEBUG
  $logger = @logger
  @imap_server = config['server'] || 'imap.gmail.com'
  @imap_port = config['port'] || 993
  # generic smtp settings
  @smtp_server = config['smtp_server'] || 'smtp.gmail.com'
  @smtp_port = config['smtp_port'] || 587
  @smtp_domain = config['smtp_domain'] || 'gmail.com'
  @width = 100
  current_message = nil
end

Instance Attribute Details

#max_seqnoObject

of current mailbox



28
29
30
# File 'lib/vmail/imap_client.rb', line 28

def max_seqno
  @max_seqno
end

Class Method Details

.daemon(config) ⇒ Object



498
499
500
501
502
503
504
505
# File 'lib/vmail/imap_client.rb', line 498

def self.daemon(config)
  $gmail = self.start(config)
  use_uri = config['drb_uri'] || nil # redundant but explicit
  DRb.start_service(use_uri, $gmail)
  uri = DRb.uri
  puts "Starting gmail service at #{uri}"
  uri
end

.start(config) ⇒ Object



492
493
494
495
496
# File 'lib/vmail/imap_client.rb', line 492

def self.start(config)
  imap_client  = self.new config
  imap_client.open
  imap_client
end

Instance Method Details

#append_to_file(uid_set, file) ⇒ Object



272
273
274
275
276
277
278
279
280
281
282
# File 'lib/vmail/imap_client.rb', line 272

def append_to_file(uid_set, file)
  uid_set = uid_set.split(',').map(&:to_i)
  log "Append to file uid set #{uid_set.inspect} to file: #{file}"
  uid_set.each do |uid|
    message = show_message(uid)
    File.open(file, 'a') {|f| f.puts(divider('=') + "\n" + message + "\n\n")}
    subject = (message[/^subject:(.*)/,1] || '').strip
    log "Appended message '#{subject}'"
  end
  "Printed #{uid_set.size} message#{uid_set.size == 1 ? '' : 's'} to #{file.strip}"
end

#check_for_new_messagesObject



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# File 'lib/vmail/imap_client.rb', line 197

def check_for_new_messages
  log "Checking for new messages"
  if search_query?
    log "Update aborted because query is search query: #{@query.inspect}"
    return ""
  end
  old_num_messages = @num_messages
  # we need to re-select the mailbox to get the new highest id
  reload_mailbox
  update_query = @query.dup
  # set a new range filter
  # this may generate a negative rane, e.g., "19893:19992" but that seems harmless
  update_query[0] = "#{old_num_messages}:#{@num_messages}"
  ids = reconnect_if_necessary { 
    log "Search #update_query"
    @imap.search(Vmail::Query.args2string(update_query))
  }
  log "- got seqnos: #{ids.inspect}"
  log "- getting seqnos > #{self.max_seqno}"
  new_ids = ids.select {|seqno| seqno > self.max_seqno}
  log "- new uids found: #{new_ids.inspect}"
  new_ids
end

#clear_cached_messageObject

TODO no need for this if all shown messages are stored in SQLITE3 and keyed by UID.



103
104
105
106
107
# File 'lib/vmail/imap_client.rb', line 103

def clear_cached_message
  return unless STDIN.tty?
  log "Clearing cached message"
  current_message = nil
end

#closeObject



67
68
69
70
71
72
73
74
# File 'lib/vmail/imap_client.rb', line 67

def close
  log "Closing connection"
  Timeout::timeout(5) do
    @imap.close rescue Net::IMAP::BadResponseError
    @imap.disconnect rescue IOError
  end
rescue Timeout::Error
end

#create_if_necessary(mailbox) ⇒ Object



261
262
263
264
265
266
267
268
269
270
# File 'lib/vmail/imap_client.rb', line 261

def create_if_necessary(mailbox)
  current_mailboxes = mailboxes.map {|m| mailbox_aliases[m] || m}
  if !current_mailboxes.include?(mailbox)
    log "Current mailboxes: #{current_mailboxes.inspect}"
    log "Creating mailbox #{mailbox}"
    log @imap.create(mailbox) 
    @mailboxes = nil # force reload ...
    list_mailboxes
  end
end

#decrement_max_seqno(num) ⇒ Object



191
192
193
194
195
# File 'lib/vmail/imap_client.rb', line 191

def decrement_max_seqno(num)
  return unless STDIN.tty?
  log "Decremented max seqno from #{self.max_seqno} to #{self.max_seqno - num}"
  self.max_seqno -= num
end

#deliver(text) ⇒ Object



339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'lib/vmail/imap_client.rb', line 339

def deliver(text)
  # parse the text. The headers are yaml. The rest is text body.
  require 'net/smtp'
  prime_connection
  mail = new_mail_from_input(text)
  mail.delivery_method(*smtp_settings)
  res = mail.deliver!
  log res.inspect
  log "\n"
  msg = if res.is_a?(Mail::Message)
    "Message '#{mail.subject}' sent"
  else
    "Failed to deliver message '#{mail.subject}'!"
  end
  log msg
  msg
end

#format_headers(hash) ⇒ Object



294
295
296
297
298
299
300
301
302
303
304
305
306
# File 'lib/vmail/imap_client.rb', line 294

def format_headers(hash)
  lines = []
  hash.each_pair do |key, value|
    if value.nil? && key != 'to' && key != 'subject'
      next
    end
    if value.is_a?(Array)
      value = value.join(", ")
    end
    lines << "#{key.gsub("_", '-')}: #{value}"
  end
  lines.join("\n")
end

#format_sent_message(mail) ⇒ Object



328
329
330
331
332
333
334
335
336
337
# File 'lib/vmail/imap_client.rb', line 328

def format_sent_message(mail)
  formatter = Vmail::MessageFormatter.new(mail)
  message_text = <<-EOF
Sent Message #{self.format_parts_info(formatter.list_parts)}

#{format_headers(formatter.extract_headers)}

#{formatter.plaintext_part}
EOF
end

#forward_templateObject



314
315
316
317
318
319
320
321
322
323
324
325
326
# File 'lib/vmail/imap_client.rb', line 314

def forward_template
  original_body = current_message.plaintext.split(/\n-{20,}\n/, 2)[1]
  formatter = Vmail::MessageFormatter.new(current_mail)
  headers = formatter.extract_headers
  subject = headers['subject']
  if subject !~ /Fwd: /
    subject = "Fwd: #{subject}"
  end

  new_message_template(subject, false) + 
    "\n---------- Forwarded message ----------\n" +
    original_body + signature
end

#get_highest_message_idObject



109
110
111
112
113
114
115
116
117
118
119
# File 'lib/vmail/imap_client.rb', line 109

def get_highest_message_id
  # get highest message ID
  res = @imap.fetch([1,"*"], ["ENVELOPE"])
  if res 
    @num_messages = res[-1].seqno
    log "Highest seqno: #@num_messages"
  else
    @num_messages = 1
    log "NO HIGHEST ID: setting @num_messages to 1"
  end
end

#get_mailbox_statusObject

not used for anything



122
123
124
125
126
# File 'lib/vmail/imap_client.rb', line 122

def get_mailbox_status
  return
  @status = @imap.status(@mailbox,  ["MESSAGES", "RECENT", "UNSEEN"])
  log "Mailbox status: #{@status.inspect}"
end

#handle_error(error) ⇒ Object



468
469
470
# File 'lib/vmail/imap_client.rb', line 468

def handle_error(error)
  log error
end

#list_mailboxesObject



149
150
151
152
153
154
155
156
157
158
159
# File 'lib/vmail/imap_client.rb', line 149

def list_mailboxes
  log 'loading mailboxes...'
  @mailboxes ||= (@imap.list("", "*") || []).
    select {|struct| struct.attr.none? {|a| a == :Noselect} }.
    map {|struct| struct.name}.uniq
  @mailboxes.delete("INBOX")
  @mailboxes.unshift("INBOX")
  log "Loaded mailboxes: #{@mailboxes.inspect}"
  @mailboxes = @mailboxes.map {|name| mailbox_aliases.invert[name] || name}
  @mailboxes.join("\n")
end

#log(string) ⇒ Object



461
462
463
464
465
466
# File 'lib/vmail/imap_client.rb', line 461

def log(string)
  if string.is_a?(::Net::IMAP::TaggedResponse)
    string = string.raw_data
  end
  @logger.debug string
end

#mailbox_aliasesObject

do this just once



162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/vmail/imap_client.rb', line 162

def mailbox_aliases
  return @mailbox_aliases if @mailbox_aliases
  aliases = {"sent" => "Sent Mail",
             "all" => "All Mail",
             "starred" => "Starred",
             "important" => "Important",
             "drafts" => "Drafts",
             "spam" => "Spam",
             "trash" => "Trash"}
  @mailbox_aliases = {}
  aliases.each do |shortname, fullname|
    [ "[Gmail]", "[Google Mail" ].each do |prefix|
      if self.mailboxes.include?( "#{prefix}/#{fullname}" )
        @mailbox_aliases[shortname] =  "#{prefix}/#{fullname}"
      end
    end
  end
  log "Setting aliases to #{@mailbox_aliases.inspect}"
  @mailbox_aliases
end

#mailboxesObject

called internally, not by vim client



184
185
186
187
188
189
# File 'lib/vmail/imap_client.rb', line 184

def mailboxes
  if @mailboxes.nil?
    list_mailboxes
  end
  @mailboxes
end

#more_messagesObject

gets 100 messages prior to id



238
239
240
241
242
243
244
245
246
247
248
249
# File 'lib/vmail/imap_client.rb', line 238

def more_messages
  log "Getting more_messages"
  log "Old start_index: #{@start_index}"
  max = @start_index - 1
  @start_index = [(max + 1 - @limit), 1].max
  log "New start_index: #{@start_index}"
  fetch_ids = search_query? ? @ids[@start_index..max] : (@start_index..max).to_a
  log fetch_ids.inspect
  message_ids = fetch_and_cache_headers(fetch_ids)
  res = get_message_headers message_ids
  with_more_message_line(res)
end

#new_mail_from_input(text) ⇒ Object



357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
# File 'lib/vmail/imap_client.rb', line 357

def new_mail_from_input(text)
  require 'mail'
  mail = Mail.new
  raw_headers, raw_body = *text.split(/\n\s*\n/, 2)
  headers = {}

  raw_headers.split("\n").each do |line|
    key, value = *line.split(/:\s*/, 2)
    if key == 'references'
      mail.references = value
    else
      next if (value.nil? || value.strip == '')
      log [key, value].join(':')
      if %w(from to cc bcc).include?(key)
        value = quote_addresses(value)
      end
      headers[key] = value
    end
  end
  log "Delivering message with headers: #{headers.to_yaml}"
  mail.from = headers['from'] || @username
  mail.to = headers['to'] #.split(/,\s+/)
  mail.cc = headers['cc'] #&& headers['cc'].split(/,\s+/)
  mail.bcc = headers['bcc'] #&& headers['cc'].split(/,\s+/)
  mail.subject = headers['subject']
  mail.from ||= @username
  mail.charset = 'UTF-8'
  # attachments are added as a snippet of YAML after a blank line
  # after the headers, and followed by a blank line
  if (attachments_section = raw_body.split(/\n\s*\n/, 2)[0]) =~ /^attach(ment|ments)*:/
    files = attachments_section.split(/\n/).map {|line| line[/[-:]\s*(.*)\s*$/, 1]}.compact
    log "Attach: #{files.inspect}"
    files.each do |file|
      if File.directory?(file)
        Dir.glob("#{file}/*").each {|f| mail.add_file(f) if File.size?(f)}
      else
        mail.add_file(file) if File.size?(file)
      end
    end
    mail.text_part do
      body raw_body.split(/\n\s*\n/, 2)[1]
    end
  else
    mail.text_part do
      body raw_body
    end
  end
  mail.text_part.charset = 'UTF-8'
  mail
rescue
  $logger.debug $!
  raise
end

#new_message_template(subject = nil, append_signature = true) ⇒ Object



284
285
286
287
288
289
290
291
292
# File 'lib/vmail/imap_client.rb', line 284

def new_message_template(subject = nil, append_signature = true)
  headers = {'from' => "#{@name} <#{@username}>",
    'to' => nil,
    'subject' => subject,
    'cc' => @always_cc,
    'bcc' => @always_bcc
  }
  format_headers(headers) + (append_signature ? ("\n\n" + signature) : "\n\n")
end

#openObject



51
52
53
54
55
56
57
# File 'lib/vmail/imap_client.rb', line 51

def open
  @imap = Net::IMAP.new(@imap_server, @imap_port, true, nil, false)
  log @imap.(@username, @password)
  list_mailboxes # prefetch mailbox list
rescue 
  puts "VMAIL_ERROR: #{[$!.message, $!.backtrace].join("\n")}"
end

#open_html_partObject



428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
# File 'lib/vmail/imap_client.rb', line 428

def open_html_part
  log "Open_html_part"
  log current_mail.parts.inspect
  multipart = current_mail.parts.detect {|part| part.multipart?}
  html_part = if multipart 
                multipart.parts.detect {|part| part.header["Content-Type"].to_s =~ /text\/html/}
              elsif ! current_mail.parts.empty?
                current_mail.parts.detect {|part| part.header["Content-Type"].to_s =~ /text\/html/}
              else
                current_mail.body
              end
  return if html_part.nil?
  outfile = 'part.html'
  File.open(outfile, 'w') {|f| f.puts(html_part.decoded)}
  # client should handle opening the html file
  return outfile
end

#prime_connectionObject



135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/vmail/imap_client.rb', line 135

def prime_connection
  return if @ids.nil? || @ids.empty?
  reconnect_if_necessary(4) do 
    # this is just to prime the IMAP connection
    # It's necessary for some reason before update and deliver. 
    log "Priming connection"
    res = @imap.fetch(@ids[-1], ["ENVELOPE"])
    if res.nil?
      # just go ahead, just log
      log "Priming connection didn't work, connection seems broken, but still going ahead..."
    end
  end 
end

#reconnect_if_necessary(timeout = 60, &block) ⇒ Object



472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
# File 'lib/vmail/imap_client.rb', line 472

def reconnect_if_necessary(timeout = 60, &block)
  # if this times out, we know the connection is stale while the user is
  # trying to update
  Timeout::timeout(timeout) do
    block.call
  end
rescue IOError, Errno::EADDRNOTAVAIL, Errno::ECONNRESET, Timeout::Error
  log "Error: #{$!}"
  log "Attempting to reconnect"
  close
  log(revive_connection)
  # hope this isn't an endless loop
  reconnect_if_necessary do 
    block.call
  end
rescue
  log "Error: #{$!}"
  raise
end

#reload_mailboxObject



96
97
98
99
# File 'lib/vmail/imap_client.rb', line 96

def reload_mailbox
  return unless STDIN.tty?
  select_mailbox(@mailbox, true)
end

#revive_connectionObject



128
129
130
131
132
133
# File 'lib/vmail/imap_client.rb', line 128

def revive_connection
  log "Reviving connection"
  open
  log "Reselecting mailbox #@mailbox"
  @imap.select(@mailbox)
end

#save_attachments(dir) ⇒ Object



411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
# File 'lib/vmail/imap_client.rb', line 411

def save_attachments(dir)
  log "Save_attachments #{dir}"
  if !current_mail
    log "Missing a current message"
  end
  return unless dir && current_mail
  attachments = current_mail.attachments
  `mkdir -p #{dir}`
  saved = attachments.map do |x|
    path = File.join(dir, x.filename)
    log "Saving #{path}"
    File.open(path, 'wb') {|f| f.puts x.decoded}
    path
  end
  "Saved:\n" + saved.map {|x| "- #{x}"}.join("\n")
end

#select_mailbox(mailbox, force = false) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/vmail/imap_client.rb', line 76

def select_mailbox(mailbox, force=false)
  if mailbox_aliases[mailbox]
    mailbox = mailbox_aliases[mailbox]
  end
  log "Selecting mailbox #{mailbox.inspect}"
  reconnect_if_necessary(30) do 
    log @imap.select(mailbox)
  end
  log "Done"

  @mailbox = mailbox
  @label = Label[name: @mailbox] || Label.create(name: @mailbox)

  log "Getting mailbox status"
  get_mailbox_status
  log "Getting highest message id"
  get_highest_message_id
  return "OK"
end

#signatureObject



309
310
311
312
# File 'lib/vmail/imap_client.rb', line 309

def signature
  return '' unless @signature
  "\n\n#@signature"
end

#smtp_settingsObject



451
452
453
454
455
456
457
458
459
# File 'lib/vmail/imap_client.rb', line 451

def smtp_settings
  [:smtp, {:address => @smtp_server,
  :port => @smtp_port,
  :domain => @smtp_domain,
  :user_name => @username,
  :password => @password,
  :authentication => 'plain',
  :enable_starttls_auto => true}]
end

#spawn_thread_if_tty(&block) ⇒ Object



251
252
253
254
255
256
257
258
259
# File 'lib/vmail/imap_client.rb', line 251

def spawn_thread_if_tty(&block) 
  if STDIN.tty?
    Thread.new do 
      reconnect_if_necessary(10, &block)
    end
  else
    block.call
  end
end

#updateObject



221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/vmail/imap_client.rb', line 221

def update
  prime_connection
  new_ids = check_for_new_messages 
  if !new_ids.empty?
    self.max_seqno = new_ids[-1]
    @ids = @ids + new_ids
    message_ids = fetch_and_cache_headers(new_ids)
    res = get_message_headers(message_ids)
    res
  else
    ''
  end
rescue
  puts "VMAIL_ERROR: #{[$!.message, $!.backtrace].join("\n")}"
end

#window_width=(width) ⇒ Object



446
447
448
449
# File 'lib/vmail/imap_client.rb', line 446

def window_width=(width)
  @width = width.to_i
  log "Setting window width to #{width}"
end

#with_open {|_self| ... } ⇒ Object

expects a block, closes on finish

Yields:

  • (_self)

Yield Parameters:



60
61
62
63
64
65
# File 'lib/vmail/imap_client.rb', line 60

def with_open
  @imap = Net::IMAP.new(@imap_server, @imap_port, true, nil, false)
  log @imap.(@username, @password)
  yield self
  close
end