removed debugging information
[squirrelmail.git] / functions / imap_general.php
index 91f203a9aa3c7f931e0734598c2d23e7fee54f4b..7adb2258cf888616cf75d2491841632750b19b4f 100755 (executable)
    function sqimap_append ($imap_stream, $sent_folder, $length) {
       fputs ($imap_stream, "a001 APPEND \"$sent_folder\" (\\Seen) \{$length}\r\n");
       $tmp = fgets ($imap_stream, 1024);
-      echo $tmp;
    } 
 
    function sqimap_append_done ($imap_stream) {
       fputs ($imap_stream, "\r\n");
       $tmp = fgets ($imap_stream, 1024);
-      echo $tmp;
    }
 ?>