Ver código fonte

* Added code to show text/html messages (immediately after text/plain and
entity_id of 2) as default instead of the text/plain version.
* Made option default to off

Tyler Akins 24 anos atrás
pai
commit
2e48ace905
5 arquivos alterados com 60 adições e 15 exclusões
  1. 1 0
      data/default_pref
  2. 40 15
      functions/mime.php
  3. 2 0
      src/load_prefs.php
  4. 4 0
      src/options.php
  5. 13 0
      src/options_display.php

+ 1 - 0
data/default_pref

@@ -1,3 +1,4 @@
 full_name=
 reply_to=
 chosen_theme=../config/default_theme.php
+show_html_default=0

+ 40 - 15
functions/mime.php

@@ -479,21 +479,46 @@
 
    // figures out what entity to display and returns the $message object
    // for that entity.
-   function findDisplayEntity ($message) {
-      if ($message) {
-         if ($message->header->type0 == "text") {
-            if ($message->header->type1 == "plain" ||
-                $message->header->type1 == "html") {
-	       if (isset($message->header->entity_id))
-                   return $message->header->entity_id;
-	       return 0;
-            }
-         } else {
-            for ($i=0; $message->entities[$i]; $i++) {
-               return findDisplayEntity($message->entities[$i]);
-            }   
-         }   
-      }
+   function findDisplayEntity ($message, $next = 'none')
+   {
+      global $show_html_default;
+      
+      if (! $message)
+	return;
+
+      // Show text/plain or text/html -- the first one we find.
+      if ($message->header->type0 == 'text' && 
+	  ($message->header->type1 == 'plain' ||
+	   $message->header->type2 == 'html'))
+	{
+	   // If the next part is an HTML version, this will
+	   // all be true.  Show it, if the user so desires.
+	   // HTML mails this way all have entity_id of 2.  1 = text/plain
+	   if ($next != 'none' &&
+	       $next->header->type0 == "text" &&
+	       $next->header->type1 == "html" &&
+	       $next->header->entity_id == 2 &&
+	       $message->header->type1 == "plain" &&
+	       isset($show_html_default) &&
+	       $show_html_default)
+	     $message = $next;
+	   
+	   if (isset($message->header->entity_id))
+	     return $message->header->entity_id;
+	} 
+      else 
+	{
+	   for ($i=0; $message->entities[$i]; $i++) 
+	     {
+		$next = 'none';
+		if (isset($message->entities[$i + 1]))
+		  $next = $message->entities[$i + 1];
+		$entity = findDisplayEntity($message->entities[$i], $next);
+		if ($entity != 0)
+		  return $entity;
+	     }   
+	}   
+      return 0;
    }
 
    /** This returns a parsed string called $body. That string can then

+ 2 - 0
src/load_prefs.php

@@ -188,6 +188,8 @@
        $location_of_buttons = 'between';
        
    $collapse_folders = getPref($data_dir, $username, 'collapse_folders');
+   
+   $show_html_default = getPref($data_dir, $username, 'show_html_default');
 
    do_hook("loading_prefs");
 

+ 4 - 0
src/options.php

@@ -71,6 +71,10 @@
       setPref($data_dir, $username, 'location_of_buttons', $button_new_location);
       setPref($data_dir, $username, 'left_size', $leftsize);
       setPref($data_dir, $username, 'use_javascript_addr_book', $javascript_abook);
+      if (isset($showhtmldefault))
+         setPref($data_dir, $username, 'show_html_default', 1);
+      else
+         removePref($data_dir, $username, 'show_html_default');
     
       do_hook('options_display_save');
 

+ 13 - 0
src/options_display.php

@@ -293,6 +293,19 @@
 ?>
             </td>
          </tr>
+         <tr>
+            <td valign=top align=right>
+               <?php echo _("Show HTML version by default"); ?>:
+            </td>
+            <td>
+               <input type=checkbox name=showhtmldefault <?php 
+	       if (isset($show_html_default) && $show_html_default) 
+	       echo " checked"; ?>>
+	         <?php 
+echo _("Yes, show me the HTML version of a mail message, if it is available."); 
+                 ?>
+            </td>
+         </tr>
          <?php do_hook('options_display_inside'); ?>
          <tr>
             <td>&nbsp;