Place prefs options under correct header
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 10 Aug 2010 22:22:51 +0000 (16:22 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 10 Aug 2010 22:22:51 +0000 (16:22 -0600)
imp/config/prefs.php.dist

index 25a6f2b..a09f335 100644 (file)
@@ -744,31 +744,6 @@ $_prefs['strip_attachments'] = array(
     'type' => 'checkbox',
     'desc' => _("Show an icon to allow stripping of attachments from messages?"));
 
-// What should we do with spam messages after reporting them?
-$_prefs['delete_spam_after_report'] = array(
-    'value' => 0,
-    'type' => 'enum',
-    'enum' => array(
-        0 => _("Nothing"),
-        1 => _("Delete message"),
-        2 => _("Move to spam folder")
-    ),
-    'desc' => _("What should we do with spam messages after they have been reported as spam?"),
-    'help' => 'prefs-delete_spam_after_report'
-);
-
-// What should we do with spam messages after reporting them as innocent?
-$_prefs['move_ham_after_report'] = array(
-    'value' => 0,
-    'type' => 'enum',
-    'enum' => array(
-        0 => _("Nothing"),
-        1 => _("Move to Inbox")
-    ),
-    'desc' => _("What should we do with spam messages after they have been reported as innocent?"),
-    'help' => 'prefs-move_ham_after_report'
-);
-
 // Replace image tags in inline viewed HTML messages with blank images?
 $_prefs['html_image_replacement'] = array(
     'value' => 1,
@@ -903,6 +878,31 @@ $_prefs['mailbox_return'] = array(
     'desc' => _("Return to the mailbox listing after deleting, moving, or copying a message?")
 );
 
+// What should we do with spam messages after reporting them?
+$_prefs['delete_spam_after_report'] = array(
+    'value' => 0,
+    'type' => 'enum',
+    'enum' => array(
+        0 => _("Nothing"),
+        1 => _("Delete message"),
+        2 => _("Move to spam folder")
+    ),
+    'desc' => _("What should we do with spam messages after they have been reported as spam?"),
+    'help' => 'prefs-delete_spam_after_report'
+);
+
+// What should we do with spam messages after reporting them as innocent?
+$_prefs['move_ham_after_report'] = array(
+    'value' => 0,
+    'type' => 'enum',
+    'enum' => array(
+        0 => _("Nothing"),
+        1 => _("Move to Inbox")
+    ),
+    'desc' => _("What should we do with spam messages after they have been reported as innocent?"),
+    'help' => 'prefs-move_ham_after_report'
+);
+
 // should we move messages to a trash folder instead of just marking
 // them as deleted?
 $_prefs['use_trash'] = array(