From bd740ae68884958ea6ef62664632f4baa9ffc65a Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Fri, 13 Aug 2004 14:05:18 +0000 Subject: [PATCH] Blocked hold mail during ZMH and Tyx window --- ChangeLog | 4 ++++ mbtask/outstat.c | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 98f91ba9..5fe3eb6e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24,6 +24,10 @@ v0.61.4 11-Aug-2004 mbuser: Fixed permissions. + mbtask: + Tried to call nodes during ZMH or during a Tyx window when mail + was on hold. + mbsetup: Changed nodes screens to have a separate uplink managers setup screen, and added switches for BBBS uplinks. diff --git a/mbtask/outstat.c b/mbtask/outstat.c index c4982228..308acb4a 100644 --- a/mbtask/outstat.c +++ b/mbtask/outstat.c @@ -591,7 +591,7 @@ int outstat() /* * Arcmail and maybe file attaches, send during ZMH or if node has a Txx window. */ - if (iszmh || T_window) { + if ((iszmh || T_window) && !((tmp->flavors) & F_HOLD)) { tmp->flavors |= F_CALL; } } @@ -601,10 +601,11 @@ int outstat() /* * Normal mail, send during ZMH or if node has a Txx window. */ - if (iszmh || T_window) { + if ((iszmh || T_window) && !((tmp->flavors) & F_HOLD)) { tmp->flavors |= F_CALL; } } + if ((tmp->flavors) & F_ISFLO ) flstr[9]='F';