summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--imap4d/imap4d.c4
-rw-r--r--pop3d/pop3d.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/imap4d/imap4d.c b/imap4d/imap4d.c
index 435be73de..2f92396cd 100644
--- a/imap4d/imap4d.c
+++ b/imap4d/imap4d.c
@@ -1023,8 +1023,10 @@ main (int argc, char **argv)
else
{
struct imap4d_srv_config cfg;
- memset (&cfg, 0, sizeof cfg);
+ memset (&cfg, 0, sizeof cfg);
+ idle_timeout = mu_m_server_timeout (server);
+
if (mu_gsasl_enabled ())
{
auth_gssapi_init ();
diff --git a/pop3d/pop3d.c b/pop3d/pop3d.c
index a3b7966fe..2a44a7cfd 100644
--- a/pop3d/pop3d.c
+++ b/pop3d/pop3d.c
@@ -537,6 +537,8 @@ main (int argc, char **argv)
struct pop3d_srv_config cfg;
memset (&cfg, 0, sizeof cfg);
+ idle_timeout = mu_m_server_timeout (server);
+
switch (stls_server_check (&cfg, "<inetd>"))
{
case MU_TLS_CONFIG_OK:

Return to:

Send suggestions and report system problems to the System administrator.