home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMN199D.LHA / avminstall / rexx / openmailbox.avm < prev    next >
Encoding:
Text File  |  1994-12-08  |  308 b   |  12 lines

  1. /* */
  2. parse upper arg mailbox special .
  3.  
  4. if mailbox = 'OUTGOING' then
  5.   address command 'run >nil: <nil: avm:scheduler' mailbox
  6. else if mailbox = 'OUTGOINGARCHIVE' then
  7.   address command 'run >nil: <nil: avm:scheduler' mailbox '-noschedule'
  8. else
  9.   address command 'run >nil: <nil: avm:logview' mailbox
  10.  
  11. exit
  12.