* src/procmsg.c
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Sun, 25 Aug 2002 18:46:55 +0000 (18:46 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Sun, 25 Aug 2002 18:46:55 +0000 (18:46 +0000)
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")

ChangeLog.claws
configure.in
src/procmsg.c

index 68797bfed922e9d143865aced576f0195147911f..5a5ce66ce784ff3a75fc6e22d9e553c139ba2428 100644 (file)
@@ -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
index f7047756dbe1af4e7ae09c484ee864ebf1a04f0d..392fff4b941ca1a4f499eac8ada53d5ba5271ecf 100644 (file)
@@ -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
index b85e883111001e0cfa0ab88b5482359d31912487..56c9411db1d8aa171c698438ed5b529eb0c3570e 100644 (file)
@@ -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;