Can you auto-register a bunch of members to a forum by uploading a list of member user names and emails or by some other easy bulk method?
It will be possible with the next release. I added an XML and CSV Exporter and Importer.
It will be possible to import users via xml
<YafUserList>
<YafUser>
<Name>TestUser</Name>
<DisplayName>TestUser</DisplayName>
<Email>TestUser@mydomain.com</Email>
</YafUser>
</YafUserList>
or via csv
Name,DisplayName,Email
TestUser,TestUser,TestUser@mydomain.com
Its also possible to add all the profile properties.
If you want parse a password you need to add
<YafUserList>
<YafUser>
<Name>TestUser</Name>
<DisplayName>TestUser</DisplayName>
<Email>TestUser@mydomain.com</Email>
<Password>PASS1243</Password>
<SecurityQuestion>Whats the Question?</SecurityQuestion>
<SecurityAnswer>I dont know.</SecurityAnswer>
</YafUser>
</YafUserList>
If no password is defined, it will be auto. generated. And emailed to the new user.