Fetch older emails first (to keep possibility for references header follow up detection).
This commit is contained in:
parent
0ab918dadc
commit
52043bfdc5
1 changed files with 6 additions and 1 deletions
|
@ -85,7 +85,12 @@ returns
|
||||||
@imap.select(options[:folder])
|
@imap.select(options[:folder])
|
||||||
end
|
end
|
||||||
|
|
||||||
message_ids = @imap.search(['ALL'])
|
begin
|
||||||
|
message_ids = @imap.sort(['DATE'], ['ALL'], 'US-ASCII')
|
||||||
|
rescue => e
|
||||||
|
Rails.logger.error "Unable to use imap sort: #{e.inspect}, use imap search now"
|
||||||
|
message_ids = @imap.search(['ALL'])
|
||||||
|
end
|
||||||
|
|
||||||
# check mode only
|
# check mode only
|
||||||
if check_type == 'check'
|
if check_type == 'check'
|
||||||
|
|
Loading…
Reference in a new issue