Fixes a bug introduced by
2e06f1eb. The YAML loading was explicitly passing
nil, overriding the {} default in initialize.
#the mtime from the subdirs in the maildir with the unix epoch as default.
#these are used to determine whether scanning the directory for new mail
#is a worthwhile effort
- @mtimes = { 'cur' => Time.at(0), 'new' => Time.at(0) }.merge(mtimes)
+ @mtimes = { 'cur' => Time.at(0), 'new' => Time.at(0) }.merge(mtimes || {})
@dir_ids = { 'cur' => [], 'new' => [] }
end