Skip to content

Commit 2fffb83

Browse files
committed
As of 6.2.42, message_footer is preferred to message.footer and so on.
1 parent 1758417 commit 2fffb83

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

manual/customize/basics-families.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ Message footers and headers are likely to contain TT2 code themselves (for examp
192192

193193
In that case, you can use the capacity, offered by TT2, to define [custom tag delimitors](http://template-toolkit.org/docs/manual/Config.html#section_START_TAG_END_TAG).
194194

195-
Here's an example of such usage. Let's say you want to create lists with a family, and you want that each list automatically adds an unsubscription URL at the bottom of each message. For this, you'll need to use a `message.footer` file in each list.
195+
Here's an example of such usage. Let's say you want to create lists with a family, and you want that each list automatically adds an unsubscription URL at the bottom of each message. For this, you'll need to use a `message_footer` file in each list.
196196

197-
A file named `message.footer.tt2` was added to the family directory. It contains the following code:
197+
A file named `message_footer.tt2` was added to the family directory. It contains the following code:
198198

199199
``` code
200200
[% TAGS <+ +> -%]
@@ -204,7 +204,7 @@ The subject of the list is "<+ subject +>", click here to unsubscribe : [% 'auto
204204

205205
"Subject" corresponds to a tag in the XML file. Let's say it contains a short description of the list.
206206

207-
Once the family has been instantiated, each list directory will contain a message.footer file containing the following code :
207+
Once the family has been instantiated, each list directory will contain a `message_footer` file containing the following code :
208208

209209
``` code
210210
The subject of the list is "create and share our passion of scrap cooking", click here to unsubscribe : [% 'auto_signoff' | url_abs([listname],{email=>user.email}) %]
@@ -400,7 +400,7 @@ Note: in order to preserve list customization for instantiation, every parameter
400400

401401
### Family unsubscription
402402

403-
Using a global family message.footer.tt2 file, you can add at the end of each message sent from a family list a global unsubscription link. Here's what you could put in such message.footer.tt2:
403+
Using a global family `message_footer.tt2` file, you can add at the end of each message sent from a family list a global unsubscription link. Here's what you could put in such `message_footer.tt2`:
404404

405405
``` code
406406
[% TAGS <+ +> -%]

manual/upgrade/notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ below.
5959

6060
* If you are using the family_signoff link (the URL link in message footer
6161
that allows unsubscribing from all the lists in a family), you have to
62-
modify `message.footer.tt2` of the family according to new format (See
62+
modify `message_footer.tt2` of the family according to new format (See
6363
"[Family unsubscription](../customize/basics-families.md#family-unsubscription)"
6464
for details).
6565

0 commit comments

Comments
 (0)