Browse Source

Saving of sent messages works..kinda

Luke Ehresman 25 years ago
parent
commit
6d65b66b3c
4 changed files with 84 additions and 10 deletions
  1. 11 0
      ChangeLog
  2. 52 8
      functions/imap_general.php
  3. 5 2
      functions/smtp.php
  4. 16 0
      functions/strings.php

+ 11 - 0
ChangeLog

@@ -1,3 +1,14 @@
+Version 0.4pre1 -- Development
+------------------------------
+- It doesn't bail out if PHP wasn't compiled with --with-gettext.  
+    It only uses english in this case.
+
+
+
+Version 0.3.1 -- March 13, 2000
+-------------------------------
+- Fixed a bug that didn't allow downloading of attachments
+
 Version 0.3 (final) -- March 10, 2000
 Version 0.3 (final) -- March 10, 2000
 -------------------------------------
 -------------------------------------
 - Fixed bug in smtp.php and made sending RFC complient
 - Fixed bug in smtp.php and made sending RFC complient

+ 52 - 8
functions/imap_general.php

@@ -71,20 +71,20 @@
       /** Do some error correction **/
       /** Do some error correction **/
       if (!$imap_stream) {
       if (!$imap_stream) {
          if (!$hide) {
          if (!$hide) {
-            echo "Error connecting to IMAP server: $imap_server_address.<br>\n";
-            echo "$error_number : $error_string<br>\n";
+            echo "Error connecting to IMAP server: $imap_server_address.<br>\r\n";
+            echo "$error_number : $error_string<br>\r\n";
          }
          }
          exit;
          exit;
       }
       }
 
 
-      fputs ($imap_stream, "a001 LOGIN \"$username\" \"$password\"\n");
+      fputs ($imap_stream, "a001 LOGIN \"$username\" \"$password\"\r\n");
       $read = fgets ($imap_stream, 1024);
       $read = fgets ($imap_stream, 1024);
 
 
       /** If the connection was not successful, lets see why **/
       /** If the connection was not successful, lets see why **/
       if (substr($read, 0, 7) != "a001 OK") {
       if (substr($read, 0, 7) != "a001 OK") {
          if (!$hide) {
          if (!$hide) {
             if (substr($read, 0, 8) == "a001 BAD") {
             if (substr($read, 0, 8) == "a001 BAD") {
-               echo "Bad request: $read<br>\n";
+               echo "Bad request: $read<br>\r\n";
                exit;
                exit;
             } else if (substr($read, 0, 7) == "a001 NO") {
             } else if (substr($read, 0, 7) == "a001 NO") {
                ?>
                ?>
@@ -135,7 +135,7 @@
     **  Simply logs out the imap session
     **  Simply logs out the imap session
     ******************************************************************************/
     ******************************************************************************/
    function sqimap_logout ($imap_stream) {
    function sqimap_logout ($imap_stream) {
-      fputs ($imap_stream, "a001 LOGOUT\n");
+      fputs ($imap_stream, "a001 LOGOUT\r\n");
    }
    }
 
 
 
 
@@ -144,7 +144,7 @@
     **  Returns the delimeter between mailboxes:  INBOX/Test, or INBOX.Test... 
     **  Returns the delimeter between mailboxes:  INBOX/Test, or INBOX.Test... 
     ******************************************************************************/
     ******************************************************************************/
    function sqimap_get_delimiter ($imap_stream) {
    function sqimap_get_delimiter ($imap_stream) {
-      fputs ($imap_stream, ". LIST \"\" *\n");
+      fputs ($imap_stream, ". LIST \"\" *\r\n");
       $read = sqimap_read_data($imap_stream, ".", true, $a, $b);
       $read = sqimap_read_data($imap_stream, ".", true, $a, $b);
       $quote_position = strpos ($read[0], "\"");
       $quote_position = strpos ($read[0], "\"");
       $delim = substr ($read[0], $quote_position+1, 1);
       $delim = substr ($read[0], $quote_position+1, 1);
@@ -159,7 +159,7 @@
     **  Gets the number of messages in the current mailbox. 
     **  Gets the number of messages in the current mailbox. 
     ******************************************************************************/
     ******************************************************************************/
    function sqimap_get_num_messages ($imap_stream, $mailbox) {
    function sqimap_get_num_messages ($imap_stream, $mailbox) {
-      fputs ($imap_stream, "a001 EXAMINE \"$mailbox\"\n");
+      fputs ($imap_stream, "a001 EXAMINE \"$mailbox\"\r\n");
       $read_ary = sqimap_read_data ($imap_stream, "a001", true, $result, $message);
       $read_ary = sqimap_read_data ($imap_stream, "a001", true, $result, $message);
       for ($i = 0; $i < count($read_ary); $i++) {
       for ($i = 0; $i < count($read_ary); $i++) {
          if (substr(trim($read_ary[$i]), -6) == EXISTS) {
          if (substr(trim($read_ary[$i]), -6) == EXISTS) {
@@ -213,7 +213,7 @@
     **  Returns the number of unseen messages in this folder 
     **  Returns the number of unseen messages in this folder 
     ******************************************************************************/
     ******************************************************************************/
    function sqimap_unseen_messages ($imap_stream, &$num_unseen) {
    function sqimap_unseen_messages ($imap_stream, &$num_unseen) {
-      fputs ($imap_stream, "a001 SEARCH UNSEEN NOT DELETED\n");
+      fputs ($imap_stream, "a001 SEARCH UNSEEN NOT DELETED\r\n");
       $read_ary = sqimap_read_data ($imap_stream, "a001", true, $result, $message);
       $read_ary = sqimap_read_data ($imap_stream, "a001", true, $result, $message);
       $unseen = false;
       $unseen = false;
       
       
@@ -228,4 +228,48 @@
 
 
       return $unseen;
       return $unseen;
    }
    }
+ 
+  
+   /******************************************************************************
+    **  Saves a message to a given folder -- used for saving sent messages
+    ******************************************************************************/
+   function sqimap_append ($imap_stream, $mailbox, $body, $to, $cc, $bcc, $subject, $data_dir, $username, $domain, $version) {
+      global $sent_folder, $data_dir;
+
+      $from = getPref($data_dir, $username, "full_name");
+      $from_addr = getPref($data_dir, $username, "email_address");
+      if ($from_addr == "")
+         $from_addr = "$username@$domain";
+      $to_list = getLineOfAddrs($to);
+      $cc_list = getLineOfAddrs($cc);
+      $bcc_list = getLineOfAddrs($bcc);
+
+      if ($from == "")
+         $from = "<$from_addr>";
+      else
+         $from = $from . " <$from_addr>";
+
+      $message  = "Date: ".date("D, j M Y H:i:s ", mktime()) . timezone() . "\r\n";
+      $message .= "Subject: $subject\r\n";
+      $message .= "From: $from\r\n";
+      $message .= "To: $to_list\r\n";
+      if ($cc_list) {
+         $message .= "Cc: $cc_list\r\n"; // Who the CCs are
+      }
+      $message .= "Content-Type: text/plain; charset=ISO-8859-1\r\n";
+      $message .= "Content-Transfer-Encoding: 8bit\r\n";
+      $message .= "\r\n";
+      $message .= "$body\r\n";
+      $message .= "\r\n";
+      
+      $size = count_chars($message);
+      fputs ($imap_stream, "a001 APPEND $sent_folder (\\Seen) \{$size}\r\n");
+      fputs ($imap_stream, "$message");
+      echo "a001 APPEND $sent_folder (\\Seen) \{$size}<br>";
+
+      $read_ary = sqimap_read_data ($imap_stream, "a001", true, $result, $message);
+      for ($i = 0; $i < count($read_ary); $i++) {
+         echo $read_ary[$i] . "<BR>";
+      }
+   } 
 ?>
 ?>

+ 5 - 2
functions/smtp.php

@@ -356,13 +356,16 @@
 
 
    function sendMessage($t, $c, $b, $subject, $body) {
    function sendMessage($t, $c, $b, $subject, $body) {
       global $useSendmail;
       global $useSendmail;
-
+      global $data_dir, $username, $domain, $key, $version, $sent_folder, $imapServerAddress;
+/*
       if ($useSendmail==true) {  
       if ($useSendmail==true) {  
 	 sendSendmail($t, $c, $b, $subject, $body);
 	 sendSendmail($t, $c, $b, $subject, $body);
       } else {
       } 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);    
    }
    }
 
 
 ?>
 ?>

+ 16 - 0
functions/strings.php

@@ -150,4 +150,20 @@
    function replace_escaped_spaces ($string) {
    function replace_escaped_spaces ($string) {
       return str_replace("&nbsp;", " ", $string);
       return str_replace("&nbsp;", " ", $string);
    }
    }
+
+   function count_chars($string) {
+      for ($i = 0; $i < strlen($string); $i++) {
+         $ch = substr($string, $i, 1);
+         $size++;
+         if ($ch == "\\") {
+            $i++;   
+            $ch = substr($string, $i, 1);
+            if ($ch == "n")
+               $i--;
+            if ($ch == "r")
+               $i--;
+         }   
+      }   
+      return $size;
+   }
 ?>
 ?>