2006-07-09 [colin] 2.3.1cvs77
* src/compose.c Save FMID in drafts too
This commit is contained in:
parent
52a9964824
commit
83d03099f6
4 changed files with 15 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -1677,3 +1677,4 @@
|
|||
( 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
|
||||
|
|
|
@ -11,7 +11,7 @@ MINOR_VERSION=3
|
|||
MICRO_VERSION=1
|
||||
INTERFACE_AGE=0
|
||||
BINARY_AGE=0
|
||||
EXTRA_VERSION=76
|
||||
EXTRA_VERSION=77
|
||||
EXTRA_RELEASE=
|
||||
EXTRA_GTK2_VERSION=
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
/* 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");
|
||||
|
|
Loading…
Reference in a new issue