Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In Apply for Membership

Categories

All fine. Only last 10 emails
  • bib1112bib1112 September 2011
    I've recently installed Tne NotesPro over Lotus Domino 6.5 and all works very well. Is there any way to show at least the last 50 emails and not only the last 10 emails ? Should be modified the Agent Code GetEmail where count = 10 ?

    if GetQueryElement(queryString, "count")= "" Then
    count = 10
    Else
    count = Cint(GetQueryElement(queryString, "count"))
    End If
  • stp1958stp1958 September 2011
    Hi bib1112, I got the same problem. Changne the line "count = 100" to "count = 100" and the latest 100 emails will be diplayed. I don't know if it dumps when count > 100. Try it. Bye
  • stp1958stp1958 September 2011
    Hi stp1958. Tnks a lot. I've changed count=10 to count=100 and it works without problem. Nice.