sync with 0.8.11cvs22
authorPaul Mangan <paul@claws-mail.org>
Mon, 14 Apr 2003 09:28:39 +0000 (09:28 +0000)
committerPaul Mangan <paul@claws-mail.org>
Mon, 14 Apr 2003 09:28:39 +0000 (09:28 +0000)
ChangeLog
ChangeLog.claws
ChangeLog.jp
configure.ac
src/compose.c
src/imap.c
src/pop.c

index d34dc6a842ffe295c77dce9aa6de48de57514f5b..bffd45e6c013962a6a9c6e7a01c9a2ff7606ae68 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-04-14
+
+       * src/compose.c: compose_parse_header(): fixed a bug that unnecessary
+         linebreaks were included on reediting.
+       * src/imap.c
+         src/pop.c: fixed typos: 'occured'.
+
 2003-04-11
 
        * src/compose.[ch]: implemented auto signature replacement on
 2003-04-11
 
        * src/compose.[ch]: implemented auto signature replacement on
index 155942c5c33a1ed8ebdc35df0d1a8ff2aaead78f..7ee2ace6624e2177bf3db5f55df414aee9e1b267 100644 (file)
@@ -1,3 +1,8 @@
+2003-04-14 [paul]      0.8.11claws89
+
+       * sync with 0.8.11cvs22
+               see ChangeLog 2003-04-14
+
 2003-04-13 [paul]      0.8.11claws88
 
        * src/plugins/clamav/clamav_plugin.c
 2003-04-13 [paul]      0.8.11claws88
 
        * src/plugins/clamav/clamav_plugin.c
index 31710acb81b592a68b8268fd6f6e90c442fcaf21..631de6ca7773ade0724e45a29db2d6e5b251c031 100644 (file)
@@ -1,3 +1,10 @@
+2003-04-14
+
+       * src/compose.c: compose_parse_header(): ºÆÊÔ½¸»þ¤ËÉÔÍפʲþ¹Ô¤¬´Þ¤Þ
+         ¤ì¤ë¥Ð¥°¤ò½¤Àµ¡£
+       * src/imap.c
+         src/pop.c: 'occured' ¤È¤¤¤¦ typo ¤ò½¤Àµ¡£
+
 2003-04-11
 
        * src/compose.[ch]: ¥¢¥«¥¦¥ó¥ÈÊѹ¹»þ¤Î¼«Æ°½ð̾ÀÚ¤êÂؤ¨¤ò¼ÂÁõ¡£
 2003-04-11
 
        * src/compose.[ch]: ¥¢¥«¥¦¥ó¥ÈÊѹ¹»þ¤Î¼«Æ°½ð̾ÀÚ¤êÂؤ¨¤ò¼ÂÁõ¡£
index bea699c86d4cf852f0aa13b028de04b2f761e200..9ee455b3300b0011364897ca05cc424b938718e6 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=11
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=11
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws88
+EXTRA_VERSION=claws89
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 2b0b668402c923b6dd7b99745b15bf700ab21327..fabcffa09cf8a48ecd287a71fec0cbd81a78d2e9 100644 (file)
@@ -1490,11 +1490,11 @@ static void compose_entries_set(Compose *compose, const gchar *mailto)
 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
 {
        static HeaderEntry hentry[] = {{"Reply-To:",    NULL, TRUE},
 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
 {
        static HeaderEntry hentry[] = {{"Reply-To:",    NULL, TRUE},
-                                      {"Cc:",          NULL, FALSE},
+                                      {"Cc:",          NULL, TRUE},
                                       {"References:",  NULL, FALSE},
                                       {"References:",  NULL, FALSE},
-                                      {"Bcc:",         NULL, FALSE},
-                                      {"Newsgroups:",  NULL, FALSE},
-                                      {"Followup-To:", NULL, FALSE},
+                                      {"Bcc:",         NULL, TRUE},
+                                      {"Newsgroups:",  NULL, TRUE},
+                                      {"Followup-To:", NULL, TRUE},
                                       {"List-Post:",   NULL, FALSE},
                                       {"X-Priority:",  NULL, FALSE},
                                       {NULL,           NULL, FALSE}};
                                       {"List-Post:",   NULL, FALSE},
                                       {"X-Priority:",  NULL, FALSE},
                                       {NULL,           NULL, FALSE}};
index 255399d6d570389f7828aa0a2f531153d97887e3..ac720e433bfa1bf2a6055ba44ea7491b92adff18 100644 (file)
@@ -1045,7 +1045,7 @@ static GSList *imap_parse_list(Folder *folder, IMAPSession *session,
 
        for (;;) {
                if (sock_gets(SESSION(session)->sock, buf, sizeof(buf)) <= 0) {
 
        for (;;) {
                if (sock_gets(SESSION(session)->sock, buf, sizeof(buf)) <= 0) {
-                       log_warning(_("error occured while getting LIST.\n"));
+                       log_warning(_("error occurred while getting LIST.\n"));
                        break;
                }
                strretchomp(buf);
                        break;
                }
                strretchomp(buf);
index 2fb7e9c60c209759433ebfa49fc58a7b8655a2c5..c55448b301db90445affc573d9f3c5b4a4eaf410 100644 (file)
--- a/src/pop.c
+++ b/src/pop.c
@@ -645,7 +645,7 @@ static Pop3ErrorValue pop3_ok(Pop3Session *session, const gchar *msg)
                                ok = PS_AUTHFAIL;
                                break;
                        default:
                                ok = PS_AUTHFAIL;
                                break;
                        default:
-                               log_warning(_("error occured on POP3 session\n"));
+                               log_warning(_("error occurred on POP3 session\n"));
                                ok = PS_ERROR;
                        }
                }
                                ok = PS_ERROR;
                        }
                }