name was empty.
* src/prefs_account.c: prefs_account_apply(): display error dialog
if account name is empty.
+ * src/imap.c: changed some log_print() to debug_print() to reduce
+ the amount of log.
2002-04-21
+2002-04-21 [paul] 0.7.4claws87
+
+ * sync with 0.7.4cvs52
+ see ChangeLog entry 2002-04-21 (src/imap.c)
+
2002-04-21 [paul] 0.7.4claws86
* sync with 0.7.4cvs51
¥¯¥é¥Ã¥·¥å¥Ð¥°¤ò½¤Àµ¡£
* src/prefs_account.c: prefs_account_apply(): ¥¢¥«¥¦¥ó¥È̾¤¬¶õ¤Î¾ì¹ç
¥¨¥é¡¼¥À¥¤¥¢¥í¥°¤òɽ¼¨¡£
+ * src/imap.c: ¥í¥°¤ÎÎ̤ò¸º¤é¤¹¤¿¤á¤Ë¤¤¤¯¤Ä¤«¤Î log_print() ¤ò
+ debug_print() ¤ËÊѹ¹¡£
2002-04-21
Changes of Sylpheed
+* 0.7.5
+
+ * The license has been modified so that it will be compatible with
+ OpenSSL.
+ * Sent / Drafts / Queue folder on IMAP4 has been enabled.
+ * The internationalization of IMAP4 folder name has been implemented.
+ * IMAP4 folder renaming has been implemented.
+ * Some critical bugs in IMAP4 response parser have been fixed.
+ * Non-default mailboxes are now specifiable for inbox, sent, draft,
+ trash folder and the destination of filtering, using folder identifier.
+ * Folder property dialog has been implemented.
+ * Special folders can be specified from the folder property dialog.
+ * 'Outbox' has been changed to 'Sent'.
+ * Queued messages are now saved to Sent folder after they are actually
+ sent.
+ * The auto line-wrapping has been improved.
+ * 'Reply to sender' now works for newsgroups.
+ * The SMTP server response is now referred on SMTP AUTH.
+ * Templates can be inserted into the current cursor position now.
+ * Confirmation dialog is displayed on sending if subject is empty.
+ * Displayed newsgroup names are now abbreviated.
+ * The timeout of DNS lookup has been implemented.
+ * 'Ctrl-Enter' shortcut now works even if Num Lock is on.
+ * New message checking on IMAP or news server will be aborted immediately
+ if some errors occurred.
+ * Some menu items have been modified.
+ * Some other bugfixes have been made.
+
* 0.7.4
* The bug that lost UIDL information if any error occured before issuing
MICRO_VERSION=4
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=claws86
+EXTRA_VERSION=claws87
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target
return newlist;
}
strretchomp(tmp);
- log_print("IMAP4< %s\n", tmp);
if (tmp[0] != '*' || tmp[1] != ' ') {
+ log_print("IMAP4< %s\n", tmp);
g_free(tmp);
break;
}
if (strstr(tmp, "FETCH") == NULL) {
+ log_print("IMAP4< %s\n", tmp);
g_free(tmp);
continue;
}
+ /* log_print("IMAP4< %s\n", tmp); */
+ debug_print("IMAP4< %s\n", tmp);
g_string_assign(str, tmp);
g_free(tmp);
g_string_assign(str, nextline);
cur_pos = str->str;
strretchomp(nextline);
- log_print("IMAP4< %s\n", nextline);
+ /* log_print("IMAP4< %s\n", nextline); */
+ debug_print("IMAP4< %s\n", nextline);
g_free(nextline);
while (isspace(*cur_pos)) cur_pos++;
g_string_append(str, nextline);
cur_pos = str->str;
strretchomp(nextline);
- log_print("IMAP4< %s\n", nextline);
+ /* log_print("IMAP4< %s\n", nextline); */
+ debug_print("IMAP4< %s\n", nextline);
g_free(nextline);
} while (line_len < len);