* Word Wrapping works good
[squirrelmail.git] / functions / mailbox.php
index 846e1a60b39ea7313a5e49ef802e88d4ed5a92d5..44ea499de34d6f33af0f8cc70fba90cb7691e57c 100644 (file)
          $line = str_replace(">", ">", $line);
       }
 
-//      $line = wordWrap($line);
+      $wrap_at = 80; // Make this configurable int the config file some time
+      if (strlen($line) - 2 >= $wrap_at) // -2 because of the ^^ at the beginning
+         $line = wordWrap($line, $wrap_at);
       $line = str_replace(" ", " ", $line);
       $line = str_replace("\t", "        ", $line);