changeset 3733:74b27d1e17a4 HEAD

Make pop3_reuse_xuidl setting actually work. Patch by grant beattie.
author Timo Sirainen <tss@iki.fi>
date Tue, 06 Dec 2005 19:34:45 +0200
parents bdeac77a4127
children b1fa09b19b86
files src/pop3/commands.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/pop3/commands.c	Tue Dec 06 18:58:01 2005 +0200
+++ b/src/pop3/commands.c	Tue Dec 06 19:34:45 2005 +0200
@@ -567,7 +567,8 @@
 			mail_get_first_header(ctx->mail, "X-UIDL");
 		if (uidl == NULL)
 			var_expand(str, uidl_format, tab);
-
+		else
+			str_append(str, uidl);
 		ret = client_send_line(client, "%s", str_c(str));
 		t_pop();