Unable to start vmail-1.8.4

55 views
Skip to first unread message

Svanto

unread,
Jun 28, 2011, 3:17:20 PM6/28/11
to vmail-users, dhc...@gmail.com
After the update to 1.8.4, which pulled sequel and sqlite too I am
unable to start vmail.

Here's the CLI output
[code]
Starting gmail service at druby://mycomputer:39476
/usr/lib64/ruby/gems/1.9.1/gems/sqlite3-1.3.3/lib/sqlite3/database.rb:
91:in `initialize': SQLite3::SQLException: no such table: label
(Sequel::DatabaseError)
from /usr/lib64/ruby/gems/1.9.1/gems/sqlite3-1.3.3/lib/sqlite3/
database.rb:91:in `new'
from /usr/lib64/ruby/gems/1.9.1/gems/sqlite3-1.3.3/lib/sqlite3/
database.rb:91:in `prepare'
from /usr/lib64/ruby/gems/1.9.1/gems/sqlite3-1.3.3/lib/sqlite3/
database.rb:263:in `query'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
adapters/sqlite.rb:123:in `block (2 levels) in _execute'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
database/logging.rb:28:in `log_yield'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
adapters/sqlite.rb:123:in `block in _execute'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
connection_pool/threaded.rb:84:in `hold'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
database/connecting.rb:226:in `synchronize'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
adapters/sqlite.rb:117:in `_execute'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
adapters/sqlite.rb:82:in `execute'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/dataset/
actions.rb:541:in `execute'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/
adapters/sqlite.rb:293:in `fetch_rows'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/dataset/
actions.rb:121:in `each'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/dataset/
actions.rb:449:in `single_record'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/dataset/
actions.rb:184:in `first'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/dataset/
actions.rb:28:in `[]'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
base.rb:1566:in `[]'
from /usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
base.rb:106:in `[]'
from /usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.4/lib/vmail/
imap_client.rb:76:in `select_mailbox'
from /usr/lib64/ruby/1.9.1/drb/drb.rb:1083:in `method_missing'
from /usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.4/lib/vmail.rb:58:in
`start'
from /usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.4/bin/vmail:15:in
`<top (required)>'
from /usr/bin/vmail:19:in `load'
from /usr/bin/vmail:19:in `<main>'
[/code]

What's wrong?

Daniel Choi

unread,
Jun 28, 2011, 3:22:58 PM6/28/11
to vmail-users

In the directory in which you started vmail, could you check for a
vmail.db sqlite3 file?

If the file exists, please run

sqlite3 vmail.db '.schema'

and let me know what it says

Svanto

unread,
Jun 28, 2011, 3:38:44 PM6/28/11
to vmail-users
The file is there: -rw-r--r-- 1 svantoviit users 8192 Jun 28 21:04
vmail.db

sqlite3 vmail.db '.schema' says:

CREATE TABLE labelings (
label_id integer,
message_id text,
uid integer
);
CREATE TABLE labels (
label_id integer PRIMARY KEY,
name text UNIQUE
);
CREATE TABLE messages (
message_id text PRIMARY KEY,
size integer,
flags text,
subject text,
sender text,
recipients text,
date text,
plaintext text,
rfc822 text
);
CREATE TABLE version (
vmail_version text
);
CREATE INDEX idx_labelings ON labelings(message_id, label_id);

Daniel Choi

unread,
Jun 28, 2011, 3:54:55 PM6/28/11
to vmail-users

OK Please try Vmail 1.8.7 and see if this fixes the problem

Svanto

unread,
Jun 28, 2011, 4:14:53 PM6/28/11
to vmail-users
1.8.7 started but doesn't work properly

Starting gmail service at druby://mycomputer:50859
Mailbox: INBOX
Query: ["all"]
Query String: all
DRB_URI=druby://mycomputer:50859 VMAIL_CONTACTS_FILE=vmail-
contacts.txt VMAIL_MAILBOX=INBOX VMAIL_QUERY="all" vim -S /usr/lib64/
ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail.vim vmailbuffer
Using buffer file: vmailbuffer
Closing imap connection
Bye

Just some error messages popped up, here's part of the log:

D, [2011-06-28T22:07:44.258116 #16944] DEBUG -- : Selecting mailbox
"INBOX"
D, [2011-06-28T22:07:44.551999 #16944] DEBUG -- : #<struct
Net::IMAP::TaggedResponse tag="RUBY0005", name="OK", data=#<struct
Net::IMAP::ResponseText code=#<struct Net::IMAP::ResponseCode
name="READ-WRITE", data=nil>, text=" INBOX selected. (Success)">,
raw_data="RUBY0005 OK [READ-WRITE] INBOX selected. (Success)\r\n">
D, [2011-06-28T22:07:44.552362 #16944] DEBUG -- : Done
D, [2011-06-28T22:07:44.553626 #16944] DEBUG -- : Getting mailbox
status
D, [2011-06-28T22:07:44.553861 #16944] DEBUG -- : Getting highest
message id
D, [2011-06-28T22:07:44.846681 #16944] DEBUG -- : Highest seqno: 146
D, [2011-06-28T22:07:45.020725 #16944] DEBUG -- : Search query? false
["all"]
D, [2011-06-28T22:07:45.021017 #16944] DEBUG -- : Query: "47:146 all"
D, [2011-06-28T22:07:45.258788 #16944] DEBUG -- : - Query got 100
results; max seqno: 146
D, [2011-06-28T22:07:45.259020 #16944] DEBUG -- : Clearing cached
message
D, [2011-06-28T22:07:45.259118 #16944] DEBUG -- : Search query? false
["47:146", "all"]
D, [2011-06-28T22:07:45.259210 #16944] DEBUG -- : Fetching headers for
100 messages
D, [2011-06-28T22:07:46.105778 #16944] DEBUG -- : ERROR:
#<NameError: uninitialized constant Vmail::Labels>
/usr/lib64/ruby/gems/1.9.1/gems/activesupport-3.0.4/lib/active_support/
inflector/methods.rb:124:in `block in constantize'
/usr/lib64/ruby/gems/1.9.1/gems/activesupport-3.0.4/lib/active_support/
inflector/methods.rb:123:in `each'
/usr/lib64/ruby/gems/1.9.1/gems/activesupport-3.0.4/lib/active_support/
inflector/methods.rb:123:in `constantize'
/usr/lib64/ruby/gems/1.9.1/gems/activesupport-3.0.4/lib/active_support/
core_ext/string/inflections.rb:43:in `constantize'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
inflections.rb:123:in `constantize'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:57:in `associated_class'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:802:in `block in def_many_to_many'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:1077:in `_dataset'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:759:in `block in def_association_dataset_methods'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:1067:in `_associated_dataset'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:1090:in `_load_associated_objects'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:1168:in `load_associated_objects'
/usr/lib64/ruby/gems/1.9.1/gems/sequel-3.24.1/lib/sequel/model/
associations.rb:768:in `block in def_association_method'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/
showing_headers.rb:45:in `block in fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/
showing_headers.rb:21:in `map'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/
showing_headers.rb:21:in `fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/searching.rb:
41:in `search'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-28T22:07:52.041161 #16944] DEBUG -- : Show message: "true"
D, [2011-06-28T22:07:52.042133 #16944] DEBUG -- : - found message true
D, [2011-06-28T22:07:52.042421 #16944] DEBUG -- : Error encountered in
fetch_and_cache(), message_id true [INBOX]:
undefined method `plaintext' for nil:NilClass
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/
showing_message.rb:16:in `cached_full_message?'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/
showing_message.rb:31:in `fetch_and_cache'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/
showing_message.rb:24:in `block in show_message'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/helpers.rb:10:in
`block in retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/helpers.rb:9:in
`times'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/helpers.rb:9:in
`retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.8.7/lib/vmail/
showing_message.rb:24:in `show_message'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-28T22:07:52.042506 #16944] DEBUG -- : Showing message
message_id: true

Daniel Choi

unread,
Jun 28, 2011, 5:27:27 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
OK could you try 1.8.9?

Thanks for helping me debug

On Tue, Jun 28, 2011 at 01:14 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 01:14 PM -07:00 2011
to: vmail-users <vmail...@googlegroups.com>
subject: Re: Unable to start vmail-1.8.4
reply-to: vmail...@googlegroups.com
references: <024866af-39e4-4659...@x16g2000yqg.googlegroups.com>

--
Sent from vmail. http://danielchoi.com/software/vmail.html

Svanto

unread,
Jun 28, 2011, 6:21:39 PM6/28/11
to vmail-users
1.9.0 looks pretty the same...

D, [2011-06-29T00:17:27.466669 #17694] DEBUG -- : Getting mailbox
status
D, [2011-06-29T00:17:27.466895 #17694] DEBUG -- : Getting highest
message id
D, [2011-06-29T00:17:27.708724 #17694] DEBUG -- : Highest seqno: 93
D, [2011-06-29T00:17:27.882227 #17694] DEBUG -- : Search query? false
["all"]
D, [2011-06-29T00:17:27.882458 #17694] DEBUG -- : Query: "1:93 all"
D, [2011-06-29T00:17:28.109746 #17694] DEBUG -- : - Query got 93
results; max seqno: 93
D, [2011-06-29T00:17:28.110009 #17694] DEBUG -- : Clearing cached
message
D, [2011-06-29T00:17:28.110120 #17694] DEBUG -- : Search query? false
["1:93", "all"]
D, [2011-06-29T00:17:28.110215 #17694] DEBUG -- : Fetching headers for
93 messages
D, [2011-06-29T00:17:28.941191 #17694] DEBUG -- : ERROR:
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/
showing_headers.rb:46:in `block in fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/
showing_headers.rb:22:in `map'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/
showing_headers.rb:22:in `fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/searching.rb:
41:in `search'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T00:20:05.457851 #17694] DEBUG -- : Show message: "true"
D, [2011-06-29T00:20:05.458754 #17694] DEBUG -- : - found message true
D, [2011-06-29T00:20:05.459101 #17694] DEBUG -- : Error encountered in
fetch_and_cache(), message_id true [INBOX]:
undefined method `plaintext' for nil:NilClass
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/
showing_message.rb:16:in `cached_full_message?'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/
showing_message.rb:31:in `fetch_and_cache'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/
showing_message.rb:24:in `block in show_message'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/helpers.rb:10:in
`block in retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/helpers.rb:9:in
`times'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/helpers.rb:9:in
`retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.0/lib/vmail/
showing_message.rb:24:in `show_message'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T00:20:05.459203 #17694] DEBUG -- : Showing message
message_id: true

Svanto

unread,
Jun 28, 2011, 6:25:35 PM6/28/11
to vmail-users
Is there any additional info I could send you?

On Jun 28, 11:27 pm, Daniel Choi <dhc...@gmail.com> wrote:

Daniel Choi

unread,
Jun 28, 2011, 6:33:01 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
OK could you try Vmail 1.9.2?

On Tue, Jun 28, 2011 at 03:21 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 03:21 PM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
subject: Re: Unable to start vmail-1.8.4
reply-to: vmail...@googlegroups.com

references: <8c0cf843-4788-44c4...@d22g2000yqn.googlegroups.com>

On Jun 28, 11:27pm, Daniel Choi <dhc...@gmail.com> wrote:
> OK could you try 1.8.9?
>
> Thanks for helping me debug

--

Svanto

unread,
Jun 28, 2011, 6:50:24 PM6/28/11
to vmail-users
No improvement. Anyway, thank you for keeping trying!

Is there any possibility there is something wrong on my side?


On Jun 29, 12:33 am, Daniel Choi <dhc...@gmail.com> wrote:
> OK could you try Vmail 1.9.2?
>
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

Daniel Choi

unread,
Jun 28, 2011, 6:51:15 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
What's the latest log trace?

On Tue, Jun 28, 2011 at 03:50 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 03:50 PM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
subject: Re: Unable to start vmail-1.8.4
reply-to: vmail...@googlegroups.com

references: <658cc7ff-ce99-4be2...@x41g2000yqd.googlegroups.com>

No improvement. Anyway, thank you for keeping trying!

Is there any possibility there is something wrong on my side?


On Jun 29, 12:33am, Daniel Choi <dhc...@gmail.com> wrote:
> OK could you try Vmail 1.9.2?
>
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

--

Svanto

unread,
Jun 28, 2011, 7:02:18 PM6/28/11
to vmail-users
D, [2011-06-29T01:02:47.794138 #18697] DEBUG -- : Getting mailbox
status
D, [2011-06-29T01:02:47.794341 #18697] DEBUG -- : Getting highest
message id
D, [2011-06-29T01:02:48.051336 #18697] DEBUG -- : Highest seqno: 93
D, [2011-06-29T01:02:48.235631 #18697] DEBUG -- : Search query? false
["all"]
D, [2011-06-29T01:02:48.235894 #18697] DEBUG -- : Query: "1:93 all"
D, [2011-06-29T01:02:48.470860 #18697] DEBUG -- : - Query got 93
results; max seqno: 93
D, [2011-06-29T01:02:48.471061 #18697] DEBUG -- : Clearing cached
message
D, [2011-06-29T01:02:48.471147 #18697] DEBUG -- : Search query? false
["1:93", "all"]
D, [2011-06-29T01:02:48.471208 #18697] DEBUG -- : Fetching headers for
93 messages
D, [2011-06-29T01:02:49.181057 #18697] DEBUG -- : ERROR:
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/
showing_headers.rb:46:in `block in fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/
showing_headers.rb:22:in `map'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/
showing_headers.rb:22:in `fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/searching.rb:
41:in `search'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T01:02:56.773267 #18697] DEBUG -- : Show message: "true"
D, [2011-06-29T01:02:56.774197 #18697] DEBUG -- : - could not found
message "true"
D, [2011-06-29T01:02:56.774387 #18697] DEBUG -- : - full message cache
miss
D, [2011-06-29T01:02:56.775478 #18697] DEBUG -- : Error encountered in
fetch_and_cache(), message_id true [INBOX]:
undefined method `uid' for nil:NilClass
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/
showing_message.rb:41:in `fetch_and_cache'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/
showing_message.rb:28:in `block in show_message'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/helpers.rb:10:in
`block in retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/helpers.rb:9:in
`times'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/helpers.rb:9:in
`retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.2/lib/vmail/
showing_message.rb:28:in `show_message'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T01:02:56.775666 #18697] DEBUG -- : Showing message
message_id: true

Daniel Choi

unread,
Jun 28, 2011, 7:14:59 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
OK we can try again with 1.9.5


On Tue, Jun 28, 2011 at 04:02 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 04:02 PM -07:00 2011
to: vmail-users <vmail...@googlegroups.com>
reply-to: vmail...@googlegroups.com


subject: Re: Unable to start vmail-1.8.4

D, [2011-06-29T01:02:47.794138 #18697] DEBUG -- : Getting mailbox

On Jun 29, 12:51am, Daniel Choi <dhc...@gmail.com> wrote:
> What's the latest log trace?

--

Svanto

unread,
Jun 28, 2011, 7:31:37 PM6/28/11
to vmail-users
Vmail on Linux is (almost) back!

I got to Inbox, but when I tried to switch to another mailbox the
error encountered again.
Switching back to Inbox worked OK.

D, [2011-06-29T01:22:52.287668 #19113] DEBUG -- : Selecting mailbox
"Cron"
D, [2011-06-29T01:22:52.528558 #19113] DEBUG -- : #<struct
Net::IMAP::TaggedResponse tag="RUBY0022", name="OK", data=#<struct
Net::IMAP::ResponseText code=#<struct Net::IMAP::ResponseCode
name="READ-WRITE", data=nil>, text=" Cron selected. (Success)">,
raw_data="RUBY0022 OK [READ-WRITE] Cron selected. (Success)\r\n">
D, [2011-06-29T01:22:52.528956 #19113] DEBUG -- : Done
D, [2011-06-29T01:22:52.530000 #19113] DEBUG -- : Getting mailbox
status
D, [2011-06-29T01:22:52.530195 #19113] DEBUG -- : Getting highest
message id
D, [2011-06-29T01:22:52.773959 #19113] DEBUG -- : Highest seqno: 40
D, [2011-06-29T01:22:52.948418 #19113] DEBUG -- : Setting window width
to 80
D, [2011-06-29T01:22:53.122765 #19113] DEBUG -- : Search query? false
["all"]
D, [2011-06-29T01:22:53.123032 #19113] DEBUG -- : Query: "1:40 all"
D, [2011-06-29T01:22:53.356035 #19113] DEBUG -- : - Query got 40
results; max seqno: 40
D, [2011-06-29T01:22:53.356247 #19113] DEBUG -- : Clearing cached
message
D, [2011-06-29T01:22:53.356335 #19113] DEBUG -- : Search query? false
["1:40", "all"]
D, [2011-06-29T01:22:53.356388 #19113] DEBUG -- : Fetching headers for
40 messages
D, [2011-06-29T01:22:53.677326 #19113] DEBUG -- : ERROR:
#<NoMethodError: undefined method `match' for nil:NilClass>
/usr/lib64/ruby/gems/1.9.1/gems/mail-2.2.15/lib/mail/encodings.rb:
254:in `split_encoding_from_string'
/usr/lib64/ruby/gems/1.9.1/gems/mail-2.2.15/lib/mail/encodings.rb:
142:in `unquote_and_convert_to'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_headers.rb:61:in `extract_address'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_headers.rb:26:in `block (2 levels) in fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_headers.rb:26:in `map'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_headers.rb:26:in `block in fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_headers.rb:22:in `map'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_headers.rb:22:in `fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/searching.rb:
41:in `search'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T01:22:55.577342 #19113] DEBUG -- : Show message: "true"
D, [2011-06-29T01:22:55.578248 #19113] DEBUG -- : - could not find
message "true"
D, [2011-06-29T01:22:55.578433 #19113] DEBUG -- : - full message cache
miss
D, [2011-06-29T01:22:55.579534 #19113] DEBUG -- : Error encountered in
fetch_and_cache(), message_id true [Cron]:
undefined method `uid' for nil:NilClass
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_message.rb:41:in `fetch_and_cache'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_message.rb:28:in `block in show_message'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/helpers.rb:10:in
`block in retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/helpers.rb:9:in
`times'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/helpers.rb:9:in
`retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.5/lib/vmail/
showing_message.rb:28:in `show_message'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T01:22:55.579722 #19113] DEBUG -- : Showing message
message_id: true

On Jun 29, 1:14 am, Daniel Choi <dhc...@gmail.com> wrote:
> OK we can try again with 1.9.5

Daniel Choi

unread,
Jun 28, 2011, 7:41:00 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
OK I think we're close

1.9.7

On Tue, Jun 28, 2011 at 04:31 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 04:31 PM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
reply-to: vmail...@googlegroups.com
subject: Re: Unable to start vmail-1.8.4

Vmail on Linux is (almost) back!

On Jun 29, 1:14am, Daniel Choi <dhc...@gmail.com> wrote:
> OK we can try again with 1.9.5
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

--

Svanto

unread,
Jun 28, 2011, 7:57:11 PM6/28/11
to vmail-users
The "same old" error encountered when switching to Sent folder/
mailbox.

With all others, when moving to the end of the messages list, there is
the text:
"Load 1 more messages. 1 remaining." Even in a mailbox with just 1
message, where there are no other messages, in Inbox too though the
number of "more" messages should be in this case higher...

When trying to "load 1 more messages" this happens:

D, [2011-06-29T01:55:15.953997 #19716] DEBUG -- : Selecting mailbox
"INBOX"
D, [2011-06-29T01:55:16.191403 #19716] DEBUG -- : #<struct
Net::IMAP::TaggedResponse tag="RUBY0053", name="OK", data=#<struct
Net::IMAP::ResponseText code=#<struct Net::IMAP::ResponseCode
name="READ-WRITE", data=nil>, text=" INBOX selected. (Success)">,
raw_data="RUBY0053 OK [READ-WRITE] INBOX selected. (Success)\r\n">
D, [2011-06-29T01:55:16.191957 #19716] DEBUG -- : Done
D, [2011-06-29T01:55:16.192989 #19716] DEBUG -- : Getting mailbox
status
D, [2011-06-29T01:55:16.193184 #19716] DEBUG -- : Getting highest
message id
D, [2011-06-29T01:55:16.428626 #19716] DEBUG -- : Highest seqno: 93
D, [2011-06-29T01:55:16.604584 #19716] DEBUG -- : Setting window width
to 80
D, [2011-06-29T01:55:16.780567 #19716] DEBUG -- : Search query? false
["all"]
D, [2011-06-29T01:55:16.780766 #19716] DEBUG -- : Query: "1:93 all"
D, [2011-06-29T01:55:17.009306 #19716] DEBUG -- : - Query got 93
results; max seqno: 93
D, [2011-06-29T01:55:17.009519 #19716] DEBUG -- : Clearing cached
message
D, [2011-06-29T01:55:17.009606 #19716] DEBUG -- : Search query? false
["1:93", "all"]
D, [2011-06-29T01:55:17.009662 #19716] DEBUG -- : Fetching headers for
93 messages
D, [2011-06-29T01:55:21.475324 #19716] DEBUG -- : Getting
more_messages
D, [2011-06-29T01:55:21.475561 #19716] DEBUG -- : Search query? false
["1:93", "all"]
D, [2011-06-29T01:55:21.475631 #19716] DEBUG -- : Fetching headers for
1 messages
D, [2011-06-29T01:55:21.476119 #19716] DEBUG -- : Error: nz_number
must be non-zero unsigned 32-bit integer: 0
D, [2011-06-29T01:55:26.456000 #19716] DEBUG -- : Show message:
"(DRb::DRbUnknownError)"
D, [2011-06-29T01:55:26.456872 #19716] DEBUG -- : - could not find
message "(DRb::DRbUnknownError)"
D, [2011-06-29T01:55:26.457051 #19716] DEBUG -- : - full message cache
miss
D, [2011-06-29T01:55:26.458100 #19716] DEBUG -- : Error encountered in
fetch_and_cache(), message_id (DRb::DRbUnknownError) [INBOX]:
undefined method `uid' for nil:NilClass
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.7/lib/vmail/
showing_message.rb:41:in `fetch_and_cache'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.7/lib/vmail/
showing_message.rb:28:in `block in show_message'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.7/lib/vmail/helpers.rb:10:in
`block in retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.7/lib/vmail/helpers.rb:9:in
`times'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.7/lib/vmail/helpers.rb:9:in
`retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.7/lib/vmail/
showing_message.rb:28:in `show_message'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T01:55:26.458288 #19716] DEBUG -- : Showing message
message_id: (DRb::DRbUnknownError)



On Jun 29, 1:41 am, Daniel Choi <dhc...@gmail.com> wrote:
> OK I think we're close
>
> 1.9.7
>

Daniel Choi

unread,
Jun 28, 2011, 8:10:15 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
OK thanks for the report!

1.9.8 may fix this

On Tue, Jun 28, 2011 at 04:57 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 04:57 PM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
reply-to: vmail...@googlegroups.com
subject: Re: Unable to start vmail-1.8.4

The "same old" error encountered when switching to Sent folder/
mailbox.

On Jun 29, 1:41am, Daniel Choi <dhc...@gmail.com> wrote:
> OK I think we're close
>
> 1.9.7
>
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

--

Svanto

unread,
Jun 28, 2011, 8:24:34 PM6/28/11
to vmail-users
"Smaller" mailboxes look OK.

"Larger" mailbox:
D, [2011-06-29T02:19:18.435121 #20593] DEBUG -- : Selecting mailbox
"The Geek Stuff"
D, [2011-06-29T02:19:18.680305 #20593] DEBUG -- : #<struct
Net::IMAP::TaggedResponse tag="RUBY0014", name="OK", data=#<struct
Net::IMAP::ResponseText code=#<struct Net::IMAP::ResponseCode
name="READ-WRITE", data=nil>, text=" The Geek Stuff selected.
(Success)">, raw_data="RUBY0014 OK [READ-WRITE] The Geek Stuff
selected. (Success)\r\n">
D, [2011-06-29T02:19:18.680743 #20593] DEBUG -- : Done
D, [2011-06-29T02:19:18.681807 #20593] DEBUG -- : Getting mailbox
status
D, [2011-06-29T02:19:18.682040 #20593] DEBUG -- : Getting highest
message id
D, [2011-06-29T02:19:18.924724 #20593] DEBUG -- : Highest seqno: 159
D, [2011-06-29T02:19:19.102008 #20593] DEBUG -- : Setting window width
to 80
D, [2011-06-29T02:19:19.281063 #20593] DEBUG -- : Search query? false
["all"]
D, [2011-06-29T02:19:19.281260 #20593] DEBUG -- : Query: "60:159 all"
D, [2011-06-29T02:19:19.514167 #20593] DEBUG -- : - Query got 100
results; max seqno: 159
D, [2011-06-29T02:19:19.514377 #20593] DEBUG -- : Clearing cached
message
D, [2011-06-29T02:19:19.514467 #20593] DEBUG -- : Search query? false
["60:159", "all"]
D, [2011-06-29T02:19:19.514520 #20593] DEBUG -- : Fetching headers for
100 messages
D, [2011-06-29T02:19:27.821079 #20593] DEBUG -- : Getting
more_messages
D, [2011-06-29T02:19:27.821363 #20593] DEBUG -- : Search query? false
["60:159", "all"]
D, [2011-06-29T02:19:27.821449 #20593] DEBUG -- : Fetching headers for
59 messages
D, [2011-06-29T02:19:27.821993 #20593] DEBUG -- : Error: nz_number
must be non-zero unsigned 32-bit integer: 0
D, [2011-06-29T02:19:36.191729 #20593] DEBUG -- : Show message:
"(DRb::DRbUnknownError)"
D, [2011-06-29T02:19:36.192789 #20593] DEBUG -- : - could not find
message "(DRb::DRbUnknownError)"
D, [2011-06-29T02:19:36.193022 #20593] DEBUG -- : - full message cache
miss
D, [2011-06-29T02:19:36.194147 #20593] DEBUG -- : Error encountered in
fetch_and_cache(), message_id (DRb::DRbUnknownError) [The Geek Stuff]:
undefined method `uid' for nil:NilClass
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/
showing_message.rb:41:in `fetch_and_cache'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/
showing_message.rb:28:in `block in show_message'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/helpers.rb:10:in
`block in retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/helpers.rb:9:in
`times'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/helpers.rb:9:in
`retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/
showing_message.rb:28:in `show_message'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T02:19:36.194344 #20593] DEBUG -- : Showing message
message_id: (DRb::DRbUnknownError)

Mailbox Sent:
D, [2011-06-29T02:21:34.862187 #20593] DEBUG -- : Selecting mailbox
"[Gmail]/Sent Mail"
D, [2011-06-29T02:21:35.133622 #20593] DEBUG -- : #<struct
Net::IMAP::TaggedResponse tag="RUBY0018", name="OK", data=#<struct
Net::IMAP::ResponseText code=#<struct Net::IMAP::ResponseCode
name="READ-WRITE", data=nil>, text=" [Gmail]/Sent Mail selected.
(Success)">, raw_data="RUBY0018 OK [READ-WRITE] [Gmail]/Sent Mail
selected. (Success)\r\n">
D, [2011-06-29T02:21:35.134162 #20593] DEBUG -- : Done
D, [2011-06-29T02:21:35.135200 #20593] DEBUG -- : Getting mailbox
status
D, [2011-06-29T02:21:35.135399 #20593] DEBUG -- : Getting highest
message id
D, [2011-06-29T02:21:35.407404 #20593] DEBUG -- : Highest seqno: 58
D, [2011-06-29T02:21:35.585188 #20593] DEBUG -- : Setting window width
to 80
D, [2011-06-29T02:21:35.761769 #20593] DEBUG -- : Search query? false
["all"]
D, [2011-06-29T02:21:35.762324 #20593] DEBUG -- : Query: "1:58 all"
D, [2011-06-29T02:21:35.998099 #20593] DEBUG -- : - Query got 58
results; max seqno: 58
D, [2011-06-29T02:21:35.998346 #20593] DEBUG -- : Clearing cached
message
D, [2011-06-29T02:21:35.998460 #20593] DEBUG -- : Search query? false
["1:58", "all"]
D, [2011-06-29T02:21:35.998648 #20593] DEBUG -- : Fetching headers for
58 messages
D, [2011-06-29T02:21:36.675994 #20593] DEBUG -- : ERROR:
#<NoMethodError: undefined method `match' for nil:NilClass>
/usr/lib64/ruby/gems/1.9.1/gems/mail-2.2.15/lib/mail/encodings.rb:
254:in `split_encoding_from_string'
/usr/lib64/ruby/gems/1.9.1/gems/mail-2.2.15/lib/mail/encodings.rb:
142:in `unquote_and_convert_to'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/
showing_headers.rb:25:in `block in fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/
showing_headers.rb:22:in `map'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/
showing_headers.rb:22:in `fetch_and_cache_headers'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.8/lib/vmail/searching.rb:
41:in `search'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'


On Jun 29, 2:10 am, Daniel Choi <dhc...@gmail.com> wrote:
> OK thanks for the report!
>
> 1.9.8 may fix this

Daniel Choi

unread,
Jun 28, 2011, 8:39:02 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
OK 1.9.9 (almost 2.0 !)


On Tue, Jun 28, 2011 at 05:24 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 05:24 PM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
reply-to: vmail...@googlegroups.com
subject: Re: Unable to start vmail-1.8.4

"Smaller" mailboxes look OK.


On Jun 29, 2:10am, Daniel Choi <dhc...@gmail.com> wrote:
> OK thanks for the report!
>
> 1.9.8 may fix this
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

--

Svanto

unread,
Jun 28, 2011, 8:48:53 PM6/28/11
to vmail-users
Sent mail OK.

"Larger" mailbox when loading older messages:

D, [2011-06-29T02:45:51.953490 #21172] DEBUG -- : Selecting mailbox
"The Geek Stuff"
D, [2011-06-29T02:45:52.196119 #21172] DEBUG -- : #<struct
Net::IMAP::TaggedResponse tag="RUBY0017", name="OK", data=#<struct
Net::IMAP::ResponseText code=#<struct Net::IMAP::ResponseCode
name="READ-WRITE", data=nil>, text=" The Geek Stuff selected.
(Success)">, raw_data="RUBY0017 OK [READ-WRITE] The Geek Stuff
selected. (Success)\r\n">
D, [2011-06-29T02:45:52.196597 #21172] DEBUG -- : Done
D, [2011-06-29T02:45:52.197643 #21172] DEBUG -- : Getting mailbox
status
D, [2011-06-29T02:45:52.197868 #21172] DEBUG -- : Getting highest
message id
D, [2011-06-29T02:45:52.436548 #21172] DEBUG -- : Highest seqno: 159
D, [2011-06-29T02:45:52.614938 #21172] DEBUG -- : Setting window width
to 80
D, [2011-06-29T02:45:52.789704 #21172] DEBUG -- : Search query? false
["all"]
D, [2011-06-29T02:45:52.789950 #21172] DEBUG -- : Query: "60:159 all"
D, [2011-06-29T02:45:53.017570 #21172] DEBUG -- : - Query got 100
results; max seqno: 159
D, [2011-06-29T02:45:53.017773 #21172] DEBUG -- : Clearing cached
message
D, [2011-06-29T02:45:53.017877 #21172] DEBUG -- : Search query? false
["60:159", "all"]
D, [2011-06-29T02:45:53.017935 #21172] DEBUG -- : Fetching headers for
100 messages
D, [2011-06-29T02:45:58.446615 #21172] DEBUG -- : Getting
more_messages
D, [2011-06-29T02:45:58.446917 #21172] DEBUG -- : Search query? false
["60:159", "all"]
D, [2011-06-29T02:45:58.446993 #21172] DEBUG -- : Fetching headers for
59 messages
D, [2011-06-29T02:45:58.447426 #21172] DEBUG -- : Error: nz_number
must be non-zero unsigned 32-bit integer: 0
D, [2011-06-29T02:46:36.443746 #21172] DEBUG -- : Show message:
"(DRb::DRbUnknownError)"
D, [2011-06-29T02:46:36.444630 #21172] DEBUG -- : - could not find
message "(DRb::DRbUnknownError)"
D, [2011-06-29T02:46:36.444844 #21172] DEBUG -- : - full message cache
miss
D, [2011-06-29T02:46:36.445860 #21172] DEBUG -- : Error encountered in
fetch_and_cache(), message_id (DRb::DRbUnknownError) [The Geek Stuff]:
undefined method `uid' for nil:NilClass
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.9/lib/vmail/
showing_message.rb:41:in `fetch_and_cache'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.9/lib/vmail/
showing_message.rb:28:in `block in show_message'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.9/lib/vmail/helpers.rb:10:in
`block in retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.9/lib/vmail/helpers.rb:9:in
`times'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.9/lib/vmail/helpers.rb:9:in
`retry_if_needed'
/usr/lib64/ruby/gems/1.9.1/gems/vmail-1.9.9/lib/vmail/
showing_message.rb:28:in `show_message'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1558:in `perform_without_block'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1518:in `perform'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1592:in `block (2 levels) in
main_loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `loop'
/usr/lib64/ruby/1.9.1/drb/drb.rb:1588:in `block in main_loop'
D, [2011-06-29T02:46:36.446055 #21172] DEBUG -- : Showing message
message_id: (DRb::DRbUnknownError)

Just take your time.



On Jun 29, 2:39 am, Daniel Choi <dhc...@gmail.com> wrote:
> OK 1.9.9 (almost 2.0 !)

Daniel Choi

unread,
Jun 28, 2011, 8:54:19 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
When you get to the last page of messages right before you trigger this
error, and if you look at the same part of the message list in Gmail, do
the counts and offsets look the same?

On Tue, Jun 28, 2011 at 05:48 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 05:48 PM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
reply-to: vmail...@googlegroups.com
subject: Re: Unable to start vmail-1.8.4

Sent mail OK.

Just take your time.

On Jun 29, 2:39am, Daniel Choi <dhc...@gmail.com> wrote:
> OK 1.9.9 (almost 2.0 !)
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

--

Svanto

unread,
Jun 28, 2011, 9:19:18 PM6/28/11
to vmail-users
The counts are OK, there are 159 in that mailbox.
What do you mean by offsets? Like the order of the messages?
Now I see, that the very last message of the mailbox is third last on
first vmail page of the mailbox... so the message no. 159 is on
position 98.

On Jun 29, 2:54 am, Daniel Choi <dhc...@gmail.com> wrote:
> When you get to the last page of messages right before you trigger this
> error, and if you look at the same part of the message list in Gmail, do
> the counts and offsets look the same?
>

Daniel Choi

unread,
Jun 28, 2011, 10:39:09 PM6/28/11
to vmail...@googlegroups.com, dhc...@gmail.com
OK I did find a problem that might be the cause

2.0.1


On Tue, Jun 28, 2011 at 06:19 PM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Tue, Jun 28 06:19 PM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
reply-to: vmail...@googlegroups.com
subject: Re: Unable to start vmail-1.8.4

The counts are OK, there are 159 in that mailbox.


What do you mean by offsets? Like the order of the messages?
Now I see, that the very last message of the mailbox is third last on
first vmail page of the mailbox... so the message no. 159 is on
position 98.

On Jun 29, 2:54am, Daniel Choi <dhc...@gmail.com> wrote:
> When you get to the last page of messages right before you trigger this
> error, and if you look at the same part of the message list in Gmail, do
> the counts and offsets look the same?
>
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

--

Svanto

unread,
Jun 29, 2011, 6:53:41 AM6/29/11
to vmail-users
Seems that everything is working fine again (vmail 2.0.2).
Thank you, great job!

On Jun 29, 4:39 am, Daniel Choi <dhc...@gmail.com> wrote:
> OK I did find a problem that might be the cause
>
> 2.0.1
>

Daniel Choi

unread,
Jun 29, 2011, 8:25:03 AM6/29/11
to vmail...@googlegroups.com, dhc...@gmail.com
Thank you for helping me through the release!


On Wed, Jun 29, 2011 at 03:53 AM, Svanto <svant...@gmail.com> wrote:

----------------------------------------------
from: Svanto <svant...@gmail.com>
date: Wed, Jun 29 03:53 AM -07:00 2011


to: vmail-users <vmail...@googlegroups.com>
reply-to: vmail...@googlegroups.com
subject: Re: Unable to start vmail-1.8.4

Seems that everything is working fine again (vmail 2.0.2).
Thank you, great job!

On Jun 29, 4:39am, Daniel Choi <dhc...@gmail.com> wrote:
> OK I did find a problem that might be the cause
>
> 2.0.1
>
> --
> Sent from vmail.http://danielchoi.com/software/vmail.html

--

Reply all
Reply to author
Forward
0 new messages