vmail 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vmail.vim +0 -3
- data/lib/vmail/imap_client.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/lib/vmail.vim
CHANGED
@@ -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
|
data/lib/vmail/imap_client.rb
CHANGED
@@ -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!
|
data/lib/vmail/version.rb
CHANGED