mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Ignore NULL/empty lines in rc parser, fixes mutt -e '' crashing

+3
+3
init.c
··· 2348 2348 int i, r = -1; 2349 2349 BUFFER expn; 2350 2350 2351 + if (!line || !*line) 2352 + return 0; 2353 + 2351 2354 memset (&expn, 0, sizeof (expn)); 2352 2355 expn.data = expn.dptr = line; 2353 2356 expn.dsize = mutt_strlen (line);