From: Mark Michelson Date: Mon, 7 Jan 2008 21:04:09 +0000 (+0000) Subject: Adding user-configurable TCP timeout settings to IMAP voicemail. This could X-Git-Tag: 1.6.0-beta1~3^2~168 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=905fc559d1deeaedd827f818053eba5871a094c8;p=thirdparty%2Fasterisk.git Adding user-configurable TCP timeout settings to IMAP voicemail. This could go a long way towards preventing unexplainable hangs experienced by people. In the case of MWI hangs, this also will mean that the SIP port isn't blocked anymore. (closes issue #11665, reported by yehavi) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@96934 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index b3c687a299..a9202f1ac4 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -8213,6 +8213,31 @@ static int load_config(int reload) ast_copy_string(greetingfolder, imapfolder, sizeof(greetingfolder)); } + /* Handle the timeouts */ + if ((val = ast_variable_retrieve(cfg, "general", "imapreadtimeout"))) { + mail_parameters(NIL, SET_READTIMEOUT, (void *) (atol(val))); + } else { + mail_parameters(NIL, SET_READTIMEOUT, (void *) 60); + } + + if ((val = ast_variable_retrieve(cfg, "general", "imapwritetimeout"))) { + mail_parameters(NIL, SET_WRITETIMEOUT, (void *) (atol(val))); + } else { + mail_parameters(NIL, SET_WRITETIMEOUT, (void *) 60); + } + + if ((val = ast_variable_retrieve(cfg, "general", "imapopentimeout"))) { + mail_parameters(NIL, SET_OPENTIMEOUT, (void *) (atol(val))); + } else { + mail_parameters(NIL, SET_OPENTIMEOUT, (void *) 60); + } + + if ((val = ast_variable_retrieve(cfg, "general", "imapclosetimeout"))) { + mail_parameters(NIL, SET_CLOSETIMEOUT, (void *) (atol(val))); + } else { + mail_parameters(NIL, SET_CLOSETIMEOUT, (void *) 60); + } + #endif /* External voicemail notify application */ if ((val = ast_variable_retrieve(cfg, "general", "externnotify"))) { diff --git a/doc/tex/imapstorage.tex b/doc/tex/imapstorage.tex index b4b217ff72..3a952ce545 100644 --- a/doc/tex/imapstorage.tex +++ b/doc/tex/imapstorage.tex @@ -80,6 +80,10 @@ greetingsfolder= expungeonhangup= authuser= authpassword= +opentimeout= +closetimeout= +readtimeout= +writetimeout= \end{verbatim} \end{astlisting}