| All functions | Legacy functions | About function names |
Return whether any managed vuMailKit profile has already been saved for the current Windows user.
This helper is mainly useful for:
vuHaveStoredProfilevuHaveStoredProfile(),LONG,PROC,PASCAL,RAW,NAME('vuHaveStoredProfile')1 = at least one managed profile exists0 = no managed profile exists, or the check failedvuHaveStoredProfile() checks the managed profile store under the current Windows user and reports whether any saved managed profile files are present.
This function only answers the managed-profile question.
It does not mean:
That distinction matters for migration scenarios. An older vuMail application may still have working legacy settings even when no managed profile exists yet.
HaveProfile LONG
HaveProfile = vuHaveStoredProfile()
IF (HaveProfile = 0)
MESSAGE('No secure vuMailKit profile was found. You may want to run the setup wizard now.')
END
0 may simply mean the developer has not moved the application to managed profiles yet.0 is a good time to offer the setup wizard.| All functions | Legacy functions | About function names |