mutt stable branch with some hacks
0
fork

Configure Feed

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

This patch closes a ridiculous bug where the SASL library could be used without being initialised. I don't understand why lots of people weren't having problems, unless no one who uses SASL uses POP :)

closes 549

From Brendan Cully.

+3
+3
pop_auth.c
··· 48 48 if (!pop_data->auth_list) 49 49 return POP_A_UNAVAIL; 50 50 51 + if (mutt_sasl_start () != SASL_OK) 52 + return POP_A_FAILURE; 53 + 51 54 if (mutt_sasl_client_new (pop_data->conn, &saslconn) < 0) 52 55 { 53 56 dprint (1, (debugfile, "pop_auth_sasl: Error allocating SASL connection.\n"));