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

Only the 100 OLDEST emails are shown..
  • EskilEskil January 2011
    Hi, thanks for the program.
    I just installed it on my ipad - full support for ipad would be great.
    Now for the question:
    I only get my 100 oldest mails to NotesPro.
    Not random mails, just the oldest. And yes, I'm "international", in europe.
    The dates are correctly set up for dd/mm/yyyy (though it's actually shown as dd-mm-yyyy in my notes).
    The calender works correctly, there the date format is understood...
  • EskilEskil February 2011
    Really no comments?
  • renandrenand March 2011
    I got the same problem on my iPod and would like to know if there is a fix for this.
    Besides that, it works fine. Really cool app.
  • On some servers it exports in a reverse sort order. I will look into it and post some modified agent code.
  • krantzkrantz April 2011
    Please! some modified code! I get the last 100 oldest messages... it's not very useful that way...

  • TueTue December 2011
    Same here - would really like to see some solution or at least a hint to what needs to be changed on the server in order to make our day?
  • TueTue December 2011
    Looking at JM last March 22 - can probably take a long time before we see any solution. I decided to have a closer look at the script and the solution is actually pretty simple:

    In the GetMail part

    GetLastDocument change it to GetFirstDocument
    GetPrevDocument change it to GetNextDocument

    and now I have the newest 100 mails.
    -------------------------------------------------------------------------

    Set doc = view.GetFirstDocument
    'Print |<?xml version="1.0" encoding="ISO-8859-1"?>|
    Print ""
    For x = 1 To count
    loopStop = 0
    Dim body As String
    Print ""

    On Error Goto inetfromError
    If doc.InetFrom(0) = "" Then
    Print | |
    Print | |
    Else
    Print | |
    Print | |
    End If
    Print | |
    Print | |
    On Error Goto bodyError
    Print | Print | ]]>|
    On Error Goto ErrorThrower
    Print ""
    Set doc = view.GetNextDocument( doc )