Update to 5.1.7

This commit is contained in:
Andrey Slusar 2007-01-30 20:56:35 +00:00
parent f9683d7120
commit ea063428cf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=183734
4 changed files with 4 additions and 34 deletions

View file

@ -5,8 +5,7 @@
#
PORTNAME= fidogate
PORTVERSION= 5.1.6
PORTREVISION= 2
PORTVERSION= 5.1.7
CATEGORIES= news mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= rusfidogate

View file

@ -1,3 +1,3 @@
MD5 (fidogate5.1.6ds.tar.bz2) = a089d5807c390e06e7ef1894d1d4322d
SHA256 (fidogate5.1.6ds.tar.bz2) = 74d71773c0601879e153aca2ff74d0befe860a7b4af539e8ecc348b72300e5c2
SIZE (fidogate5.1.6ds.tar.bz2) = 698130
MD5 (fidogate5.1.7ds.tar.bz2) = 8ae0a43177c3f491881e9f0597462ab6
SHA256 (fidogate5.1.7ds.tar.bz2) = 4188c8cb1ace874cfd66f83ece933d8cda9394934a3a1351b94c01955422cc33
SIZE (fidogate5.1.7ds.tar.bz2) = 698091

View file

@ -1,11 +0,0 @@
--- src/toss/ftntoss.c.orig Mon Jan 29 12:53:14 2007
+++ src/toss/ftntoss.c Mon Jan 29 12:53:22 2007
@@ -882,7 +882,7 @@
#endif /* !SECURITY */
if (NULL != (pwd = passwd_lookup("packet", &msg->node_from)) &&
- !stricmp(pkt->passwd, pwd->passwd))
+ stricmp(pkt->passwd, pwd->passwd))
{
fglog("Insecure echomail packet from %s, area %s (%s pkt password)",
znfp1(&msg->node_from), areaname,

View file

@ -1,18 +0,0 @@
--- scripts/outbound/outb-kill.in.orig Tue Jan 9 16:24:31 2007
+++ scripts/outbound/outb-kill.in Tue Jan 9 16:24:52 2007
@@ -6,6 +6,7 @@
#
BIN=<BINDIR>
+LIBEXEC=<LIBEXECDIR>
for n in $*; do
[ -z "$n" ] && exit 0;
@@ -19,6 +20,6 @@
echo "Unsubscribing to all areas ..."
$BIN/ftnaf -- $n '-*'
echo "Killing outbound files ..."
- $BIN/ftnflo -v -x "echo ' %s'" -- $n
+ $LIBEXEC/ftnflo -v -x "echo ' %s'" -- $n
fi
done