1 /* ======================================================================== 2 * Copyright 1988-2006 University of Washington 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * 11 * ======================================================================== 12 */ 13 14 /* 15 * Program: Dummy routines 16 * 17 * Author: Mark Crispin 18 * Networks and Distributed Computing 19 * Computing & Communications 20 * University of Washington 21 * Administration Building, AG-44 22 * Seattle, WA 98195 23 * Internet: MRC@CAC.Washington.EDU 24 * 25 * Date: 9 May 1991 26 * Last Edited: 30 August 2006 27 */ 28 29 /* Exported function prototypes */ 30 31 void dummy_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents); 32 void dummy_list (MAILSTREAM *stream,char *ref,char *pat); 33 void dummy_lsub (MAILSTREAM *stream,char *ref,char *pat); 34 long scan_contents (DRIVER *dtb,char *name,char *contents, 35 unsigned long csiz,unsigned long fsiz); 36 long dummy_scan_contents (char *name,char *contents,unsigned long csiz, 37 unsigned long fsiz); 38 long dummy_create (MAILSTREAM *stream,char *mailbox); 39 long dummy_create_path (MAILSTREAM *stream,char *path,long dirmode); 40 long dummy_delete (MAILSTREAM *stream,char *mailbox); 41 long dummy_rename (MAILSTREAM *stream,char *old,char *newname); 42 char *dummy_file (char *dst,char *name); 43 long dummy_canonicalize (char *tmp,char *ref,char *pat); 44