Accept unpacket mail for own points

This commit is contained in:
Michiel Broek 2006-03-20 12:36:21 +00:00
parent b2666a3b49
commit 8b1194af26
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ v0.83.16 13-Mar-2006
mbfido:
If sending crash to a node not in the setup, a default
archiver is now set to ZIP.
Accept unpacket mail for own points.
v0.83.15 05-Mar-2006 - 13-Mar-2006

View File

@ -4,7 +4,7 @@
* Purpose ...............: Read fidonet .pkt header
*
*****************************************************************************
* Copyright (C) 1997-2005
* Copyright (C) 1997-2006
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
@ -166,7 +166,7 @@ int getheader(faddr *f, faddr *t, FILE *pkt, char *pname, int session)
for (i = 0; i < 40; i++) {
if ((CFG.akavalid[i]) && ((t->zone == 0) || (t->zone == CFG.aka[i].zone)) &&
(t->net == CFG.aka[i].net) && (t->node == CFG.aka[i].node) &&
((!(capword & 0x0001)) || (t->point == CFG.aka[i].point)))
((!(capword & 0x0001)) || (t->point == CFG.aka[i].point) || (t->point && !CFG.aka[i].point)))
tome = TRUE;
}