vmail 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -75,9 +75,6 @@ function! s:show_message(stay_in_message_list)
75
75
  call s:more_messages()
76
76
  return
77
77
  endif
78
- " remove the unread flag +
79
- " TODO!
80
- " tetset
81
78
  let newline = substitute(line, '^\V*+', '* ', '')
82
79
  let newline = substitute(newline, '^\V+ ', ' ', '')
83
80
  setlocal modifiable
@@ -719,7 +719,7 @@ EOF
719
719
  def deliver(text)
720
720
  # parse the text. The headers are yaml. The rest is text body.
721
721
  require 'net/smtp'
722
- prime_connection
722
+ # prime_connection
723
723
  mail = new_mail_from_input(text)
724
724
  mail.delivery_method(*smtp_settings)
725
725
  res = mail.deliver!
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "1.1.3"
2
+ VERSION = "1.1.4"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 1
8
- - 3
9
- version: 1.1.3
8
+ - 4
9
+ version: 1.1.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi