2006-07-09 [colin] 2.3.1cvs77
authorColin Leroy <colin@colino.net>
Sun, 9 Jul 2006 08:39:54 +0000 (08:39 +0000)
committerColin Leroy <colin@colino.net>
Sun, 9 Jul 2006 08:39:54 +0000 (08:39 +0000)
* src/compose.c
Save FMID in drafts too

ChangeLog
PATCHSETS
configure.ac
src/compose.c

index 7b53379708793e77b053d90ca65f48efa81e97c7..638496f911ec16e21c42c0a8b10737a9fec78443 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-07-09 [colin]     2.3.1cvs77
+
+       * src/compose.c
+               Save FMID in drafts too
+
 2006-07-08 [colin]     2.3.1cvs76
 
        * src/compose.c
 2006-07-08 [colin]     2.3.1cvs76
 
        * src/compose.c
index 3ca0138c1e91336d9d424a0c2e77ad43710e3535..87981ad47cecdc0f81d5fa4e89de6e242539a0f9 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.115.2.94 -r 1.115.2.95 src/main.c;  ) > 2.3.1cvs74.patchset
 ( cvs diff -u -r 1.96.2.125 -r 1.96.2.126 src/textview.c;  ) > 2.3.1cvs75.patchset
 ( cvs diff -u -r 1.382.2.293 -r 1.382.2.294 src/compose.c;  cvs diff -u -r 1.12.2.27 -r 1.12.2.28 src/prefs_template.c;  cvs diff -u -r 1.5.12.4 -r 1.5.12.5 src/quote_fmt.h;  cvs diff -u -r 1.22.2.22 -r 1.22.2.23 src/quote_fmt_parse.y;  ) > 2.3.1cvs76.patchset
 ( cvs diff -u -r 1.115.2.94 -r 1.115.2.95 src/main.c;  ) > 2.3.1cvs74.patchset
 ( cvs diff -u -r 1.96.2.125 -r 1.96.2.126 src/textview.c;  ) > 2.3.1cvs75.patchset
 ( cvs diff -u -r 1.382.2.293 -r 1.382.2.294 src/compose.c;  cvs diff -u -r 1.12.2.27 -r 1.12.2.28 src/prefs_template.c;  cvs diff -u -r 1.5.12.4 -r 1.5.12.5 src/quote_fmt.h;  cvs diff -u -r 1.22.2.22 -r 1.22.2.23 src/quote_fmt_parse.y;  ) > 2.3.1cvs76.patchset
+( cvs diff -u -r 1.382.2.294 -r 1.382.2.295 src/compose.c;  ) > 2.3.1cvs77.patchset
index 91587172a44744d5e5e235334b56ad715a7064d5..f599e65ffb0049e33666978a72be6642f6401c35 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=3
 MICRO_VERSION=1
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=1
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=76
+EXTRA_VERSION=77
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 326a0acb35cd17363a07efc1a53fbc189735ef25..0fb679ca70507e979455a2997ab930053ccfafd0 100644 (file)
@@ -7625,6 +7625,14 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                fprintf(fp, "RMID:%s\t%d\t%s\n", folderid, compose->replyinfo->msgnum, compose->replyinfo->msgid);
                g_free(folderid);
        }
                fprintf(fp, "RMID:%s\t%d\t%s\n", folderid, compose->replyinfo->msgnum, compose->replyinfo->msgid);
                g_free(folderid);
        }
+       /* Message-ID of message forwarding to */
+       if ((compose->fwdinfo != NULL) && (compose->fwdinfo->msgid != NULL)) {
+               gchar *folderid;
+               
+               folderid = folder_item_get_identifier(compose->fwdinfo->folder);
+               fprintf(fp, "FMID:%s\t%d\t%s\n", folderid, compose->fwdinfo->msgnum, compose->fwdinfo->msgid);
+               g_free(folderid);
+       }
 
        /* end of headers */
        fprintf(fp, "X-Sylpheed-End-Special-Headers: 1\n");
 
        /* end of headers */
        fprintf(fp, "X-Sylpheed-End-Special-Headers: 1\n");