X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pop%2Fpop.c;h=a8c26162712a9121e348df4f58e200c8c416660f;hp=9eb61725781317d54ee9286c29dc05b9486e5d87;hb=108f3c7ab59844591f7540347914ea57be5245e2;hpb=cc917eda58cb573cd3f56337dfe088a94e23649c diff --git a/pop/pop.c b/pop/pop.c index 9eb6172..a8c2616 100644 --- a/pop/pop.c +++ b/pop/pop.c @@ -11,13 +11,21 @@ # include "config.h" #endif +#include +#include + +#include +#include +#include +#include +#include + +#include + #include "mutt.h" #include "mx.h" #include "pop.h" -#include "mutt_crypt.h" - -#include -#include +#include /* write line to file */ static int fetch_message (char *line, void *file) @@ -39,7 +47,7 @@ static int fetch_message (char *line, void *file) * -2 - invalid command or execution error, * -3 - error writing to tempfile */ -static int pop_read_header (POP_DATA * pop_data, HEADER * h) +static pop_query_status pop_read_header (POP_DATA * pop_data, HEADER * h) { FILE *f; int index; @@ -51,10 +59,10 @@ static int pop_read_header (POP_DATA * pop_data, HEADER * h) mutt_mktemp (tempfile); if (!(f = safe_fopen (tempfile, "w+"))) { mutt_perror (tempfile); - return -3; + return PFD_FUNCT_ERROR; } - snprintf (buf, sizeof (buf), "LIST %d\r\n", h->refno); + snprintf (buf, sizeof (buf), "string_list_t %d\r\n", h->refno); ret = pop_query (pop_data, buf, sizeof (buf)); if (ret == PQ_OK) { sscanf (buf, "+OK %d %ld", &index, &length); @@ -62,17 +70,17 @@ static int pop_read_header (POP_DATA * pop_data, HEADER * h) snprintf (buf, sizeof (buf), "TOP %d 0\r\n", h->refno); ret = pop_fetch_data (pop_data, buf, NULL, fetch_message, f); - if (pop_data->cmd_top == 2) { + if (pop_data->cmd_top == CMD_UNKNOWN) { if (ret == PQ_OK) { - pop_data->cmd_top = 1; + pop_data->cmd_top = CMD_AVAILABLE; - dprint (1, (debugfile, "pop_read_header: set TOP capability\n")); + debug_print (1, ("set TOP capability\n")); } if (ret == PQ_ERR) { - pop_data->cmd_top = 0; + pop_data->cmd_top = CMD_NOT_AVAILABLE; - dprint (1, (debugfile, "pop_read_header: unset TOP capability\n")); + debug_print (1, ("unset TOP capability\n")); snprintf (pop_data->err_msg, sizeof (pop_data->err_msg), _("Command TOP is not supported by server.")); } @@ -101,6 +109,11 @@ static int pop_read_header (POP_DATA * pop_data, HEADER * h) { mutt_error _("Can't write header to temporary file!"); + break; + } + case PQ_NOT_CONNECTED: + { + mutt_error _("Can't fetch header: Not connected!"); break; } } @@ -119,20 +132,18 @@ static int fetch_uidl (char *line, void *data) sscanf (line, "%d %s", &index, line); for (i = 0; i < ctx->msgcount; i++) - if (!mutt_strcmp (line, ctx->hdrs[i]->data)) + if (!m_strcmp(line, ctx->hdrs[i]->data)) break; if (i == ctx->msgcount) { - dprint (1, - (debugfile, "pop_fetch_headers: new header %d %s\n", index, - line)); + debug_print (1, ("new header %d %s\n", index, line)); if (i >= ctx->hdrmax) mx_alloc_memory (ctx); ctx->msgcount++; - ctx->hdrs[i] = mutt_new_header (); - ctx->hdrs[i]->data = safe_strdup (line); + ctx->hdrs[i] = header_new(); + ctx->hdrs[i]->data = m_strdup(line); } else if (ctx->hdrs[i]->index != index - 1) pop_data->clear_cache = 1; @@ -168,17 +179,17 @@ static int pop_fetch_headers (CONTEXT * ctx) new_count = ctx->msgcount; ctx->msgcount = old_count; - if (pop_data->cmd_uidl == 2) { + if (pop_data->cmd_uidl == CMD_UNKNOWN) { if (ret == PQ_OK) { - pop_data->cmd_uidl = 1; + pop_data->cmd_uidl = CMD_AVAILABLE; - dprint (1, (debugfile, "pop_fetch_headers: set UIDL capability\n")); + debug_print (1, ("set UIDL capability\n")); } - if (ret == PQ_ERR && pop_data->cmd_uidl == 2) { - pop_data->cmd_uidl = 0; + if (ret == PQ_ERR && pop_data->cmd_uidl == CMD_UNKNOWN) { + pop_data->cmd_uidl = CMD_NOT_AVAILABLE; - dprint (1, (debugfile, "pop_fetch_headers: unset UIDL capability\n")); + debug_print (1, ("unset UIDL capability\n")); snprintf (pop_data->err_msg, sizeof (pop_data->err_msg), _("Command UIDL is not supported by server.")); } @@ -206,7 +217,7 @@ static int pop_fetch_headers (CONTEXT * ctx) if (ret != PQ_OK) { for (i = ctx->msgcount; i < new_count; i++) - mutt_free_header (&ctx->hdrs[i]); + header_delete(&ctx->hdrs[i]); return ret; } @@ -237,10 +248,10 @@ int pop_open_mailbox (CONTEXT * ctx) if (!conn) return -1; - FREE (&ctx->path); - ctx->path = safe_strdup (buf); + p_delete(&ctx->path); + ctx->path = m_strdup(buf); - pop_data = safe_calloc (1, sizeof (POP_DATA)); + pop_data = p_new(POP_DATA, 1); pop_data->conn = conn; ctx->data = pop_data; @@ -249,7 +260,7 @@ int pop_open_mailbox (CONTEXT * ctx) conn->data = pop_data; - FOREVER { + for (;;) { if (pop_reconnect (ctx) != PQ_OK) return -1; @@ -277,12 +288,12 @@ static void pop_clear_cache (POP_DATA * pop_data) if (!pop_data->clear_cache) return; - dprint (1, (debugfile, "pop_clear_cache: delete cached messages\n")); + debug_print (1, ("delete cached messages\n")); for (i = 0; i < POP_CACHE_LEN; i++) { if (pop_data->cache[i].path) { unlink (pop_data->cache[i].path); - FREE (&pop_data->cache[i].path); + p_delete(&pop_data->cache[i].path); } } } @@ -318,7 +329,7 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno) void *uidl; char buf[LONG_STRING]; char path[_POSIX_PATH_MAX]; - char *m = _("Fetching message..."); + progress_t bar; POP_DATA *pop_data = (POP_DATA *) ctx->data; POP_CACHE *cache; HEADER *h = ctx->hdrs[msgno]; @@ -340,11 +351,11 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno) else { /* clear the previous entry */ unlink (cache->path); - FREE (&cache->path); + p_delete(&cache->path); } } - FOREVER { + for (;;) { if (pop_reconnect (ctx) != PQ_OK) return -1; @@ -356,7 +367,9 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno) return -1; } - mutt_message (m); + bar.size = h->content->length + h->content->offset - 1; + bar.msg = _("Fetching message..."); + mutt_progress_bar (&bar, 0); mutt_mktemp (path); msg->fp = safe_fopen (path, "w+"); @@ -368,7 +381,7 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno) snprintf (buf, sizeof (buf), "RETR %d\r\n", h->refno); - ret = pop_fetch_data (pop_data, buf, m, fetch_message, msg->fp); + ret = pop_fetch_data (pop_data, buf, &bar, fetch_message, msg->fp); if (ret == PQ_OK) break; @@ -393,10 +406,10 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno) * portion of the headers, those required for the main display. */ cache->index = h->index; - cache->path = safe_strdup (path); + cache->path = m_strdup(path); rewind (msg->fp); uidl = h->data; - mutt_free_envelope (&h->env); + envelope_delete(&h->env); h->env = mutt_read_rfc822_header (msg->fp, h, 0, 0); h->data = uidl; h->lines = 0; @@ -406,11 +419,10 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno) fgets (buf, sizeof (buf), msg->fp); } - h->content->length = ftell (msg->fp) - h->content->offset; + h->content->length = ftello (msg->fp) - h->content->offset; /* This needs to be done in case this is a multipart message */ - if (!WithCrypto) - h->security = crypt_query (h->content); + h->security = crypt_query (h->content); mutt_clear_error (); rewind (msg->fp); @@ -419,7 +431,7 @@ int pop_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno) } /* update POP mailbox - delete messages from server */ -pop_query_status pop_sync_mailbox (CONTEXT * ctx, int *index_hint) +pop_query_status pop_sync_mailbox (CONTEXT * ctx, int unused, int *index_hint) { int i; pop_query_status ret; @@ -428,7 +440,7 @@ pop_query_status pop_sync_mailbox (CONTEXT * ctx, int *index_hint) pop_data->check_time = 0; - FOREVER { + for (;;) { if (pop_reconnect (ctx) != PQ_OK) return PQ_NOT_CONNECTED; @@ -442,7 +454,7 @@ pop_query_status pop_sync_mailbox (CONTEXT * ctx, int *index_hint) } if (ret == PQ_OK) { - strfcpy (buf, "QUIT\r\n", sizeof (buf)); + m_strcpy(buf, sizeof(buf), "QUIT\r\n"); ret = pop_query (pop_data, buf, sizeof (buf)); } @@ -462,7 +474,7 @@ pop_query_status pop_sync_mailbox (CONTEXT * ctx, int *index_hint) } /* Check for new messages and fetch headers */ -int pop_check_mailbox (CONTEXT * ctx, int *index_hint) +int pop_check_mailbox (CONTEXT * ctx, int *index_hint, int unused) { int ret; POP_DATA *pop_data = (POP_DATA *) ctx->data; @@ -513,7 +525,7 @@ void pop_fetch_mail (void) return; } - url = p = safe_calloc (strlen (PopHost) + 7, sizeof (char)); + url = p = p_new(char, strlen (PopHost) + 7); if (url_check_scheme (PopHost) == U_UNKNOWN) { strcpy (url, "pop://"); /* __STRCPY_CHECKED__ */ p = strchr (url, '\0'); @@ -521,7 +533,7 @@ void pop_fetch_mail (void) strcpy (p, PopHost); /* __STRCPY_CHECKED__ */ ret = pop_parse_path (url, &acct); - FREE (&url); + p_delete(&url); if (ret) { mutt_error (_("%s is an invalid POP path"), PopHost); return; @@ -531,12 +543,12 @@ void pop_fetch_mail (void) if (!conn) return; - pop_data = safe_calloc (1, sizeof (POP_DATA)); + pop_data = p_new(POP_DATA, 1); pop_data->conn = conn; if (pop_open_connection (pop_data) < 0) { mutt_socket_free (pop_data->conn); - FREE (&pop_data); + p_delete(&pop_data); return; } @@ -545,7 +557,7 @@ void pop_fetch_mail (void) mutt_message _("Checking for new messages..."); /* find out how many messages are in the mailbox. */ - strfcpy (buffer, "STAT\r\n", sizeof (buffer)); + m_strcpy(buffer, sizeof(buffer), "STAT\r\n"); ret = pop_query (pop_data, buffer, sizeof (buffer)); if (ret == PQ_NOT_CONNECTED) goto fail; @@ -558,7 +570,7 @@ void pop_fetch_mail (void) /* only get unread messages */ if (msgs > 0 && option (OPTPOPLAST)) { - strfcpy (buffer, "LAST\r\n", sizeof (buffer)); + m_strcpy(buffer, sizeof(buffer), "LAST\r\n"); ret = pop_query (pop_data, buffer, sizeof (buffer)); if (ret == PQ_NOT_CONNECTED) goto fail; @@ -627,22 +639,22 @@ void pop_fetch_mail (void) if (rset) { /* make sure no messages get deleted */ - strfcpy (buffer, "RSET\r\n", sizeof (buffer)); + m_strcpy(buffer, sizeof(buffer), "RSET\r\n"); if (pop_query (pop_data, buffer, sizeof (buffer)) == PQ_NOT_CONNECTED) goto fail; } finish: /* exit gracefully */ - strfcpy (buffer, "QUIT\r\n", sizeof (buffer)); + m_strcpy(buffer, sizeof(buffer), "QUIT\r\n"); if (pop_query (pop_data, buffer, sizeof (buffer)) == PQ_NOT_CONNECTED) goto fail; mutt_socket_close (conn); - FREE (&pop_data); + p_delete(&pop_data); return; fail: mutt_error _("Server closed connection!"); mutt_socket_close (conn); - FREE (&pop_data); + p_delete(&pop_data); }