pine v4.55. among other things, improved pop3 performance and
experimental "mail drop" setup for pop3. a list of all changes can be found at http://www.washington.edu/pine/changes/4.53-to-4.55.html
This commit is contained in:
parent
6affe84b2a
commit
18ce1086f5
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.52 2003/01/16 07:22:40 jakob Exp $
|
# $OpenBSD: Makefile,v 1.53 2003/04/17 08:17:03 jakob Exp $
|
||||||
|
|
||||||
COMMENT= "program for Internet E-mail and News"
|
COMMENT= "program for Internet E-mail and News"
|
||||||
COMMENT-pico= "small text editor"
|
COMMENT-pico= "small text editor"
|
||||||
@ -6,8 +6,8 @@ COMMENT-pilot= "file system browser"
|
|||||||
|
|
||||||
CATEGORIES= mail news
|
CATEGORIES= mail news
|
||||||
|
|
||||||
VERSION= 4.53
|
VERSION= 4.55
|
||||||
PICO_VERSION= 4.4
|
PICO_VERSION= 4.5
|
||||||
PILOT_VERSION= 2.0
|
PILOT_VERSION= 2.0
|
||||||
|
|
||||||
DISTNAME= pine${VERSION}
|
DISTNAME= pine${VERSION}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
MD5 (pine4.53.tar.gz) = 17d2ae323d6012e69c33cf0168dff59b
|
MD5 (pine4.55.tar.gz) = 730e69981d2034d9e031ac665b20f6eb
|
||||||
RMD160 (pine4.53.tar.gz) = 7ca5a1ec8491103bbd18b46a49d6b99be60b6d9c
|
RMD160 (pine4.55.tar.gz) = fc6ad74f641a79d1445cff9ddc3179b69699176b
|
||||||
SHA1 (pine4.53.tar.gz) = 2cf0ab8268a2294c608e099ef0caad7c915e2d5e
|
SHA1 (pine4.55.tar.gz) = 3e44fcea9e553bc571acdd60a0f73fcc3807efdc
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
$OpenBSD: patch-imap_src_c-client_auth_gss_c,v 1.1 2002/12/01 20:57:10 jakob Exp $
|
|
||||||
--- imap/src/c-client/auth_gss.c.orig Thu Nov 22 05:07:04 2001
|
|
||||||
+++ imap/src/c-client/auth_gss.c Sun Dec 1 15:17:47 2002
|
|
||||||
@@ -19,8 +19,14 @@
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define PROTOTYPE(x) x
|
|
||||||
+
|
|
||||||
+#ifdef HEIMDAL
|
|
||||||
+#include <gssapi.h>
|
|
||||||
+#include <krb5.h>
|
|
||||||
+#else
|
|
||||||
#include <gssapi/gssapi_generic.h>
|
|
||||||
#include <gssapi/gssapi_krb5.h>
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
long auth_gssapi_valid (void);
|
|
||||||
long auth_gssapi_client (authchallenge_t challenger,authrespond_t responder,
|
|
@ -1,11 +1,13 @@
|
|||||||
$OpenBSD: patch-imap_src_osdep_unix_env_unix_c,v 1.1 2002/12/01 20:57:10 jakob Exp $
|
$OpenBSD: patch-imap_src_osdep_unix_env_unix_c,v 1.2 2003/04/17 08:17:04 jakob Exp $
|
||||||
--- imap/src/osdep/unix/env_unix.c.orig Wed Oct 30 19:06:34 2002
|
|
||||||
+++ imap/src/osdep/unix/env_unix.c Sun Dec 1 15:17:47 2002
|
--- imap/src/osdep/unix/env_unix.c.orig Wed Apr 16 23:03:26 2003
|
||||||
@@ -773,14 +773,12 @@ char *myhomedir ()
|
+++ imap/src/osdep/unix/env_unix.c Thu Apr 17 09:21:27 2003
|
||||||
|
@@ -783,15 +783,12 @@ char *myhomedir ()
|
||||||
static char *mymailboxdir ()
|
static char *mymailboxdir ()
|
||||||
{
|
{
|
||||||
char *home = myhomedir ();
|
char *home = myhomedir ();
|
||||||
- if (!myMailboxDir && home) { /* initialize if first time */
|
- /* initialize if first time */
|
||||||
|
- if (!myMailboxDir && myHomeDir) {
|
||||||
if (mailsubdir) {
|
if (mailsubdir) {
|
||||||
char tmp[MAILTMPLEN];
|
char tmp[MAILTMPLEN];
|
||||||
sprintf (tmp,"%s/%s",home,mailsubdir);
|
sprintf (tmp,"%s/%s",home,mailsubdir);
|
||||||
@ -16,13 +18,3 @@ $OpenBSD: patch-imap_src_osdep_unix_env_unix_c,v 1.1 2002/12/01 20:57:10 jakob E
|
|||||||
return myMailboxDir ? myMailboxDir : "";
|
return myMailboxDir ? myMailboxDir : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1036,7 +1034,8 @@ long dotlock_lock (char *file,DOTLOCK *b
|
|
||||||
}
|
|
||||||
close (pi[0]); close (pi[1]);
|
|
||||||
}
|
|
||||||
- if (lockEaccesError) { /* punt silently if paranoid site */
|
|
||||||
+ if (strncmp(base->lock,"/var/mail/",10) && lockEaccesError) {
|
|
||||||
+ /* punt silently if paranoid site */
|
|
||||||
sprintf (tmp,"Mailbox vulnerable - directory %.80s",base->lock);
|
|
||||||
if (s = strrchr (tmp,'/')) *s = '\0';
|
|
||||||
strcat (tmp," must have 1777 protection");
|
|
||||||
|
17
mail/pine/patches/patch-imap_src_osdep_unix_kerb_mit_c
Normal file
17
mail/pine/patches/patch-imap_src_osdep_unix_kerb_mit_c
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
$OpenBSD: patch-imap_src_osdep_unix_kerb_mit_c,v 1.1 2003/04/17 08:17:04 jakob Exp $
|
||||||
|
--- imap/src/osdep/unix/kerb_mit.c.orig Thu Apr 17 09:29:01 2003
|
||||||
|
+++ imap/src/osdep/unix/kerb_mit.c Thu Apr 17 09:29:19 2003
|
||||||
|
@@ -19,8 +19,13 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define PROTOTYPE(x) x
|
||||||
|
+#ifdef HEIMDAL
|
||||||
|
+#include <gssapi.h>
|
||||||
|
+#include <krb5.h>
|
||||||
|
+#else
|
||||||
|
#include <gssapi/gssapi_generic.h>
|
||||||
|
#include <gssapi/gssapi_krb5.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
|
||||||
|
long kerberos_server_valid (void);
|
Loading…
x
Reference in New Issue
Block a user