>>> PASV <<< 227 Entering Passive Mode (217,151,192,136,195,210) --- Host (217.151.192.136) Port (50130) >>> RETR -rwxr-xr-x 1 260 410 1571 Mar 5 08:32 B0000198800028226.xml.enc <<< 553 Prohibited file name: -rwxr-xr-x 1 260 410 1571 Mar 5 08:32 B000 0198800028226.xml.enc >>> ABOR <<< 226 Since you see this ABOR must've succeeded >>> QUIT <<< 221-Goodbye. You uploaded 0 and downloaded 0 kbytes. #### 553 Prohibited file name: -rwxr-xr-x 1 260 410 1571 Mar 5 08:32 B0000198800028226.xml.enc at /usr/local/bin/debitech line 156 #### 151 # GET ALL FILES (*.enc) TO LOCAL DIRECTORY, DELETE THEM ON SERVER 152 foreach $file (@files) { 153 if ( !$error_flag && $file =~ m/\.enc$/ ) { 154 $report = $report . " Retrieving file $file\n"; 155 if ( !$debug ) { 156 $ftp->get($file) or $error_flag = 1; 157 $ftp->quit() if $error_flag; 158 $ftp->delete($file) or $error_flag = 1; 159 $ftp->quit() if $error_flag; 160 }