I'll rework the whole code to use them and not have hard-coded names anymore.
The `new' sequence will be called `beyond' sequence (`b') from now on.
The `unseen' sequence will be set by default to `u' from now on.
The sequence negation will be set by default to `!' from now on.
char *defaultfolder = "+inbox";
char *draftfolder = "+drafts";
+char *inbox = "Inbox"; /* profile entry name to specify the default folder */
+char *curfolder = "Current-Folder";
+
/* name of current message "sequence" */
char *current = "cur";
-char *inbox = "Inbox"; /* profile entry name to specify the default folder */
-char *curfolder = "Current-Folder";
+char *seq_all = "a";
+char *seq_beyond = "b"; /* the previous `new' sequence */
+char *seq_cur = "c";
+char *seq_first = "f";
+char *seq_last = "l";
+char *seq_next = "n";
+char *seq_prev = "p";
+char *seq_unseen = "u";
+char *seq_neg = "!";
+
char *usequence = "Unseen-Sequence";
char *psequence = "Previous-Sequence";
char *nsequence = "Sequence-Negation";
extern char *rmmproc;
extern char *sendmail;
extern char *sendproc;
+extern char *seq_all;
+extern char *seq_beyond;
+extern char *seq_cur;
+extern char *seq_first;
+extern char *seq_last;
+extern char *seq_next;
+extern char *seq_prev;
+extern char *seq_unseen;
+extern char *seq_neg;
extern char *showmimeproc;
extern char *showproc;
extern char *usequence;