Hi csbishop,
Which How-To's are you referring to? In general omloadfile is used when migrating users because there is a co-existence period when some users are on Scalix and some are still on the legacy mail system.
If you're just trying to create 300 mailboxes, then you're much better off using the ommaddu with the --bulk option. The command line would be something like:
Code: Select all
omaddu --bulk --class limited -p password -e mailnode users.txt
which will create the users are limited with the pre-expired password of "password". Replace "mailnode" with your mailnode and "users.txt" with the list of your user names. The format of the users.txt file is:
@ Firstname Lastname
@ Firstname Lastname
@ Firstname Lastname
and so on. Or if you want to specify their Internet Addresses, the format would be:
@ Firstname Lastname/ia=firstname.lastname@domain.com
@ Firstname Lastname/ia=firstname.lastname@domain.com
@ Firstname Lastname/ia=firstname.lastname@domain.com
Take a look and the man pages for omaddu for details.
Thanks,
Rachel