Reverse msgs.emails because its old-to-new
diff --git a/content/index.js b/content/index.js
index d2000b9..963d0fb 100644
--- a/content/index.js
+++ b/content/index.js
@@ -11,6 +11,7 @@
   .then(r => r.json())
   .then((msgs) => {
     if ('emails' in msgs && msgs.emails.length > 0) {
+      msgs.emails.reverse();
       for (let i = 0; i < 5; i++) {
         let _a = a.cloneNode(a);
         _a.href = 'https://lists.apache.org/thread.html/' + msgs.emails[i].id;