Use the ICIResetPasswordSettings interface to configure password reset details. (Use ICISite::GetResetPasswordSettings and ICISite::SetResetPasswordSettings to retrieve and set the password settings for a Site.)
interface ICIResetPasswordSettings : IDispatch {
See also see ICISite::GetResetPasswordSettings, ICISite::SetResetPasswordSettings; ICIClientSettings::GetResetPasswordSettings, ICIClientSettings::SetResetPasswordSettings.
Members |
How it's used |
Applicable Versions |
Property DaysPriorPasswordExpirationToRemindUser As Long
For an example using this property, refer to the GetCertInfo script in Script Examples. |
Retrieve or specify the number of days prior to expiration to notify the user. If "0" is specified, no notification is sent. (Equivalent to the check box in the dialog box not selected.) HRESULT DaysPriorPasswordExpirationToRemindUser([out,retval] LONG* pVal); HRESULT DaysPriorPasswordExpirationToRemindUser([in] LONG newVal); Example (VBScript): Retrieving: MsgBox "Remind before expiration: " & CStr(oRPS.DaysPriorPasswordExpirationToRemindUser) Specifying: oRPS.DaysPriorPasswordExpirationToRemindUser = 3 |
EFT Server v6.3 and later |
Property MaxPasswordAgeDays As Long
For an example using this property, refer to the GetCertInfo script in Script Examples. |
Retrieve or specify the number of days at which to expire the password. If "0" is specified, the password does not expire. (Equivalent to the check box in the dialog box not selected.) HRESULT MaxPasswordAgeDays([out,retval] LONG* pVal); HRESULT MaxPasswordAgeDays([in] LONG newVal); Example (VBScript): Retrieving: MsgBox "Max password age is: " & CStr(oRPS.MaxPasswordAgeDays) Specifying: oRPS.MaxPasswordAgeDays = 100 |
EFT Server v6.3 and later |
Property SendEMailBeforeExpiration As Boolean
For an example using this property, refer to the GetCertInfo script in Script Examples. |
Retrieve or specify whether to send an email notification before the password expires. HRESULT SendEMailBeforeExpiration([out,retval] VARIANT_BOOL* pVal); HRESULT SendEMailBeforeExpiration([in] VARIANT_BOOL newVal); Example (VBScript): Retrieving: MsgBox "Send email before expiration: " & CStr(oRPS.SendEMailBeforeExpiration) Specifying: oRPS.SendEMailBeforeExpiration = False |
EFT Server v6.3 and later |
Property SendEMailUponExpiration As Boolean
For an example using this property, refer to the GetCertInfo script in Script Examples. |
Retrieve or specify whether to send an email when the password expires. HRESULT SendEMailUponExpiration([out,retval] VARIANT_BOOL* pVal); HRESULT SendEMailUponExpiration([in] VARIANT_BOOL newVal); Example (VBScript): Retrieving: MsgBox "Send email on expiration: " & CStr(oRPS.SendEMailUponExpiration) Specifying: oRPS.SendEMailUponExpiration = False |
EFT Server v6.3 and later |
The ICIResetPasswordSettings interface properties correlate to the following fields and controls in the EFT Server administration interface:
