char pass_buf[80] = "", *mypass = NULL, id_buf[80] = "", *myfolder = NULL;
const char *thepass = NULL, *myid = id, *thehash = NULL, *vmhash = NULL;
char term = 0;
- uint32_t timeout, attempts = 0;
+ uint32_t timeout, attempts = 0, retries = 0;
int failed = 0;
msg_type_t play_msg_type = MSG_NONE;
char *dir_path = NULL, *file_path = NULL;
heard_auto_new = 0;
play_msg_type = MSG_NONE;
attempts = profile->max_login_attempts;
+ retries = profile->max_retries;
myid = id;
mypass = NULL;
myfolder = "inbox";
char input[10] = "";
char key_buf[80] = "";
play_msg_type = MSG_NONE;
+
+ if (!retries) {
+ goto end;
+ }
+
+ retries--;
+
if (!zstr_buf(global_buf)) {
switch_set_string(input, global_buf);
*global_buf = '\0';
if (play_msg_type) {
vm_check_state = VM_CHECK_PLAY_MESSAGES;
+ retries = profile->max_retries;
}
continue;