Преглед изворни кода

removed saving sent for now

Luke Ehresman пре 25 година
родитељ
комит
ee8aad3279
1 измењених фајлова са 6 додато и 6 уклоњено
  1. 6 6
      functions/smtp.php

+ 6 - 6
functions/smtp.php

@@ -357,15 +357,15 @@
    function sendMessage($t, $c, $b, $subject, $body) {
       global $useSendmail;
       global $data_dir, $username, $domain, $key, $version, $sent_folder, $imapServerAddress;
-/*
+
       if ($useSendmail==true) {  
-	 sendSendmail($t, $c, $b, $subject, $body);
+         sendSendmail($t, $c, $b, $subject, $body);
       } else {
-	 sendSMTP($t, $c, $b, $subject, $body);
+         sendSMTP($t, $c, $b, $subject, $body);
       }
-*/
-      $imap_stream = sqimap_login($username, $key, $imapServerAddress, 1);
-      sqimap_append ($imap_stream, $sent_folder, $body, $t, $c, $b, $subject, $data_dir, $username, $domain, $version);    
+
+//      $imap_stream = sqimap_login($username, $key, $imapServerAddress, 1);
+//      sqimap_append ($imap_stream, $sent_folder, $body, $t, $c, $b, $subject, $data_dir, $username, $domain, $version);    
    }
 
 ?>