[Dovecot] PC-Pine "Junk in end of group"
I am running PC-Pine under Windows XP, connecting via SSL to a Dovecot IMAP server (0.99.10-2 under Debian woody). When I open a mail folder (mbox format) in Pine I get the following non-fatal error:
[Junk in end of group: pn=undisclosed-recipients al= dn=]
A similar error was reported to comp.mail.pine as happening with a Lotus Domino server. Mark Crispin explained it as a server-side bug:
Is this something that can be easily fixed?
Paul
On Tuesday, Sep 9, 2003, at 21:02 Europe/Helsinki, Paul Adams wrote:
I am running PC-Pine under Windows XP, connecting via SSL to a Dovecot IMAP server (0.99.10-2 under Debian woody). When I open a mail folder (mbox format) in Pine I get the following non-fatal error:
[Junk in end of group: pn=undisclosed-recipients al= dn=]
I think this patch fixes it: diff -u -r1.6 message-address.c --- src/lib-mail/message-address.c 17 Jul 2003 14:50:45 -0000 1.6 +++ src/lib-mail/message-address.c 9 Sep 2003 18:51:52 -0000 @@ -196,7 +196,7 @@ /* beginning of group */ addr = new_address(pool, &next_addr); max_addresses--; - addr->name = p_strdup(pool, str_c(mailbox)); + addr->mailbox = p_strdup(pool, str_c(mailbox)); str_truncate(mailbox, 0); str_truncate(comment, 0);
Timo, thanks - I applied the patch and recompiled, but I am still getting the same error, under the same circumstances. Paul On September 9, at 9:52pm, Timo Sirainen wrote:
On Tuesday, Sep 9, 2003, at 21:02 Europe/Helsinki, Paul Adams wrote:
I am running PC-Pine under Windows XP, connecting via SSL to a Dovecot IMAP server (0.99.10-2 under Debian woody). When I open a mail folder (mbox format) in Pine I get the following non-fatal error:
[Junk in end of group: pn=undisclosed-recipients al= dn=]
I think this patch fixes it:
diff -u -r1.6 message-address.c --- src/lib-mail/message-address.c 17 Jul 2003 14:50:45 -0000 1.6 +++ src/lib-mail/message-address.c 9 Sep 2003 18:51:52 -0000 @@ -196,7 +196,7 @@ /* beginning of group */ addr = new_address(pool, &next_addr); max_addresses--; - addr->name = p_strdup(pool, str_c(mailbox)); + addr->mailbox = p_strdup(pool, str_c(mailbox));
str_truncate(mailbox, 0); str_truncate(comment, 0);
participants (3)
-
Paul
-
Paul Adams
-
Timo Sirainen