2014年6月17日 星期二

openwebmail2.53 無法使用HTML編輯

修改 var/www/cgi-bin/openwebmail/openwebmail-send.pl

########## HTMLAREA_COMPATIBLE ################################### 
sub htmlarea_compatible { 
  my $u=$ENV{'HTTP_USER_AGENT'}; 
  if ( $u=~m!Mozilla/4.0! && 
       $u=~m!compatible;!) { 
     return 0 if ($u=~m!Opera!);     # not Opera 
     if ($u=~m!Windows! && 
         $u=~m!MSIE ([\d\.]+)! ) { 
        return 1 if ($1>=5.5);          # MSIE>=5.5 on windows platform 
     } 
  } 
  if ( $u=~m!Mozilla/5.0! && 
       $u!~m!compatible;!) { 
     if ($u!~m!(?:Phoenix|Galeon|Firebird)/! && 
         $u=~m!rv:([\d\.]+)! ) { 
        return 1 if ($1 ge "1.3");     # full Mozilla>=1.3 on all plaform 
     } 
     if ($u=~m!Firebird/([\d\.]+)!) { 
        return 1 if ($1 ge "0.6.1");     # Firebird>=0.6.1 on all plaform 
     } 
  } 
  return 1; <==更改為0

########## END HTMLAREA_COMPATIBLE ###############################