1. 07 Feb, 2001 1 commit
  2. 06 Feb, 2001 1 commit
  3. 05 Feb, 2001 8 commits
  4. 02 Feb, 2001 3 commits
  5. 01 Feb, 2001 3 commits
    • Alain Magloire authored
    • header_get_fvalue()
      mailutils/mailbox.h  : rename mailbox_recent_count() to
      mailbox_unseen_count()
      Alain Magloire authored
    • header.c mbx_mboxscan.c mbx_mbox.c : an other attempt for speed
      when parsing, the most common use headers (From, To, Date, CC,..)
      are save in the structure, so when retrieve them it will be
      faster.  Downside the tight parsing loop is not so thight and
      is frankly ugly.  More memory is being use per messages.
      It is hard to guess at this stage the memory patterns
      and where to optimise, probably my last attempt at this
      before the code become truly unmaintable.
      
      mbx_imap.c mailbox.c : I did not understand the difference between
      "recent" and "unseen" english words.  I think that "unseen"
      means new mail, an "recent" mail that was not read yet.
      So I had to rename some functions mailbox_recent_count()
      to mailbox_unseen_count(), but I maybe wrong ... sigh
      somebody with better english skill should explain this
      to me.
      
      mbx_pop.c include/header0.h include/mailbox0.h :
      Introduce header_set_fill() to let the mailboxes fill
      up a buffer that will contains the entire headers.
      Alain Magloire authored
  6. 29 Jan, 2001 4 commits
  7. 26 Jan, 2001 5 commits
  8. 25 Jan, 2001 3 commits
  9. 23 Jan, 2001 3 commits
  10. 20 Jan, 2001 2 commits
  11. 19 Jan, 2001 2 commits
  12. 17 Jan, 2001 2 commits
  13. 16 Jan, 2001 3 commits
    • include multiple times.  Compiler like Watcomm C, will scream loudly
      about definition of those variables multiple times.  Gcc is very silent
      about this.  So in pop3d.h we declare those variables extern and move the
      definition in pop3d.c.
      MAXHOSTNAMELEN is define in netinet/in.h on Solaris so we guard with
      #ifdef's.
      We were calling syslog("%s ", NULL); On solaris passing a NULL to  a printf
      function will crash and  burn, this was a FIXME I did not see it earlier
      the NULL was the place holder for the mailbox name.
      Alain Magloire authored
    • address.c mime.c misc.c: Always cast to (unsigned char) when using the ctype
      functions like isspace();
      mbx_default.c: If _PATH_SENDMAIL not set via paths.h use "/usr/spool/mail"
      message.c: uidl is now <md5 . time . sequene>
      tcp.c: INADDR_NONE is not define on solaris define it to -1.
      Alain Magloire authored