Blocked hold mail during ZMH and Tyx window
This commit is contained in:
parent
0b1a9e1482
commit
bd740ae688
@ -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.
|
||||
|
@ -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';
|
||||
|
||||
|
Reference in New Issue
Block a user