You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently in the SMTPServer there is no way to get the current number of activesessions.
If someone like us or any administrator wants to check this attribute there is noway to do it.
Probably we can add a new Method in SMTPServer as below
getNumberofSessions(){
return this.serverThread.getNumberOfSessions();
}
and in ServerThread we can add
getNumberofSessions(){
return sessionThreads.getSize();
}
We really require such function. Apache james has such facility but we avoided that for lot of reasons.
How can we contribute this code or can someone add this fix.
The text was updated successfully, but these errors were encountered:
Currently in the SMTPServer there is no way to get the current number of activesessions.
If someone like us or any administrator wants to check this attribute there is noway to do it.
Probably we can add a new Method in SMTPServer as below
getNumberofSessions(){
return this.serverThread.getNumberOfSessions();
}
and in ServerThread we can add
getNumberofSessions(){
return sessionThreads.getSize();
}
We really require such function. Apache james has such facility but we avoided that for lot of reasons.
How can we contribute this code or can someone add this fix.
The text was updated successfully, but these errors were encountered: