Page 1 of 1

"Automatic Transmit Timeout"-Inheritance

Posted: Fri Oct 28, 2011 12:06 pm
by qoverq
Hey!
Is it possible to inherit the value of this setting?
The Domain has the value "0" but the users get the standard value "5" on create

Many Thanks.
Greetz

Re: "Automatic Transmit Timeout"-Inheritance

Posted: Fri Oct 28, 2011 2:43 pm
by FTP
Yes, you can modify the html file "webadmin/admin_adduser_form2.html", find and replace:

Code: Select all

<input id="idle_timeout" type="text" value="5" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">
into:

Code: Select all

<input id="idle_timeout" type="text" value="0" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">

Re: "Automatic Transmit Timeout"-Inheritance

Posted: Fri Nov 04, 2011 7:15 am
by qoverq
Thank you very much!