Previous | Contents | Index |
Controls how extracted message text is quoted in a message reply.
Requires SYSPRV privilege to set information for users other than yourself; requires SYSPRV or SYSNAM privilege to show information about users other than yourself.
SET EXTRACT_QUOTE quote
SET NOEXTRACT_QUOTE
SHOW EXTRACT_QUOTE
Qualifiers Defaults /ALL /NOALL /LOG /NOLOG /UIC="[g,m]" None /USER=username None
quote
Text to prepend to each extracted message line.
When the
/EXTRACT
qualifier is used in conjunction with theANSWER
orREPLY
commands, the content of the message being replied to will be included in the reply. It is often useful to quote this extracted material by prepending to each line some text such as "> ". Use theSET EXTRACT_QUOTE
command to specify the text to use for quoting.By default, no text is prepended to the lines of extracted messages. To restore this default, use the
SET NOEXTRACT_QUOTE
command. Note that the/EXTRACT
qualifier of theANSWER
andREPLY
commands also accepts an optional value which specifies text to use for quoting. When that value is specified, it overrides any setting made with theSET EXTRACT_QUOTE
command.
In this example, "> " is selected to use in quoting extracted message text.
EMAIL> SET EXTRACT_QUOTE "> " EMAIL> SHOW EXTRACT_QUOTE Extracted message text is quoted with "> ". EMAIL>
Previous | Next | Contents | Index |