Download failed, exiting?

Hi, this showed up on a bounce processing report… before I go hunting this down in the code, does anyone know what it might mean, or where to look to troubleshoot?

phpList version 3.2.6 (c) 2000-2016 phpList Ltd, http://www.phplist.com
phpList - 0 bounces to fetch from the mailbox
phpList - Please do not interrupt this process
phpList - Closing mailbox, and purging messages
phpList - Download failed, exiting

@danwaterloo Dan, this seems to be a recent change that wasn’t thought through correctly, or tested thoroughly. The message means that no bounces were downloaded, and that is incorrectly treated as if the download failed.

In file admin/processbounces.php look for these lines, then delete or comment-out

if ($GLOBALS['commandline'] && empty($download_report)) {#
    cl_output(s('Download failed, exiting'));
    return;
}
1 Like

@duncanc Hi Duncan, That did the trick… thanks! Dan

1 Like

Good catch, thanks for the pull request!