Hi
I have created an automated process in lotusscript to register a user. In the code I fill the quota and threshold property of the Registration class before I call the RegisterNewUser method. here is a part of the code.
reg.MailQuotaSizeLimit = Clng(Quota_sf)
reg.MailQuotaWarningThreshold = Clng(Threshold_sf)
Call reg.RegisterNewUser(xLastname, tmpIDPath$ + ""+idfilename, mailserver_sf, xFirstname, initials, CertPassword, location, comment, mailfile, fwddomain, Randompw)
After the user has been registered the MaxSize is set to No Limit and the threshold to 0. While I set the poperty at registration to 80 (quota) and 60() threshold.
What else must I do in the code to make sure the Quota and threshold is set to the numbers I set in the properties?
Regards