changeset 172:674d0067ea22 HEAD

updated error messages for FETCH/STORE when expunged messages were referenced. we use now exactly the same as rfc2180.
author Timo Sirainen <tss@iki.fi>
date Sat, 07 Sep 2002 05:06:36 +0300
parents 4716cf66c2cc
children d638f42bf813
files src/imap/cmd-fetch.c src/imap/cmd-store.c
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap/cmd-fetch.c	Sat Sep 07 04:52:21 2002 +0300
+++ b/src/imap/cmd-fetch.c	Sat Sep 07 05:06:36 2002 +0300
@@ -270,7 +270,8 @@
 				   client->outbuf, &all_found)) {
 		/* NOTE: syncing isn't allowed here */
 		client_send_tagline(client, all_found ? "OK Fetch completed." :
-				    "NO Some messages were not found.");
+				    "NO Some of the requested messages "
+				    "no longer exist.");
 	} else {
 		client_send_storage_error(client);
 	}
--- a/src/imap/cmd-store.c	Sat Sep 07 04:52:21 2002 +0300
+++ b/src/imap/cmd-store.c	Sat Sep 07 05:06:36 2002 +0300
@@ -110,7 +110,7 @@
 					  &all_found)) {
 		/* NOTE: syncing isn't allowed here */
 		client_send_tagline(client, all_found ? "OK Store completed." :
-				    "NO Some messages were not found.");
+				    "NO Some of the messages no longer exist.");
 	} else
 		client_send_storage_error(client);