diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2003-05-12 19:28:23 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2003-05-12 19:28:23 +0000 |
commit | e0c6dd2f92e711624c743fbbcac35854b2b69faa (patch) | |
tree | 88d72058f5cb41b05f9fb385332fa9ef03d86287 /usr.sbin/popa3d/params.h | |
parent | 133a9e1f61a57c0b8c2b055ffc29e15820eaeead (diff) |
Sync to 0.6.2
- UIDL digest calculation has been improved
- minor bug fixes
- -V switch to show version
Diffstat (limited to 'usr.sbin/popa3d/params.h')
-rw-r--r-- | usr.sbin/popa3d/params.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.sbin/popa3d/params.h b/usr.sbin/popa3d/params.h index 1260ef3f3cc..daa2b3260f6 100644 --- a/usr.sbin/popa3d/params.h +++ b/usr.sbin/popa3d/params.h @@ -1,4 +1,4 @@ -/* $OpenBSD: params.h,v 1.7 2002/03/27 14:08:43 camield Exp $ */ +/* $OpenBSD: params.h,v 1.8 2003/05/12 19:28:22 camield Exp $ */ /* * Global POP daemon parameters. @@ -133,8 +133,9 @@ * Introduce some sane limits on the mailbox size in order to prevent * a single huge mailbox from stopping the entire POP service. */ -#define MAX_MAILBOX_MESSAGES 100000 -#define MAX_MAILBOX_BYTES 100000000 +#define MAX_MAILBOX_MESSAGES 200000 +#define MAX_MAILBOX_OPEN_BYTES 200000000 +#define MAX_MAILBOX_WORK_BYTES 250000000 #if !VIRTUAL_ONLY @@ -190,7 +191,7 @@ * Locking method your system uses for user mailboxes. It is important * that you set this correctly. * - * *BSD's use flock(2), others typically use fcntl(2). + * *BSDs use flock(2), others typically use fcntl(2). */ #define LOCK_FCNTL 0 #define LOCK_FLOCK 1 |