* Removed the other workarounds too. :-)
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 7 Feb 2001 03:46:12 +0000 (03:46 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 7 Feb 2001 03:46:12 +0000 (03:46 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1068 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/smtp.php

index 7fe5e285085c64573cc5d93e82e946c9c346ac85..c4f4dac5d136fa33eb57db6b824c3a45cb7aae4a 100644 (file)
 
       $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_messages_flag ($imap_stream, $reply_id, $reply_id, 'Answered');
 
          $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)) {
          sqimap_append ($imap_stream, $sent_folder, $length);
          write822Header ($imap_stream, $t, $c, $b, $subject, $more_headers);