I have a quick question, that will probably be very easily addressed here:
I am performing a bulk import of a list of users, from a file in the form:
FirstName,Surname,Username,Password
The thing is, that import works flawlessly, however what I need to do is then go back and add the aliases for each users. Some users have many aliases.
So on the command line, how would I add additional addresses/aliases to the user.
The adduser command is basically:
system ("omaddu -n \'$fullname/$mailnode/IA=\"$fullname\" <$user\@$domain>\' -p $pass $user -class limited");
But assuming a user had three aliases that need to be added after the fact, how can i go back in a bulk script such as one that has the users full name and the additional alias one on each line?
For that matter, how can I just add another alias on the command line for an existing user?
I hope at least 5% of this post made sense!