X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fimap.c;h=6a84d948a437e71d9f1be0762e79a88e472d7728;hp=a17cb8ff69b3f6a60f01446d4b284425853487f4;hb=2fea7732a573b94a4d5dcf7e641ef067472e9cab;hpb=07ccefd6c97ddd433d8432f7b4596a5572e09b48 diff --git a/imap/imap.c b/imap/imap.c index a17cb8f..6a84d94 100644 --- a/imap/imap.c +++ b/imap/imap.c @@ -1307,7 +1307,7 @@ int imap_parse_list_response (IMAP_DATA * idata, char **name, int *noselect, return -1; s = imap_next_word (idata->cmd.buf); - if ((ascii_strncasecmp ("string_list_t", s, 4) == 0) || + if ((ascii_strncasecmp ("LIST", s, 4) == 0) || (ascii_strncasecmp ("LSUB", s, 4) == 0)) { *noselect = 0; *noinferiors = 0; @@ -1509,7 +1509,7 @@ int imap_complete (char *dest, size_t dlen, char *path) { /* fire off command */ snprintf (buf, sizeof (buf), "%s \"\" \"%s%%\"", - option (OPTIMAPLSUB) ? "LSUB" : "string_list_t", list); + option (OPTIMAPLSUB) ? "LSUB" : "LIST", list); imap_cmd_start (idata, buf); @@ -1600,7 +1600,7 @@ static int imap_open_new_message (MESSAGE * msg, { char tmp[_POSIX_PATH_MAX]; - msg->fp = m_tempfile(tmp, sizeof(tmp), NONULL(Tempdir), NULL); + msg->fp = m_tempfile(tmp, sizeof(tmp), NONULL(MCore.tmpdir), NULL); if (!msg->fp) { mutt_perror(tmp); return -1;