+2002-06-07
+
+ * src/folder.c: folder_set_missing_folders(): fixed a bug that
+ caused multiplication of special folders on startup if their
+ types were changed.
+ * src/folderview.c: folderview_remove_mailbox_cb(): modified the
+ label.
+
2002-06-04
* src/compose.c: compose_reply(), compose_forward(): reverted the
+2002-06-08 [paul] 0.7.6claws32
+
+ * sync with 0.7.6cvs25
+ see ChangeLog 2002-06-07
+
2002-06-05 [paul] 0.7.6claws31
* src/mainwindow.c
+2002-06-07
+
+ * src/folder.c: folder_set_missing_folders(): ÆÃÊÌ¥Õ¥©¥ë¥À¤Î¥¿¥¤¥×
+ ¤¬Êѹ¹¤µ¤ì¤¿¾ì¹ç¡¢µ¯Æ°»þ¤Ë¤½¤ì¤é¤¬Áý¿£¤¹¤ë¥Ð¥°¤ò½¤Àµ¡£
+ * src/folderview.c: folderview_remove_mailbox_cb(): ¥é¥Ù¥ë¤ò½¤Àµ¡£
+
2002-06-04
* src/compose.c: compose_reply(), compose_forward(): lockup ¤òµ¯¤³¤¹
Changes of Sylpheed
+* 0.7.7
+
+ * The 'Redirect' (aka Bounce) feature has been implemented.
+ * IMAP4 / POP3 STARTTLS command has been enabled.
+ * NNTP over SSL has been enabled.
+ * The sorting order of the summary view became persistent.
+ * The 'Expand / Collapse all threads' feature have been added.
+ * The sorting order of the folder tree became case insensitive.
+ * The common / account preferences button has been removed from the
+ toolbar.
+ * Some fixes and improvements for MIME view have been made.
+ * The behavior of 'Folder tree' and 'Message view' toggle menu have been
+ fixed.
+ * The behavior of address completion has been fixed.
+ * A bug in the header MIME encoding routine on Japanese locale has been
+ fixed.
+ * Some other bugfixes have been made.
+
+* 0.7.6
+
+ * The manual and FAQ have been updated, and German and Italian FAQ have
+ been added.
+ * IMAP shared folder has been supported.
+ * 'Create filter rule' has been added to the context menu.
+ * Only newsgroup names longer than specified length are abbreviated.
+ * 'Get all' doesn't check for new messages on IMAP or News account by
+ default.
+ * Minor improvements to the folder property dialog have been made.
+ * Special characters like parentheses can be used in password for IMAP
+ accounts now.
+ * Some crash bugs and other minor bugs have been fixed.
+
* 0.7.5
* The license has been modified so that it will be compatible with
MICRO_VERSION=6
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=claws31
+EXTRA_VERSION=claws32
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target
}
CREATE_FOLDER_IF_NOT_EXIST(inbox, INBOX_DIR, F_INBOX);
- CREATE_FOLDER_IF_NOT_EXIST(outbox, OUTBOX_DIR, F_INBOX);
- CREATE_FOLDER_IF_NOT_EXIST(draft, DRAFT_DIR, F_INBOX);
- CREATE_FOLDER_IF_NOT_EXIST(queue, QUEUE_DIR, F_INBOX);
- CREATE_FOLDER_IF_NOT_EXIST(trash, TRASH_DIR, F_INBOX);
+ CREATE_FOLDER_IF_NOT_EXIST(outbox, OUTBOX_DIR, F_OUTBOX);
+ CREATE_FOLDER_IF_NOT_EXIST(draft, DRAFT_DIR, F_DRAFT);
+ CREATE_FOLDER_IF_NOT_EXIST(queue, QUEUE_DIR, F_QUEUE);
+ CREATE_FOLDER_IF_NOT_EXIST(trash, TRASH_DIR, F_TRASH);
}
-
}
#undef CREATE_FOLDER_IF_NOT_EXIST
message = g_strdup_printf
(_("Really remove the mailbox `%s' ?\n"
"(The messages are NOT deleted from the disk)"), name);
- avalue = alertpanel(_("Remove folder"), message,
+ avalue = alertpanel(_("Remove mailbox"), message,
_("Yes"), _("+No"), NULL);
g_free(message);
if (avalue != G_ALERTDEFAULT) return;