int imap_open_connection (IMAP_DATA* idata)
{
char buf[LONG_STRING];
- int rc;
if (mutt_socket_open (idata->conn) < 0)
return -1;
/* Attempt STARTTLS if available and desired. */
if (mutt_bit_isset (idata->capabilities, STARTTLS) && !idata->conn->ssf)
{
+ int rc;
+
if ((rc = query_quadoption (OPT_SSLSTARTTLS,
_("Secure connection with TLS?"))) == -1)
goto err_close_conn;
** them. If the variable is set, the message files will simply be
** deleted.
*/
- { "mh_seq_flagged", DT_STR, R_NONE, UL &MhUnseen, "flagged" },
+ { "mh_seq_flagged", DT_STR, R_NONE, UL &MhUnseen, UL "flagged" },
/*
** .pp
** The name of the MH sequence used for flagged messages.
*/
- { "mh_seq_replied", DT_STR, R_NONE, UL &MhUnseen, "replied" },
+ { "mh_seq_replied", DT_STR, R_NONE, UL &MhUnseen, UL "replied" },
/*
** .pp
** The name of the MH sequence used to tag replied messages.
*/
- { "mh_seq_unseen", DT_STR, R_NONE, UL &MhUnseen, "unseen" },
+ { "mh_seq_unseen", DT_STR, R_NONE, UL &MhUnseen, UL "unseen" },
/*
** .pp
** The name of the MH sequence used for unseen messages.