blob: ba6fc7ad0b0ac3eb1c5d8a978b1d0c5d81b5e3c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* $OpenBSD: mailbox.h,v 1.1 2001/08/19 13:05:57 deraadt Exp $ */
/*
* Mailbox access.
*/
#ifndef _POP_MAILBOX_H
#define _POP_MAILBOX_H
/*
* Opens the mailbox, filling in the message database. Returns a non-zero
* value on error.
*/
extern int mailbox_open(char *spool, char *mailbox);
/*
* Sends (first lines of) a message to the POP client. Returns a non-zero
* value on error; the POP session then has to crash.
*/
extern int mailbox_get(struct db_message *msg, int lines);
/*
* Rewrites the mailbox according to flags in the database.
*/
extern int mailbox_update(void);
/*
* Closes the mailbox file.
*/
extern int mailbox_close(void);
#endif
|