No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / appl / popper / pop_uidl.c
blob562f34dda3efe8d867ce11bb02a4377ab7764e27
1 /*
2 * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include <popper.h>
35 __RCSID("$Heimdal: pop_uidl.c 7463 1999-12-02 16:58:55Z joda $"
36 "$NetBSD$");
38 #ifdef UIDL
39 /*
40 * uidl: Uidl the contents of a POP maildrop
43 int
44 pop_uidl (POP *p)
46 MsgInfoList * mp; /* Pointer to message info list */
47 int i;
48 int msg_num;
50 /* Was a message number provided? */
51 if (p->parm_count > 0) {
52 msg_num = atoi(p->pop_parm[1]);
54 /* Is requested message out of range? */
55 if ((msg_num < 1) || (msg_num > p->msg_count))
56 return (pop_msg (p,POP_FAILURE,
57 "Message %d does not exist.",msg_num));
59 /* Get a pointer to the message in the message list */
60 mp = &p->mlp[msg_num-1];
62 /* Is the message already flagged for deletion? */
63 if (mp->flags & DEL_FLAG)
64 return (pop_msg (p,POP_FAILURE,
65 "Message %d has been deleted.",msg_num));
67 /* Display message information */
68 return (pop_msg(p,POP_SUCCESS,"%u %s",msg_num,mp->msg_id));
71 /* Display the entire list of messages */
72 pop_msg(p,POP_SUCCESS,
73 "%d messages (%ld octets)",
74 p->msg_count-p->msgs_deleted,
75 p->drop_size-p->bytes_deleted);
77 /* Loop through the message information list. Skip deleted messages */
78 for (i = p->msg_count, mp = p->mlp; i > 0; i--, mp++) {
79 if (!(mp->flags & DEL_FLAG))
80 fprintf(p->output,"%u %s\r\n",mp->number,mp->msg_id);
83 /* "." signals the end of a multi-line transmission */
84 fprintf(p->output,".\r\n");
85 fflush(p->output);
87 return(POP_SUCCESS);
89 #endif /* UIDL */