* update attachment-extraction (ie., 'mu extract'); still WIP, but basics are working

This commit is contained in:
Dirk-Jan C. Binnema
2010-08-29 22:13:06 +03:00
parent a7a08dde7f
commit 15ad934d81
6 changed files with 183 additions and 54 deletions

View File

@ -61,9 +61,10 @@ struct _MuConfigOptions {
mode_t dirmode; /* mode for the created maildir */
/* options for extracting parts */
gboolean *all_parts; /* extract all parts */
gboolean *all; /* extract all attachments */
char *targetdir; /* where to save the attachments */
gboolean *save_all; /* extract all parts */
gboolean *save_attachments; /* extract all attachment parts */
gchar *parts; /* comma-sep'd list of parts to save */
char *targetdir; /* where to save the attachments */
};
typedef struct _MuConfigOptions MuConfigOptions;