WalnutSortMail.mesa
Copyright © 1984, 1985, 1986 by Xerox Corporation. All rights reserved.
Eric Nickell, April 3, 1986 9:54:48 am PST
Dave Rumph, June 23, 1986 5:56:08 pm PDT
DIRECTORY
Rope USING [ROPE];
WalnutSortMail: CEDAR DEFINITIONS = BEGIN
ROPE: TYPE ~ Rope.ROPE;
Error: ERROR [info: ROPE];
SortMsg: PROC [msg: ROPE];
Select the Walnut Window message buttons on the basis of the msg, and the triggers established in the WalnutSort DB.
ReSort: PROC [pattern, fromMsgSets: LIST OF ROPE, newMsgSet: ROPE, removeFromOld, checkOnlyTitle: BOOLEANFALSE] RETURNS [msgsMoved: LIST OF ROPE];
Grep for Walnut
WalnutSortEnable: PROC;
Activates the WalnutSort facility.
WalnutSortDisable: PROC;
Disables the WalnutSort facility.
END.