* implement output-as-symlinks-to-messages functionality

This commit is contained in:
Dirk-Jan C. Binnema
2010-01-01 15:37:39 +02:00
parent 366c1ea44f
commit 1cd004c9b7
4 changed files with 88 additions and 19 deletions

View File

@ -29,27 +29,28 @@
struct _MuConfigOptions {
/* general options */
gboolean quiet; /* don't give any output */
gboolean debug; /* spew out debug info */
const char *muhome;/* the House of Mu */
gboolean version; /* request mu version */
gboolean log_stderr; /*log to stderr (instead of logfile)*/
gboolean log_append; /* append to log (instead of overwriting)*/
gchar** params; /* parameters (for querying) */
gboolean quiet; /* don't give any output */
gboolean debug; /* spew out debug info */
char *muhome;/* the House of Mu */
gboolean version; /* request mu version */
gboolean log_stderr; /*log to stderr (instead of logfile)*/
gboolean log_append; /* append to log (don't overwrite)*/
gchar** params; /* parameters (for querying) */
/* options for indexing */
const char *maildir; /* where the mails are */
char *maildir; /* where the mails are */
gboolean cleanup; /* cleanup deleted mails form db */
gboolean reindex; /* re-index existing mails */
/* options for querying */
gboolean xquery; /* give the Xapian query instead of
search results */
const char *fields; /* fields to show in output */
char *fields; /* fields to show in output */
char *sortfield; /* field to sort by (string) */
char *linksdir; /* maildir to output symlinks */
const char *sortfield; /* field to sort by (string) */
gboolean descending; /* sort descending? */
gboolean ascending;
};