fix for #74072. since "forward as quoted" is obsolete, treat it as
"forward inline." fix by cavin@netscape.com, sr=sspitzer@netscape.com git-svn-id: svn://10.0.0.236/trunk@91550 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -525,6 +525,9 @@ function MsgForwardMessage(event)
|
||||
forwardType = pref.GetIntPref("mail.forward_message_mode");
|
||||
} catch (e) {dump ("failed to retrieve pref mail.forward_message_mode");}
|
||||
|
||||
// mail.forward_message_mode could be 1, if the user migrated from 4.x
|
||||
// 1 (forward as quoted) is obsolete, so we treat is as forward inline
|
||||
// since that is more like forward as quoted then forward as attachment
|
||||
if (forwardType == 0)
|
||||
MsgForwardAsAttachment(event);
|
||||
else
|
||||
|
||||
@@ -65,8 +65,8 @@
|
||||
pref="true" preftype="int" prefstring="mail.forward_message_mode"
|
||||
prefattribute="value">
|
||||
<menupopup>
|
||||
<menuitem value="0" label="&asAttachment.label;" accesskey="&asAttachment.accesskey;"/>
|
||||
<menuitem value="2" label="&inline.label;" accesskey="&inline.accesskey;"/>
|
||||
<menuitem value="0" label="&asAttachment.label;" accesskey="&asAttachment.accesskey;"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</box>
|
||||
|
||||
@@ -285,7 +285,7 @@ pref("mail.display_glyph", true); // see <http://www.bucksch.org/1/projects/mo
|
||||
pref("mail.display_struct", true); // ditto
|
||||
pref("mail.send_struct", false); // ditto
|
||||
|
||||
pref("mail.forward_message_mode", 0); // 0=default as attachment 2=forward as inline with attachments, (obsolete)1=forward as quoted
|
||||
pref("mail.forward_message_mode", 0); // 0=default as attachment 2=forward as inline with attachments, (obsolete 4.x value)1=forward as quoted (mapped to 2 in mozilla)
|
||||
|
||||
pref("mail.startup.enabledMailCheckOnce", false);
|
||||
|
||||
|
||||
@@ -285,7 +285,7 @@ pref("mail.display_glyph", true); // see <http://www.bucksch.org/1/projects/mo
|
||||
pref("mail.display_struct", true); // ditto
|
||||
pref("mail.send_struct", false); // ditto
|
||||
|
||||
pref("mail.forward_message_mode", 0); // 0=default as attachment 2=forward as inline with attachments, (obsolete)1=forward as quoted
|
||||
pref("mail.forward_message_mode", 0); // 0=default as attachment 2=forward as inline with attachments, (obsolete 4.x value)1=forward as quoted (mapped to 2 in mozilla)
|
||||
|
||||
pref("mail.startup.enabledMailCheckOnce", false);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user