Browse Source

* Removed the other workarounds too. :-)

Tyler Akins 24 years ago
parent
commit
86e6878adc
1 changed files with 1 additions and 6 deletions
  1. 1 6
      functions/smtp.php

+ 1 - 6
functions/smtp.php

@@ -491,9 +491,7 @@
 
 
       $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 1);
       $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 1);
 
 
-      // The trim() is a workaround for RedHat's PHP 4.0.4pl1-3
-      // Possibly is there to make Konq work.
-      if ($reply_id = trim($reply_id)) {
+      if (isset($reply_id) && $reply_id) {
          sqimap_mailbox_select ($imap_stream, $mailbox);
          sqimap_mailbox_select ($imap_stream, $mailbox);
          sqimap_messages_flag ($imap_stream, $reply_id, $reply_id, 'Answered');
          sqimap_messages_flag ($imap_stream, $reply_id, $reply_id, 'Answered');
 
 
@@ -525,9 +523,6 @@
          $length = sendSMTP($t, $c, $b, $subject, $body, $more_headers);
          $length = sendSMTP($t, $c, $b, $subject, $body, $more_headers);
       }
       }
 
 
-      // The trim() is a workaround for RedHat's PHP 4.0.4pl1-3
-      // Possibly is there to make Konq work.
-      $sent_folder = trim($sent_folder);
       if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) {
       if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) {
          sqimap_append ($imap_stream, $sent_folder, $length);
          sqimap_append ($imap_stream, $sent_folder, $length);
          write822Header ($imap_stream, $t, $c, $b, $subject, $more_headers);
          write822Header ($imap_stream, $t, $c, $b, $subject, $more_headers);