summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorSergey Matveychuk <sem@FreeBSD.org>2005-04-03 05:50:34 +0000
committerSergey Matveychuk <sem@FreeBSD.org>2005-04-03 05:50:34 +0000
commit265af0b55ff901388b70218aced96e1a81c074af (patch)
tree28c4ed12c50f3e671af78717f7ee4c77d555ba34 /mail
parentRemove BROKEN tag on amd64, port was already fixed. (diff)
- Update to 0.7.6
* Fixed potential problem of SQL injection * Fixed problem where privileges weren't dropped correctly * Implemented user configurable timeouts * Implemented support for RFC 2449 and RFC 3206 PR: ports/79363 Submitted by: Andrej Zverev <az@inec.ru>
Notes
Notes: svn path=/head/; revision=132316
Diffstat (limited to 'mail')
-rw-r--r--mail/akpop3d/Makefile4
-rw-r--r--mail/akpop3d/distinfo4
-rw-r--r--mail/akpop3d/files/patch-authenticate.c11
3 files changed, 4 insertions, 15 deletions
diff --git a/mail/akpop3d/Makefile b/mail/akpop3d/Makefile
index ec246593a559..8a48111c0c07 100644
--- a/mail/akpop3d/Makefile
+++ b/mail/akpop3d/Makefile
@@ -6,8 +6,8 @@
#
PORTNAME= akpop3d
-PORTVERSION= 0.7.4
-PORTREVISION= 1
+PORTVERSION= 0.7.7
+PORTREVISION= 0
CATEGORIES= mail
MASTER_SITES= http://www.synflood.at/akpop3d/
DISTNAME= ${PORTNAME}-${PORTVERSION}
diff --git a/mail/akpop3d/distinfo b/mail/akpop3d/distinfo
index 4165fa122e52..bd22de2c8e94 100644
--- a/mail/akpop3d/distinfo
+++ b/mail/akpop3d/distinfo
@@ -1,2 +1,2 @@
-MD5 (akpop3d-0.7.4.tar.bz2) = fcec0835f8d74c5a13fa589fd69c6669
-SIZE (akpop3d-0.7.4.tar.bz2) = 54913
+MD5 (akpop3d-0.7.7.tar.bz2) = 3ba404fb452f4452deb206a3074c1b28
+SIZE (akpop3d-0.7.7.tar.bz2) = 61497
diff --git a/mail/akpop3d/files/patch-authenticate.c b/mail/akpop3d/files/patch-authenticate.c
deleted file mode 100644
index 41de987f83b7..000000000000
--- a/mail/akpop3d/files/patch-authenticate.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- authenticate.c.orig Sun Jan 25 13:49:01 2004
-+++ authenticate.c Sun Jan 25 13:49:33 2004
-@@ -195,7 +195,7 @@
- syslog(LOG_ERR,"%s: %s: %s","failed to read auth file",authfile,strerror(errno));
- return 0;
- }
-- while ((0!=ferror(fptr)) && (0!=feof(fptr))) {
-+ while ((!ferror(fptr)) && (!feof(fptr))) {
- linebuf[0] = '\0';
- if (fgets(linebuf, sizeof(linebuf), fptr) == NULL) {
- fclose(fptr);