From: Alfons Hoogervorst Date: Sun, 25 Aug 2002 18:46:55 +0000 (+0000) Subject: * src/procmsg.c X-Git-Tag: rel_0_8_2~9 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=c4018cb4aea6e29fe453984d32976346e2464bd0 * src/procmsg.c fix bug that didn't send out correct headers to news server when sending news article and email from queue (bug reported and patch provided by Tim Mann; closes bug "[ 583196 ] 0.7.8claws can't post news") --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 68797bfed..5a5ce66ce 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,11 @@ +2002-08-25 [alfons] 0.8.1claws119 + + * src/procmsg.c + fix bug that didn't send out correct headers to news server + when sending news article and email from queue (bug reported + and patch provided by Tim Mann; closes bug + "[ 583196 ] 0.7.8claws can't post news") + 2002-08-25 [alfons] 0.8.1claws118 * src/selective_download.c diff --git a/configure.in b/configure.in index f7047756d..392fff4b9 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=8 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws118 +EXTRA_VERSION=claws119 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/procmsg.c b/src/procmsg.c index b85e88311..56c9411db 100644 --- a/src/procmsg.c +++ b/src/procmsg.c @@ -1245,7 +1245,6 @@ gint procmsg_send_message_queue(const gchar *file) } filepos = ftell(fp); - fseek(fp, filepos, SEEK_SET); if (to_list) { debug_print("Sending message by mail\n"); if(!from) { @@ -1296,6 +1295,7 @@ gint procmsg_send_message_queue(const gchar *file) } } + fseek(fp, filepos, SEEK_SET); if(newsgroup_list && (newsval == 0)) { Folder *folder; gchar *tmp = NULL;