]> code.citadel.org Git - citadel.git/blob - citadel/imap_fetch.c
* Minor IMAP tweaks. It still doesn't work. :(
[citadel.git] / citadel / imap_fetch.c
1 /*
2  * $Id$
3  *
4  * Implements the FETCH command in IMAP.
5  * This command is way too convoluted.  Marc Crispin is a fscking idiot.
6  *
7  */
8
9
10 #include "sysdep.h"
11 #include <stdlib.h>
12 #include <unistd.h>
13 #include <stdio.h>
14 #include <fcntl.h>
15 #include <signal.h>
16 #include <pwd.h>
17 #include <errno.h>
18 #include <sys/types.h>
19 #include <sys/time.h>
20 #include <sys/wait.h>
21 #include <ctype.h>
22 #include <string.h>
23 #include <limits.h>
24 #include "citadel.h"
25 #include "server.h"
26 #include <time.h>
27 #include "sysdep_decls.h"
28 #include "citserver.h"
29 #include "support.h"
30 #include "config.h"
31 #include "dynloader.h"
32 #include "room_ops.h"
33 #include "user_ops.h"
34 #include "policy.h"
35 #include "database.h"
36 #include "msgbase.h"
37 #include "tools.h"
38 #include "internet_addressing.h"
39 #include "mime_parser.h"
40 #include "serv_imap.h"
41 #include "imap_tools.h"
42 #include "imap_fetch.h"
43 #include "genstamp.h"
44
45
46
47 struct imap_fetch_part {
48         char desired_section[256];
49         FILE *output_fp;
50 };
51
52 /*
53  * Individual field functions for imap_do_fetch_msg() ...
54  */
55
56
57
58 void imap_fetch_uid(int seq) {
59         cprintf("UID %ld", IMAP->msgids[seq-1]);
60 }
61
62 void imap_fetch_flags(struct CtdlMessage *msg) {
63         cprintf("FLAGS ()");    /* FIXME do something here */
64 }
65
66 void imap_fetch_internaldate(struct CtdlMessage *msg) {
67         char buf[256];
68         time_t msgdate;
69
70         if (msg->cm_fields['T'] != NULL) {
71                 msgdate = atol(msg->cm_fields['T']);
72         }
73         else {
74                 msgdate = time(NULL);
75         }
76
77         datestring(buf, msgdate, DATESTRING_IMAP);
78         cprintf("INTERNALDATE \"%s\"", buf);
79 }
80
81
82 /*
83  * Fetch RFC822-formatted messages.
84  *
85  * 'whichfmt' should be set to one of:
86  *      "RFC822"        entire message
87  *      "RFC822.HEADER" headers only (with trailing blank line)
88  *      "RFC822.SIZE"   size of translated message
89  *      "RFC822.TEXT"   body only (without leading blank line)
90  */
91 void imap_fetch_rfc822(int msgnum, char *whichfmt) {
92         FILE *tmp;
93         char buf[1024];
94         char *ptr;
95         long headers_size, text_size, total_size;
96         long bytes_remaining = 0;
97         long blocksize;
98
99         tmp = tmpfile();
100         if (tmp == NULL) {
101                 lprintf(1, "Cannot open temp file: %s\n", strerror(errno));
102                 return;
103         }
104
105         /*
106          * Load the message into a temp file for translation and measurement
107          */ 
108         CtdlRedirectOutput(tmp, -1);
109         CtdlOutputMsg(msgnum, MT_RFC822, 0, 0, 1);
110         CtdlRedirectOutput(NULL, -1);
111
112         /*
113          * Now figure out where the headers/text break is.  IMAP considers the
114          * intervening blank line to be part of the headers, not the text.
115          */
116         rewind(tmp);
117         headers_size = 0L;
118         do {
119                 ptr = fgets(buf, sizeof buf, tmp);
120                 if (ptr != NULL) {
121                         striplt(buf);
122                         if (strlen(buf) == 0) headers_size = ftell(tmp);
123                 }
124         } while ( (headers_size == 0L) && (ptr != NULL) );
125         fseek(tmp, 0L, SEEK_END);
126         total_size = ftell(tmp);
127         text_size = total_size - headers_size;
128
129         if (!strcasecmp(whichfmt, "RFC822.SIZE")) {
130                 cprintf("RFC822.SIZE %ld", total_size);
131                 fclose(tmp);
132                 return;
133         }
134
135         else if (!strcasecmp(whichfmt, "RFC822")) {
136                 bytes_remaining = total_size;
137                 rewind(tmp);
138         }
139
140         else if (!strcasecmp(whichfmt, "RFC822.HEADER")) {
141                 bytes_remaining = headers_size;
142                 rewind(tmp);
143         }
144
145         else if (!strcasecmp(whichfmt, "RFC822.TEXT")) {
146                 bytes_remaining = text_size;
147                 fseek(tmp, headers_size, SEEK_SET);
148         }
149
150         cprintf("%s {%ld}\r\n", whichfmt, bytes_remaining);
151         blocksize = sizeof(buf);
152         while (bytes_remaining > 0L) {
153                 if (blocksize > bytes_remaining) blocksize = bytes_remaining;
154                 fread(buf, blocksize, 1, tmp);
155                 client_write(buf, blocksize);
156                 bytes_remaining = bytes_remaining - blocksize;
157         }
158
159         fclose(tmp);
160 }
161
162
163
164 /*
165  * Load a specific part of a message into the temp file to be output to a
166  * client.  FIXME we can handle parts like "2" and "2.1" and even "2.MIME"
167  * but we still can't handle "2.HEADER" (which might not be a problem, because
168  * we currently don't have the ability to break out nested RFC822's anyway).
169  *
170  * Note: mime_parser() was called with dont_decode set to 1, so we have the
171  * luxury of simply spewing without having to re-encode.
172  */
173 void imap_load_part(char *name, char *filename, char *partnum, char *disp,
174                     void *content, char *cbtype, size_t length, char *encoding,
175                     void *cbuserdata)
176 {
177         struct imap_fetch_part *imfp;
178         char mbuf2[1024];
179
180         imfp = (struct imap_fetch_part *)cbuserdata;
181
182         if (!strcasecmp(partnum, imfp->desired_section)) {
183                 fwrite(content, length, 1, imfp->output_fp);
184         }
185
186         sprintf(mbuf2, "%s.MIME", partnum);
187
188         if (!strcasecmp(imfp->desired_section, mbuf2)) {
189                 fprintf(imfp->output_fp, "Content-type: %s", cbtype);
190                 if (strlen(name) > 0)
191                         fprintf(imfp->output_fp, "; name=\"%s\"", name);
192                 fprintf(imfp->output_fp, "\r\n");
193                 if (strlen(encoding) > 0)
194                         fprintf(imfp->output_fp,
195                                 "Content-Transfer-Encoding: %s\r\n", encoding);
196                 if (strlen(encoding) > 0) {
197                         fprintf(imfp->output_fp, "Content-Disposition: %s",
198                                         disp);
199                         if (strlen(filename) > 0) {
200                                 fprintf(imfp->output_fp, "; filename=\"%s\"",
201                                         filename);
202                         }
203                         fprintf(imfp->output_fp, "\r\n");
204                 }
205                 fprintf(imfp->output_fp, "Content-Length: %d\r\n", length);
206                 fprintf(imfp->output_fp, "\r\n");
207         }
208                         
209
210 }
211
212
213 /*
214  * Implements the ENVELOPE fetch item
215  * 
216  * FIXME ... we have to actually do something useful here.
217  *
218  * Note that the imap_strout() function can cleverly output NULL fields as NIL,
219  * so we don't have to check for that condition like we do elsewhere.
220  */
221 void imap_fetch_envelope(long msgnum, struct CtdlMessage *msg) {
222         char buf[256];
223         time_t msgdate;
224
225         if (msg->cm_fields['T'] != NULL) {
226                 msgdate = atol(msg->cm_fields['T']);
227         }
228         else {
229                 msgdate = time(NULL);
230         }
231
232         datestring(buf, msgdate, DATESTRING_IMAP);
233
234         cprintf("ENVELOPE (");
235
236         /* date */
237         cprintf("\"%s\" ", buf);
238
239         /* subject */
240         imap_strout(msg->cm_fields['U']);
241         cprintf(" ");
242
243         cprintf("NIL ");        /* from */
244         cprintf("NIL ");        /* sender */
245         cprintf("NIL ");        /* reply-to */
246         cprintf("NIL ");        /* to */
247         cprintf("NIL ");        /* cc */
248         cprintf("NIL ");        /* bcc */
249         cprintf("NIL ");        /* in-reply-to */
250
251         /* message ID */
252         imap_strout(msg->cm_fields['I']);
253
254         cprintf(") ");
255 }
256
257
258 /*
259  * Strip any non header information out of a chunk of RFC822 data on disk
260  */
261 void imap_strip_headers(FILE *fp) {
262         char buf[1024];
263
264         rewind(fp);
265         while (fgets(buf, sizeof buf, fp) != NULL) {
266                 striplt(buf);
267                 if (strlen(buf) == 0) {
268                         ftruncate(fileno(fp), ftell(fp));
269                 }
270         }
271         fflush(fp);
272         fprintf(fp, "\r\n");    /* add the trailing newline */
273         rewind(fp);
274 }
275
276
277 /*
278  * Implements the BODY and BODY.PEEK fetch items
279  */
280 void imap_fetch_body(long msgnum, char *item, int is_peek,
281                 struct CtdlMessage *msg) {
282         char section[1024];
283         char partial[1024];
284         int is_partial = 0;
285         char buf[1024];
286         int i;
287         FILE *tmp;
288         long bytes_remaining = 0;
289         long blocksize;
290         long pstart, pbytes;
291         struct imap_fetch_part imfp;
292
293         /* extract section */
294         strcpy(section, item);
295         for (i=0; i<strlen(section); ++i) {
296                 if (section[i]=='[') strcpy(section, &section[i+1]);
297         }
298         for (i=0; i<strlen(section); ++i) {
299                 if (section[i]==']') section[i] = 0;
300         }
301         lprintf(9, "Section is %s\n", section);
302
303         /* extract partial */
304         strcpy(partial, item);
305         for (i=0; i<strlen(partial); ++i) {
306                 if (partial[i]=='<') {
307                         strcpy(partial, &partial[i+1]);
308                         is_partial = 1;
309                 }
310         }
311         for (i=0; i<strlen(partial); ++i) {
312                 if (partial[i]=='>') partial[i] = 0;
313         }
314         if (is_partial == 0) strcpy(partial, "");
315         lprintf(9, "Partial is %s\n", partial);
316
317         tmp = tmpfile();
318         if (tmp == NULL) {
319                 lprintf(1, "Cannot open temp file: %s\n", strerror(errno));
320                 return;
321         }
322
323         /* Now figure out what the client wants, and get it */
324
325         if (!strcmp(section, "")) {             /* the whole thing */
326                 CtdlRedirectOutput(tmp, -1);
327                 CtdlOutputMsg(msgnum, MT_RFC822, 0, 0, 1);
328                 CtdlRedirectOutput(NULL, -1);
329         }
330
331         /*
332          * Be obnoxious and send the entire header, even if the client only
333          * asks for certain fields.  FIXME this shortcut later.
334          */
335         else if (!strncasecmp(section, "HEADER", 6)) {
336                 CtdlRedirectOutput(tmp, -1);
337                 CtdlOutputMsg(msgnum, MT_RFC822, 1, 0, 1);
338                 CtdlRedirectOutput(NULL, -1);
339                 imap_strip_headers(tmp);
340         }
341
342         /*
343          * Anything else must be a part specifier.
344          * (Note value of 1 passed as 'dont_decode' so client gets it encoded)
345          */
346         else {
347                 safestrncpy(imfp.desired_section, section,
348                                 sizeof(imfp.desired_section));
349                 imfp.output_fp = tmp;
350
351                 mime_parser(msg->cm_fields['M'], NULL,
352                                 *imap_load_part,
353                                 (void *)&imfp,
354                                 1);
355         }
356
357
358         fseek(tmp, 0L, SEEK_END);
359         bytes_remaining = ftell(tmp);
360
361         if (is_partial == 0) {
362                 rewind(tmp);
363                 cprintf("BODY[%s] {%ld}\r\n", section, bytes_remaining);
364         }
365         else {
366                 sscanf(partial, "%ld.%ld", &pstart, &pbytes);
367                 if ((bytes_remaining - pstart) < pbytes) {
368                         pbytes = bytes_remaining - pstart;
369                 }
370                 fseek(tmp, pstart, SEEK_SET);
371                 bytes_remaining = pbytes;
372                 cprintf("BODY[%s] {%ld}<%ld>\r\n",
373                         section, bytes_remaining, pstart);
374         }
375
376         blocksize = sizeof(buf);
377         while (bytes_remaining > 0L) {
378                 if (blocksize > bytes_remaining) blocksize = bytes_remaining;
379                 fread(buf, blocksize, 1, tmp);
380                 client_write(buf, blocksize);
381                 bytes_remaining = bytes_remaining - blocksize;
382         }
383
384         fclose(tmp);
385
386         if (is_peek) {
387                 /* FIXME set the last read pointer or something */
388         }
389 }
390
391
392
393 /*
394  * imap_do_fetch() calls imap_do_fetch_msg() to output the deta of an
395  * individual message, once it has been successfully loaded from disk.
396  */
397 void imap_do_fetch_msg(int seq, struct CtdlMessage *msg,
398                         int num_items, char **itemlist) {
399         int i;
400
401         cprintf("* %d FETCH (", seq);
402
403         for (i=0; i<num_items; ++i) {
404
405                 if (!strncasecmp(itemlist[i], "BODY[", 5)) {
406                         imap_fetch_body(IMAP->msgids[seq-1], itemlist[i],
407                                         0, msg);
408                 }
409                 else if (!strncasecmp(itemlist[i], "BODY.PEEK[", 10)) {
410                         imap_fetch_body(IMAP->msgids[seq-1], itemlist[i],
411                                         1, msg);
412                 }
413                 else if (!strcasecmp(itemlist[i], "BODYSTRUCTURE")) {
414                         /* FIXME do something here */
415                 }
416                 else if (!strcasecmp(itemlist[i], "ENVELOPE")) {
417                         imap_fetch_envelope(IMAP->msgids[seq-1], msg);
418                 }
419                 else if (!strcasecmp(itemlist[i], "FLAGS")) {
420                         imap_fetch_flags(msg);
421                 }
422                 else if (!strcasecmp(itemlist[i], "INTERNALDATE")) {
423                         imap_fetch_internaldate(msg);
424                 }
425                 else if (!strcasecmp(itemlist[i], "RFC822")) {
426                         imap_fetch_rfc822(IMAP->msgids[seq-1], itemlist[i]);
427                 }
428                 else if (!strcasecmp(itemlist[i], "RFC822.HEADER")) {
429                         imap_fetch_rfc822(IMAP->msgids[seq-1], itemlist[i]);
430                 }
431                 else if (!strcasecmp(itemlist[i], "RFC822.SIZE")) {
432                         imap_fetch_rfc822(IMAP->msgids[seq-1], itemlist[i]);
433                 }
434                 else if (!strcasecmp(itemlist[i], "RFC822.TEXT")) {
435                         imap_fetch_rfc822(IMAP->msgids[seq-1], itemlist[i]);
436                 }
437                 else if (!strcasecmp(itemlist[i], "UID")) {
438                         imap_fetch_uid(seq);
439                 }
440
441                 if (i != num_items-1) cprintf(" ");
442         }
443
444         cprintf(")\r\n");
445 }
446
447
448
449 /*
450  * imap_fetch() calls imap_do_fetch() to do its actual work, once it's
451  * validated and boiled down the request a bit.
452  */
453 void imap_do_fetch(int num_items, char **itemlist) {
454         int i;
455         struct CtdlMessage *msg;
456
457         if (IMAP->num_msgs > 0)
458          for (i = 0; i < IMAP->num_msgs; ++i)
459           if (IMAP->flags[i] && IMAP_FETCHED) {
460                 msg = CtdlFetchMessage(IMAP->msgids[i]);
461                 if (msg != NULL) {
462                         imap_do_fetch_msg(i+1, msg, num_items, itemlist);
463                         CtdlFreeMessage(msg);
464                 }
465                 else {
466                         cprintf("* %d FETCH <internal error>\r\n", i+1);
467                 }
468         }
469 }
470
471
472
473 /*
474  * Back end for imap_handle_macros()
475  * Note that this function *only* looks at the beginning of the string.  It
476  * is not a generic search-and-replace function.
477  */
478 void imap_macro_replace(char *str, char *find, char *replace) {
479         char holdbuf[1024];
480
481         if (!strncasecmp(str, find, strlen(find))) {
482                 if (str[strlen(find)]==' ') {
483                         strcpy(holdbuf, &str[strlen(find)+1]);
484                         strcpy(str, replace);
485                         strcat(str, " ");
486                         strcat(str, holdbuf);
487                 }
488                 if (str[strlen(find)]==0) {
489                         strcpy(holdbuf, &str[strlen(find)+1]);
490                         strcpy(str, replace);
491                 }
492         }
493 }
494
495
496
497 /*
498  * Handle macros embedded in FETCH data items.
499  * (What the heck are macros doing in a wire protocol?  Are we trying to save
500  * the computer at the other end the trouble of typing a lot of characters?)
501  */
502 void imap_handle_macros(char *str) {
503         int i;
504         int nest = 0;
505
506         for (i=0; i<strlen(str); ++i) {
507                 if (str[i]=='(') ++nest;
508                 if (str[i]=='[') ++nest;
509                 if (str[i]=='<') ++nest;
510                 if (str[i]=='{') ++nest;
511                 if (str[i]==')') --nest;
512                 if (str[i]==']') --nest;
513                 if (str[i]=='>') --nest;
514                 if (str[i]=='}') --nest;
515
516                 if (nest <= 0) {
517                         imap_macro_replace(&str[i],
518                                 "ALL",
519                                 "FLAGS INTERNALDATE RFC822.SIZE ENVELOPE"
520                         );
521                         imap_macro_replace(&str[i],
522                                 "BODY",
523                                 "BODYSTRUCTURE"
524                         );
525                         imap_macro_replace(&str[i],
526                                 "FAST",
527                                 "FLAGS INTERNALDATE RFC822.SIZE"
528                         );
529                         imap_macro_replace(&str[i],
530                                 "FULL",
531                                 "FLAGS INTERNALDATE RFC822.SIZE ENVELOPE BODY"
532                         );
533                 }
534         }
535 }
536
537
538 /*
539  * Break out the data items requested, possibly a parenthesized list.
540  * Returns the number of data items, or -1 if the list is invalid.
541  * NOTE: this function alters the string it is fed, and uses it as a buffer
542  * to hold the data for the pointers it returns.
543  */
544 int imap_extract_data_items(char **argv, char *items) {
545         int num_items = 0;
546         int nest = 0;
547         int i, initial_len;
548         char *start;
549
550         /* Convert all whitespace to ordinary space characters. */
551         for (i=0; i<strlen(items); ++i) {
552                 if (isspace(items[i])) items[i]=' ';
553         }
554
555         /* Strip leading and trailing whitespace, then strip leading and
556          * trailing parentheses if it's a list
557          */
558         striplt(items);
559         if ( (items[0]=='(') && (items[strlen(items)-1]==')') ) {
560                 items[strlen(items)-1] = 0;
561                 strcpy(items, &items[1]);
562                 striplt(items);
563         }
564
565         /* Parse any macro data items */
566         imap_handle_macros(items);
567
568         /*
569          * Now break out the data items.  We throw in one trailing space in
570          * order to avoid having to break out the last one manually.
571          */
572         strcat(items, " ");
573         start = items;
574         initial_len = strlen(items);
575         for (i=0; i<initial_len; ++i) {
576                 if (items[i]=='(') ++nest;
577                 if (items[i]=='[') ++nest;
578                 if (items[i]=='<') ++nest;
579                 if (items[i]=='{') ++nest;
580                 if (items[i]==')') --nest;
581                 if (items[i]==']') --nest;
582                 if (items[i]=='>') --nest;
583                 if (items[i]=='}') --nest;
584
585                 if (nest <= 0) if (items[i]==' ') {
586                         items[i] = 0;
587                         argv[num_items++] = start;
588                         start = &items[i+1];
589                 }
590         }
591
592         return(num_items);
593
594 }
595
596
597 /*
598  * One particularly hideous aspect of IMAP is that we have to allow the client
599  * to specify arbitrary ranges and/or sets of messages to fetch.  Citadel IMAP
600  * handles this by setting the IMAP_FETCHED flag for each message specified in
601  * the ranges/sets, then looping through the message array, outputting messages
602  * with the flag set.  We don't bother returning an error if an out-of-range
603  * number is specified (we just return quietly) because any client braindead
604  * enough to request a bogus message number isn't going to notice the
605  * difference anyway.
606  *
607  * This function clears out the IMAP_FETCHED bits, then sets that bit for each
608  * message included in the specified range.
609  *
610  * Set is_uid to 1 to fetch by UID instead of sequence number.
611  */
612 void imap_pick_range(char *range, int is_uid) {
613         int i;
614         int num_sets;
615         int s;
616         char setstr[1024], lostr[1024], histr[1024];
617         int lo, hi;
618
619         /*
620          * Clear out the IMAP_FETCHED flags for all messages.
621          */
622         for (i = 1; i <= IMAP->num_msgs; ++i) {
623                 IMAP->flags[i-1] = IMAP->flags[i-1] & ~IMAP_FETCHED;
624         }
625
626         /*
627          * Now set it for all specified messages.
628          */
629         num_sets = num_tokens(range, ',');
630         for (s=0; s<num_sets; ++s) {
631                 extract_token(setstr, range, s, ',');
632
633                 extract_token(lostr, setstr, 0, ':');
634                 if (num_tokens(setstr, ':') >= 2) {
635                         extract_token(histr, setstr, 1, ':');
636                         if (!strcmp(histr, "*")) sprintf(histr, "%d", INT_MAX);
637                 } 
638                 else {
639                         strcpy(histr, lostr);
640                 }
641                 lo = atoi(lostr);
642                 hi = atoi(histr);
643
644                 /* Loop through the array, flipping bits where appropriate */
645                 for (i = 1; i <= IMAP->num_msgs; ++i) {
646                         if (is_uid) {   /* fetch by sequence number */
647                                 if ( (IMAP->msgids[i-1]>=lo)
648                                    && (IMAP->msgids[i-1]<=hi)) {
649                                         IMAP->flags[i-1] =
650                                                 IMAP->flags[i-1] | IMAP_FETCHED;
651                                 }
652                         }
653                         else {          /* fetch by uid */
654                                 if ( (i>=lo) && (i<=hi)) {
655                                         IMAP->flags[i-1] =
656                                                 IMAP->flags[i-1] | IMAP_FETCHED;
657                                 }
658                         }
659                 }
660         }
661 }
662
663
664
665 /*
666  * This function is called by the main command loop.
667  */
668 void imap_fetch(int num_parms, char *parms[]) {
669         char items[1024];
670         char *itemlist[256];
671         int num_items;
672         int i;
673
674         if (num_parms < 4) {
675                 cprintf("%s BAD invalid parameters\r\n", parms[0]);
676                 return;
677         }
678
679         imap_pick_range(parms[2], 0);
680
681         strcpy(items, "");
682         for (i=3; i<num_parms; ++i) {
683                 strcat(items, parms[i]);
684                 if (i < (num_parms-1)) strcat(items, " ");
685         }
686
687         num_items = imap_extract_data_items(itemlist, items);
688         if (num_items < 1) {
689                 cprintf("%s BAD invalid data item list\r\n", parms[0]);
690                 return;
691         }
692
693         imap_do_fetch(num_items, itemlist);
694         cprintf("%s OK FETCH completed\r\n", parms[0]);
695 }
696
697 /*
698  * This function is called by the main command loop.
699  */
700 void imap_uidfetch(int num_parms, char *parms[]) {
701         char items[1024];
702         char *itemlist[256];
703         int num_items;
704         int i;
705         int have_uid_item = 0;
706
707         if (num_parms < 5) {
708                 cprintf("%s BAD invalid parameters\r\n", parms[0]);
709                 return;
710         }
711
712         imap_pick_range(parms[3], 1);
713
714         strcpy(items, "");
715         for (i=4; i<num_parms; ++i) {
716                 strcat(items, parms[i]);
717                 if (i < (num_parms-1)) strcat(items, " ");
718         }
719
720         num_items = imap_extract_data_items(itemlist, items);
721         if (num_items < 1) {
722                 cprintf("%s BAD invalid data item list\r\n", parms[0]);
723                 return;
724         }
725
726         /* If the "UID" item was not included, we include it implicitly
727          * because this is a UID FETCH command
728          */
729         for (i=0; i<num_items; ++i) {
730                 if (!strcasecmp(itemlist[i], "UID")) ++have_uid_item;
731         }
732         if (have_uid_item == 0) itemlist[num_items++] = "UID";
733
734         imap_do_fetch(num_items, itemlist);
735         cprintf("%s OK UID FETCH completed\r\n", parms[0]);
736 }
737
738