From: AFTS - R. <rpo...@af...> - 2013-01-16 20:29:33
|
I am subscribed to the this mailing list. (applies when you are sending email to SquirrelMail mailing list) [ ] True - No need to CC me when replying [x] False - Please CC me when replying This bug occurs when I ... ... try to do/view/use .... compose or reply to a message The description of the bug: HTML_Editor is configured and included by nothing shows up in composing or replying to indicate that it is functioning. I can reproduce the bug by: replying or composing (Optional) I got bored and found the bug occurs in: well don't know if it is here, but here is copy of config. tsmafts[/usr/share/squirrelmail.devel/plugins/html_mail] cat config.php <?php global $editor_style, $customStyle, $allowEmoticons, $use_spell_checker, $fully_loaded, $html_mail_aspell_path, $fck_spell_checker, $default_aggressive_html_reply, $allow_change_html_editor_style, $default_aggressive_reply_with_unsafe_images, $outgoing_image_uri_https, $default_html_editor_height; // choose the editor you'd like to use. currently, FCKeditor // and HTMLArea are supported // // 1 = FCKeditor // 2 = HTMLArea // $editor_style = 1; // allow user to choose their own editor style? // // 0 = no // 1 = yes // $allow_change_html_editor_style = 1; // default setting for "aggressive" replies in HTML format // (user can override in their personal settings) // // 0 = only reply in HTML if user had been // viewing the message in HTML format // 1 = always try to reply in HTML format if // the message has an HTML part // $default_aggressive_html_reply = 1; // default setting for "aggressive" inclusion of unsafe // images in replies in HTML format // (user can override in their personal settings) // // 0 = only include unsafe images in HTML reply if // user had been viewing the message in HTML // format with unsafe images enabled // 1 = always include any unsafe images in HTML replies // $default_aggressive_reply_with_unsafe_images = 0; // outgoing mails may have embedded images (emoticons, // other images) that will be sent as URIs to your server // should those image URIs be sent as HTTP, HTTPS, or the // same as what the sender is using to log in with? // // 1 = HTTP // 2 = HTTPS // // Or set to the port number that HTTPS is served on on // your server to auto-sense and use whatever sender is // using. For example: // // $outgoing_image_uri_https = 443; // $outgoing_image_uri_https = 2; // this will set the editor window height default, which is // usually only needed if you run a version of SquirrelMail // that is old enough not to have this setting in normal // user preferences // $default_html_editor_height = '20'; // ---------------------------------------------------------------- // // FCKeditor configuration items // // choose if you want to use "ieSpell" or ASpell for you spellchecking // ieSpell does not require any server-side configuration, but only // runs in Microsoft Internet Explorer on Windows operating systems. // ASpell is a much better choice if you are able to install it on your // server // // 1 = ASpell // 2 = ieSpell // $fck_spell_checker = 1; // set the path to your ASpell binary. Examples are included here // for both Windows and Linux users (only used when you have chosen // ASpell as your spell checker). // // Linux: // $html_mail_aspell_path = 'aspell'; // // Windows: // $html_mail_aspell_path = '"C:\Program Files\Aspell\bin\aspell.exe"'; // $html_mail_aspell_path = 'aspell'; // ---------------------------------------------------------------- // // HTMLArea configuration items // // if you'd like to customize the HTML editor, you may define // its CSS style here... leave as an empty string for default // behavior // // note that a font-size of about 16 seems to be more // appropriate than the default size // // // $customStyle = ''; // $customStyle = 'body { background-color: yellow; color: black; font-family: verdana,sans-serif; font-size:12 } p { font-width: bold; }'; $customStyle = 'body { font-size:12 }'; // if you have patched the SquirrelMail source to allow the // use of emoticons functionality and want to allow users // to make use of them, set this value to 1. set to zero // to disable // $allowEmoticons = 0; // set this to 1 if you'd like to use the integrated spell // checker (make sure you've got your web server and Perl // interpreter set up correctly, for more info, see the // README file)... set to zero to disable // $use_spell_checker = 1; // set this to 1 if you want to turn on all bells and whistles, // including all HTMLArea plugins // $fully_loaded = 0; ?> (Optional) I got really bored and here's a fix: ---------------------------------------------- My browser information: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) My web server information: PHP Version 4.2.2 PHP Extensions (List) * 0 = yp * 1 = xml * 2 = wddx * 3 = sysvshm * 4 = sysvsem * 5 = standard * 6 = sockets * 7 = shmop * 8 = session * 9 = pspell * 10 = posix * 11 = pcre * 12 = openssl * 13 = iconv * 14 = gmp * 15 = gettext * 16 = gd * 17 = ftp * 18 = exif * 19 = domxml * 20 = dio * 21 = dbx * 22 = dba * 23 = curl * 24 = ctype * 25 = calendar * 26 = bz2 * 27 = bcmath * 28 = zlib * 29 = imap * 30 = ldap * 31 = Apache 2.0 SquirrelMail-specific information: Version: 1.5.2 [SVN] Plugins (List) * 0 = administrator * 1 = calendar * 2 = fortune * 3 = info * 4 = New Mail (newmail) CORE * 5 = squirrelspell 0.5 * 6 = sent_subfolders * 7 = filters * 8 = spamcop * 9 = Add Address (add_address) 1.0.3 * 10 = Login Check (login_check) 1.0 * 11 = Move All Messages (move_all_messages) 1.0 * 12 = Quote of the Day at Login (qotd_login) 1.0 * 13 = Bug Report (bug_report) CORE * 14 = message_details * 15 = Autocomplete (autocomplete) 3.0 * 16 = Multiple Attachments (multiple_attachments) 1.0 * 17 = Compatibility (compatibility) 2.0.16 * 18 = Custom From (custom_from) 2.0 * 19 = Quick Save (quicksave) 2.4.5 * 20 = html_mail 2.3-1.4 * 21 = bounce 0.5-1.4.x * 22 = Preview Pane (preview_pane) 2.0 My IMAP server information: Server type: uw Capabilities: IMAP4REV1 IDLE NAMESPACE MAILBOX-REFERRALS SCAN SORT THREAD=REFERENCES THREAD=ORDEREDSUBJECT MULTIAPPEND LOGIN-REFERRALS STARTTLS AUTH=LOGIN |