Set default network timeout value to 60.

This commit is contained in:
Lefteris Chatzimparmpas 2012-02-20 00:09:14 +01:00
parent 81b09d1f01
commit 4160f7c708
2 changed files with 4 additions and 2 deletions

View File

@ -173,7 +173,9 @@ as a value. Default is
The time in seconds for the program to wait for a mail server's response. If
not set, the client will block indefinitely. This variable takes a
.Vt number
as a value. By default no value is set.
as a value. Default is
.Dq 60
seconds.
.El
.Sh ACCOUNTS
Accounts are initialized using the

View File

@ -115,7 +115,7 @@ init_options(void)
set_table_boolean("namespace", 1);
set_table_boolean("starttls", 1);
set_table_boolean("subscribe", 0);
set_table_number("timeout", 0);
set_table_number("timeout", 60);
lua_setglobal(lua, "options");
}