diff --git a/mailboxes/detachall.cgi b/mailboxes/detachall.cgi index d8ec841d8..d0b78df8b 100755 --- a/mailboxes/detachall.cgi +++ b/mailboxes/detachall.cgi @@ -55,7 +55,7 @@ if ($?) { # Output the ZIP print "Content-type: application/zip\n\n"; open(ZIP, $zip); -while(read(ZIP, $buf, 1024) > 0) { +while(read(ZIP, $buf, 32768) > 0) { print $buf; } close(ZIP);