First Last Prev Next    No search results available
Details
: Reply to List: variables not resolved
Bug#: 25976
: smarttemplate4
: General
Status: RESOLVED
Resolution: INVALID
: PC
: Windows NT
: unspecified
: P1
: major
: ---

:
:
:
:
:
  Show dependency tree - Show dependency graph
People
Reporter: Axel Grude <axel.grude@gmail.com>
Assigned To: Axel Grude <axel.grude@gmail.com>

Attachments


Note

You need to log in before you can comment on or make changes to this bug.

Related actions


Description:   Opened: 2015-03-06 01:51
Variables are currently not resolved when "Reply to List" is chosen
------- Comment #1 From Axel Grude 2015-03-06 05:17:46 -------
Actually it turns out that this is a problem with the Stationery Add-on. I sent
a patch to its author, so he hopefully will fix it in the next release.

The following statement was missing a case for "reply to list":
=> stationery-composer line 113:

let applyStationery = (arguments.length > 0 && arguments[0]) ||
  (gMsgCompose.type == mct.New && Stationery.getPref('ApplyStationery_New')) ||
  (gMsgCompose.type == mct.MailToUrl &&
Stationery.getPref('ApplyStationery_MailToUrl')) ||
  (gMsgCompose.type == mct.Reply &&
Stationery.getPref('ApplyStationery_ReplyToSender')) ||
  (gMsgCompose.type == mct.ReplyToSender &&
Stationery.getPref('ApplyStationery_ReplyToSender')) ||
  (gMsgCompose.type == mct.ReplyAll &&
Stationery.getPref('ApplyStationery_ReplyAll')) ||

/** added by AG **/
  (gMsgCompose.type == mct.ReplyToList &&
Stationery.getPref('ApplyStationery_ReplyAll')) ||

  (gMsgCompose.type == mct.ForwardAsAttachment &&
Stationery.getPref('ApplyStationery_ForwardAsAttachment')) ||
  (gMsgCompose.type == mct.ForwardInline &&
Stationery.getPref('ApplyStationery_ForwardInline')) ||
  (gMsgCompose.type == mct.NewsPost &&
Stationery.getPref('ApplyStationery_NewsPost')) ||
  (gMsgCompose.type == mct.ReplyToGroup &&
Stationery.getPref('ApplyStationery_ReplyToGroup')) ||
  (gMsgCompose.type == mct.ReplyToSenderAndGroup &&
Stationery.getPref('ApplyStationery_ReplyToSenderAndGroup')) ;
    if (!applyStationery) return;

First Last Prev Next    No search results available