summaryrefslogtreecommitdiff
path: root/frm
AgeCommit message (Collapse)AuthorFiles
2002-12-23Added initial NLS supportWojciech Polak1
2002-12-05Removed unneded inclusion of getopt.hSergey Poznyakoff1
2002-12-04UpdatedSergey Poznyakoff1
2002-12-04Override FOLDER environment variable.Sergey Poznyakoff1
2002-11-30Removed traces of ansi2knr.cSergey Poznyakoff1
2002-11-22Test frm -l on long to: headers.Sergey Poznyakoff1
2002-09-21Fixed indentation.Sergey Poznyakoff1
2002-09-03Added copyleft header.Sergey Poznyakoff2
2002-08-27Added new testsuitesSergey Poznyakoff5
2002-08-27Fixed return status when the mailbox does not exist.Sergey Poznyakoff1
2002-08-26Don't bail out if the mailbox does not exist.Sergey Poznyakoff1
2002-08-22Fixed coredump when MAIL environment variable has an empty value.Sergey Poznyakoff1
2002-08-07Removed argp_program_bug_address. Use PACKAGE_STRING, provided by the new ↵Sergey Poznyakoff1
autoconf.
2002-05-14ignoring .gdbinitSam Roberts1
2002-05-14Removed redundant mu_ prefix from mailutils/mu_argp.h.Sam Roberts1
2002-05-13Changed mu_argp.h to mailutils/mu_argp.hSergey Poznyakoff1
2002-04-11Fixed spelling of "license" option.Sergey Poznyakoff1
2002-04-11mailutils capabilities were split, and it now reports failure, ratherSam Roberts1
than calling failure seccess.
2002-03-25Finished split of forward declarations into <mailutils/types.h>. Now youSam Roberts1
have to include the header for the functions you want to use, but you can change a header without causing a recompile of everything. Also added some missing LGPL file headers.
2002-03-13Removed @ARGPINCS@ and @ARGPLIBS@Sergey Poznyakoff1
2002-03-08Use mu_argp_parse.Sergey Poznyakoff1
2002-02-22Added ARGP stuff.Sergey Poznyakoff1
2002-02-22Handle mailutils-common arguments.Sergey Poznyakoff1
2002-02-20The exe_DEPENDENCIES lines prevent the _LDADD lines being used forSam Roberts1
dependencies, so the exes dont' get rebuilt when the libraries are rebuilt, unless explicitly listed.
2002-02-13Use libtool for built ARGP and libmailutilsJeff Bailey1
2001-11-12 Support in POP3 maibox client for APOP authentication.Alain Magloire1
This should work, now: #MAIL='pop://alain;AUTH=+APOP@localhost' ./frm Pop passwd: secret <--- apop secret ... * mailbox/folder_pop.c (folder_pop_get_authority): Enable APOP code. * mailbx/mbx_pop.c: Add md5-rsa.h. (_pop_apop): New function to do APOP authentication. (_pop_user): Factor some code in pop_get_user() and pop_get_passwd() to share with _pop_apop(). (pop_get_user): New function, get the user login. (pop_get_passwd): New function, get the user passwd. (pop_get_md5): New function get timestamp. * mailbox/url_pop.c: Add 2001 in Copyright. * pop3d/apop.c: Remove trailing spaces. * frm/frm.c: New option -d, --debug. To put the mailbox_t in debug mode, very practicle to watch the traffic.
2001-10-15 The code for IMAP, is a pain, the rewrite should clean all thoseAlain Magloire1
hacks. Something to remember for the mailbox2 is to do some smart caching, the current buffered stream is not good enough. * configure.in: VERSION is set to 0.0.9a for the alpha. * frm/frm.c: Protype for usage(). get_personal() should use const char *. * mail/mail.c (main): Use mailbox_scan() instead of mailbox_messages_count () it is faster for IMAP. * mailbox/mbx_imap.c(imap_get_message0): Remove the stream_setbufsiz() it is no longer used. (imap_message_readline imap_body_readline): Bug fix, readline will only consume up to '\n' even though the buffer is bigger. So we have to adjust the offset/lines/size to reflect what we consume. This is not very good for example doing: { off_t offset = 14; char buffer[512]; stream_readline (stream, buffer, sizeof buffer, offset, NULL); ... } Will send to the impap server. C: g445 FETCH 4 BODY.PEEK[2]<0.2048> S: * 4 FETCH (BODY[2]<0> {739} S: g445 OK FETCH completed This is waste since the first line is only 37 bytes. We will have to come up on the second API with some smart caching. * mailbox/memory_stream.c (_memory_write): Nasty bug was not updating the stream size. * mailbox/stream.c(stream_readline): Take care of known case where the buflen is 0 or 1.
2001-10-14Do not output extra newline when running with --field option.Sergey Poznyakoff1
2001-09-20Print newline not depending on the presence of Subject header.Sergey Poznyakoff1
2001-07-19 * mailbox/mbx_mbox.c (mbox_messages_count): This function doesAlain Magloire1
not call the observers, the callback function, on the mbox_scan() does. * frm/frm.c (main): call mailbox_scan () instead of mailbox_messages_count () since we want to be notified.
2001-05-02See ChangeLogAlain Magloire1
2001-04-16 Create a argp directory, it contains the necessaryAlain Magloire1
files to build a standalone libargp.a * argp: New directory. argp-ba.c, argp-eexst.c, argp-fmtstream.c, argp-fmtstream.h argp-fs-xinl.c, argp-help.c, argp-namefrob.h, argp-parse.c argp-pv.c, argp-pvh.c, argp-xinl.c, argp.h, pin.c. * mail/mail.c: Comment out the code that use readline specifics WITH_READLINE. * mail/mail.h: Likewised. * mail/util.c: Likewised. And still mail will not compile for QNX ... #&*#$^&#^)(
2001-04-16Remove -DTESTING macro.Alain Magloire1
2001-03-13frm.c : support for --fieldAlain Magloire1
2001-02-09CVS MaintenanceJeff Bailey1
2001-01-29* frm/frm.c : Forget to add --summary option and fix return status.Alain Magloire1
When being very quiet just freopen(/dev/null, w, stdout).
2001-01-26configure.in: generate frm/MakefileJakob Kaivo1
frm/Makefile.am: s/from/frm/
2001-01-20pop: Check for Berkeley DB in configure and define HAVE_DB_H and WITH_BDB2Alain Magloire1
pop: RETR and TOP if buffer is not a full line i.e terminated by a '\n' realloc the buffer and try again. pop: STAT remove excess comment. pop: user use the /dev/null scheme if mailbox does not exist. mailbox: buglet if the mailbox format we were reading less then expected.
2001-01-19Instead of writing the documentation, found a diversion "frm" is a cloneAlain Magloire2
to the "frm" that comes with elm package. It was written in less then 15 minutes, cool.

Return to:

Send suggestions and report system problems to the System administrator.