Select the types of activity you want to include in your feed.
Pull config.h out of protos.h, add to top of every IMAP C file. This should
probably be done to every C file, but the results need testing in case
some files depend on the current (broken) includes.
···19192020/* Mutt browser support routines */
21212222+#ifdef HAVE_CONFIG_H
2323+# include "config.h"
2424+#endif
2525+2226#include <stdlib.h>
2327#include <ctype.h>
2428
+4
imap/command.c
···2121/* command.c: routines for sending commands to an IMAP server and parsing
2222 * responses */
23232424+#ifdef HAVE_CONFIG_H
2525+# include "config.h"
2626+#endif
2727+2428#include "mutt.h"
2529#include "imap_private.h"
2630#include "message.h"
+4
imap/imap.c
···20202121/* Support for IMAP4rev1, with the occasional nod to IMAP 4. */
22222323+#ifdef HAVE_CONFIG_H
2424+# include "config.h"
2525+#endif
2626+2327#include "mutt.h"
2428#include "mutt_curses.h"
2529#include "mx.h"