1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
colorize MSG {
SyntaxParser = 'MSG';
color {
{ 'Normal', 'Editor_Bold' },
{ 'Header', 'Msg_Header' },
{ 'Quotes', 'Msg_Quotes' },
{ 'Tag', 'Msg_Tag' },
{ 'Control', 'Msg_Signature' },
};
}
mode MSG: TEXT { # EMail messages
FileNameRx = /\c{\.{MSG}|{YEP}|{SND}}|{^SLRN.\d+}|{{\.{article}|{letter}}|{snd}\.\d+}$/;
# try also 1
WordWrap = 1; # automagic wordwrap
HilitOn = 1; # enable highlight
Colorizer = 'MSG'; # Highilight messages
RoutineRegexp = /^Subject:/;
}
oinclude 'mym_msg.fte';
|