36924d2ef1
The Cyrus IMAP server differs from other IMAP server implementations in that it is generally intended to be run on sealed servers, where normal users are not permitted to log in. The mailbox database is stored in parts of the filesystem that are private to the Cyrus IMAP system. All user access to mail is through the IMAP, POP3, or KPOP protocols. From Antoine Jacoutot <ajacoutot@lphp.org> help & ok naddy@, thanks!
13 lines
508 B
Plaintext
13 lines
508 B
Plaintext
$OpenBSD: patch-imap_mbexamine_c,v 1.1.1.1 2005/03/27 18:01:50 alek Exp $
|
|
--- imap/mbexamine.c.orig Mon Aug 9 20:45:33 2004
|
|
+++ imap/mbexamine.c Sat Jan 22 01:10:52 2005
|
|
@@ -277,7 +277,7 @@ int do_examine(char *name,
|
|
if (mailbox.minor_version >= 4)
|
|
printf(" POP3 New UIDL: %d\n", mailbox.pop3_new_uidl);
|
|
printf(" Last POP3 Login: (%ld) %s", mailbox.pop3_last_login,
|
|
- ctime(&mailbox.pop3_last_login));
|
|
+ ctime((time_t *)&mailbox.pop3_last_login));
|
|
|
|
printf("\n Message Info:\n");
|
|
|