From e2333fc944f7712b79286e72354ed0259545cb2d Mon Sep 17 00:00:00 2001 From: Not Zed Date: Fri, 2 Apr 2004 07:32:08 +0000 Subject: ** See bug #56338. 2004-04-02 Not Zed ** See bug #56338. * em-format-html.c (emfh_gethttp): fix the fugly "load http if" that doesn't work to be a fugly "load http if" that does work. (efh_format_timeout): dont set load_http_now here, its only an override now. svn path=/trunk/; revision=25296 --- mail/ChangeLog | 9 +++++++++ mail/em-format-html.c | 12 ++++++------ 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index e99fd3427b..51fe50a9bd 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,12 @@ +2004-04-02 Not Zed + + ** See bug #56338. + + * em-format-html.c (emfh_gethttp): fix the fugly "load http if" + that doesn't work to be a fugly "load http if" that does work. + (efh_format_timeout): dont set load_http_now here, its only an + override now. + 2004-04-01 Jeffrey Stedfast * em-migrate.c (cp_r): Report progress. "Fixes" bug #56355. diff --git a/mail/em-format-html.c b/mail/em-format-html.c index b6806e07fe..bdc981ed67 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -441,10 +441,12 @@ static void emfh_gethttp(struct _EMFormatHTMLJob *job, int cancelled) if (instream == NULL) { char *proxy; - if ((job->format->load_http != MAIL_CONFIG_HTTP_ALWAYS && !job->format->load_http_now) - || job->format->load_http == MAIL_CONFIG_HTTP_NEVER - || (job->format->load_http == MAIL_CONFIG_HTTP_SOMETIMES - && !em_utils_in_addressbook(camel_mime_message_get_from(job->format->format.message)))) { + printf(" load http %d now=%d\n", job->format->load_http, job->format->load_http_now); + + if (!(job->format->load_http_now + || job->format->load_http == MAIL_CONFIG_HTTP_ALWAYS + || (job->format->load_http == MAIL_CONFIG_HTTP_SOMETIMES + && em_utils_in_addressbook(camel_mime_message_get_from(job->format->format.message))))) { /* TODO: Ideally we would put the http requests into another queue and only send them out if the user selects 'load images', when they do. The problem is how to maintain this state with multiple renderings, and how to adjust the thread dispatch/setup routine to handle it */ @@ -1314,8 +1316,6 @@ efh_format_timeout(struct _format_msg *m) p->text_inline_parts = g_hash_table_new(NULL, NULL); p->last_part = m->message; - /* FIXME: Need to handle 'load if sender in addressbook' case too */ - efh->load_http_now = efh->load_http; } efh->priv->format_id = m->msg.seq; -- cgit v1.2.3