Client --> LotusScript (not Formula). 6. Paste the code below into the code window: Sub Click(Source As Button) Dim session As New notessession Dim doc As notesdocument Set doc=session.currentdatabase.getprofiledocument("OutofOfficeProfile") If Not doc.isnewnote Then Call doc.remove(True) End Sub 7. Click the new button so the OOO profile is deleted. 8. In your mail file, choose Tools --> Out of Office and enable the OOO again. ">
> |  
re... : out of office
maurizio1960
La causa del comportamento potrebbe essere il profilo di OoO corrotto. In alcuni casi succede che un profilo corrotto faccia si che l\'agente non risponda mai, neanche la prima volta.
Per cancellare il profilo puoi usare questa procedura.
To work around this issue, you can run a LotusScript agent that deletes the corrupt OOO profile, as follows:

1. Back up your mail file.

2. Create a new memo.

3. From the Create menu, choose Hotspot --> Button.

4. Add a label to the button, such as "Delete OOO Profile".

5. Set this agent to Run --> Client --> LotusScript (not Formula).

6. Paste the code below into the code window:

Sub Click(Source As Button)
Dim session As New notessession
Dim doc As notesdocument
Set doc=session.currentdatabase.getprofiledocument("OutofOfficeProfile")
If Not doc.isnewnote Then Call doc.remove(True)
End Sub

7. Click the new button so the OOO profile is deleted.

8. In your mail file, choose Tools --> Out of Office and enable the OOO again.


Maurizio Andreotti


problema con out of office - maverik08 -
    re : out of office - maurizio1960 -
        re... : out of office - maverik08 -
            You are here re... : out of office - maurizio1960 -