home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / netprofessional / code / 02.01 / rvw.eims.newuser.as.txt < prev    next >
Text File  |  2010-09-21  |  524b  |  13 lines

  1. Listing 1: New User Example
  2.  
  3. New User
  4. This is a very simple script fragment, which shows how to use the New User event. This example uses all of the fields recommended for a regular POP mailbox - more options are available (although Ph information is not available). The user's full email address is username@domain
  5.  
  6. tell application "EIMS Server"
  7.     New User {domain:"seuss.skylist.net", username:"Test", ¨
  8.     password:"test",  fullname:"Test Account", ¨
  9.     loginEnabled:true, accountEnabled:true, ¨
  10.     requireAPOP:true}
  11. end tell
  12.  
  13.