[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SHOW MAILING LIST command



Here is a command that I always wanted at the Lisp Listener command
level.  This function will expand a mailing list address.  If the
keyword :EXPAND ALL LEVELS is given, then ALL levels of the address will
be expanded, even if it is a mailing list.

(DEFINE-CP-COMMAND (COM-SHOW-MAILING-LIST :COMTAB 'USER)
		   ((ADDRESS :STRING
			    :PROMPT "mail address")
		    &KEY
		    (EXPAND-ALL-LEVELS :BOOLEAN
				       :DEFAULT NIL
				       :MENTIONED-DEFAULT T))
  (ZWEI:SHOW-MAILING-LIST-INTERNAL ADDRESS EXPAND-ALL-LEVELS)
  (VALUES))



	- Peter
-------