Merge pull request #4461 from pfaffman/mbox-sort-order

mbox: sort input files by title, sort messages by date
This commit is contained in:
Régis Hanol 2016-09-28 11:19:32 +02:00 committed by GitHub
commit 7bbf5158de
1 changed files with 7 additions and 2 deletions

View File

@ -63,6 +63,8 @@ class ImportScripts::Mbox < ImportScripts::Base
files.flatten!
files.sort!
files.each_with_index do |f, idx|
if SPLIT_AT.present?
msg = ""
@ -310,7 +312,8 @@ class ImportScripts::Mbox < ImportScripts::Base
message,
category
FROM emails
WHERE reply_to IS NULL")
WHERE reply_to IS NULL
ORDER BY DATE(email_date)")
topic_count = all_topics.size
@ -376,7 +379,9 @@ class ImportScripts::Mbox < ImportScripts::Base
message,
reply_to
FROM emails
WHERE reply_to IS NOT NULL")
WHERE reply_to IS NOT NULL
ORDER BY DATE(email_date)
")
post_count = replies.size