mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-08-05 01:11:36 +02:00
* Servers now define 'firstMenu'. This allows e.g. SSH to pre auth, while Telnet still gets the matrix
This commit is contained in:
parent
12e7722ec9
commit
4a22ce0924
4 changed files with 26 additions and 11 deletions
|
@ -51,12 +51,23 @@
|
|||
}
|
||||
*/
|
||||
menus: {
|
||||
connected: {
|
||||
art: CONNECT
|
||||
next: matrix
|
||||
options: {
|
||||
nextTimeout: 1500
|
||||
}
|
||||
//
|
||||
// Send telnet connections to matrix where users can login, apply, etc.
|
||||
//
|
||||
telnetConnected: {
|
||||
art: CONNECT
|
||||
next: matrix
|
||||
options: { nextTimeout: 1500 }
|
||||
}
|
||||
|
||||
//
|
||||
// SSH connections are pre-authenticated via the SSH server itself.
|
||||
// Jump directly to the login sequence
|
||||
//
|
||||
sshConnected: {
|
||||
art: CONNECT
|
||||
next: fullLoginSequenceLoginArt
|
||||
options: { nextTimeout: 1500 }
|
||||
}
|
||||
|
||||
matrix: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue