Hi, i have searched this forum for a solution to the mail preferences bug in R6 (“Availability invalid”). I tried these suggested solutions (authors in parenthesis):
1- (A. Monga)
Put a whole lot of debug messages and found that the error was happening because time-range was being calculated for Sunday and Saturday, even though Sunday were not available. Made sunday & Saturday available and that fixed the problem.
2- (Ben Rose)
-
Turn off availability for all days of the week.
-
Save and close preferences.
-
Close mail file.
-
Re-open mailfile.
-
Re-set preferences as required.
3- (Ian Thomas)
Another post has mentioned that you can fix this problem by deleting the profile doc. Just to make things a little easier for anyone out there, here’s some code to do this, which you can drop into an agent and run:
Sub Initialize
Dim s As New notessession
Dim db As NotesDatabase
Dim pdoc As NotesDocument
Set db = s.CurrentDatabase
Set pdoc = db.GetProfileDocument(“CalendarProfile”)
Call pdoc.Remove(True)
End Sub
4- Edit and save preferences from web.
I no longer receive an error message.
THE PROBLEM: the preferences dialog box always
sets availability to 0.00 or 00.00 - 00.00, 00.00 - 00.00 no matter how many times i try to change that.
Nobody else has this problem??? Any hints?
Thanks.