Displaying 2 results from an estimated 2 matches for "max_idle_tim".
Did you mean:
max_idle_time
2016 Jun 08
3
setting up auto logout in CentOS 6
...</gettext_domain>
<locale name="C">
<short>The action to take after the maximum idle time</short>
<long>The name of the action to take when the maximum allowed idle time has been reached. The Delay is specified in the "max_idle_time" key. Allowed values are: logout, forced-logout. An empty string disables the action.</long>
</locale>
</schema>
but the system is not logging me out after the max_idle_time. Is there something I?m missing?
Thanks!
---
Mike VanHorn
Senior Computer Systems...
2017 Apr 14
0
Test error: net_connect_ip(127.0.0.1:0) failed: Can't assign requested address
...;127.0.0.1",
.username = "testuser",
.password = "testpass",
.dns_client_socket_path = "",
.temp_path_prefix = ".test-tmp/",
.rawlog_dir = "",
.connect_timeout_msecs = 500,
.connect_retry_count = 3,
.connect_retry_interval_msecs = 10,
.max_idle_time = 10000,
};
The client fails if the server is not listening...
Is the test server listening?
static int test_open_server_fd(in_port_t *bind_port)
{
int fd = net_listen(&bind_ip, bind_port, 128);
if (debug)
i_debug("server listening on %u", *bind_port);
if (fd == -1) {
i_fata...