Blocked hold mail during ZMH and Tyx window

This commit is contained in:
Michiel Broek 2004-08-13 14:05:18 +00:00
parent 0b1a9e1482
commit bd740ae688
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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';