X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mymail.git;a=blobdiff_plain;f=mymail.c;h=a04fde8eab17dba46399cac7ee8a1fd266628866;hp=770df43b7c534144a3cf382b3411f489997308b0;hb=HEAD;hpb=c35b861ba366be8bcd944e283aa90e3e1eb4fbe6 diff --git a/mymail.c b/mymail.c index 770df43..a04fde8 100644 --- a/mymail.c +++ b/mymail.c @@ -37,6 +37,7 @@ #include #include +#include #include #include #include @@ -48,7 +49,7 @@ #include #define MYMAIL_DB_MAGIC_TOKEN "mymail_index_file" -#define MYMAIL_VERSION "0.9.9" +#define MYMAIL_VERSION "0.9.10" #define MYMAIL_DB_FORMAT_VERSION 1 @@ -264,7 +265,7 @@ void print_usage(FILE *out) { fprintf(out, " -t, --use-leading-time\n"); fprintf(out, " use the time stamp from the leading line of each mail and not the Date:\n"); fprintf(out, " field\n"); - fprintf(out, " -f, --do-not-discard-mails-in-the-future\n"); + fprintf(out, " -f, --do-not-discard-mails-from-the-future\n"); fprintf(out, " do not ignore mails with a date more than 24h in the future\n"); fprintf(out, " -p , --db-pattern \n"); fprintf(out, " set the db filename pattern for recursive search\n"); @@ -380,6 +381,7 @@ void extract_mail(const char *mail_filename, unsigned long int position_in_mail, /* printf("Extract\n"); */ mail_file = safe_fopen(mail_filename, "r", "mbox for mail extraction"); + /* fchmod(fileno(mail_file), 0x660); */ fseek(mail_file, position_in_mail, SEEK_SET); if(fgets(raw_mbox_line, BUFFER_SIZE, mail_file)) { @@ -454,7 +456,8 @@ void update_time(int db_key, const char *db_value, time_t *t) { if(db_key == ID_LEADING_LINE) { c = db_value; - while(*c && *c != ' ') c++; while(*c && *c == ' ') c++; + while(*c && *c != ' ') c++; + while(*c && *c == ' ') c++; /* printf("From %s", db_value); */ strptime(c, "%a %b %e %k:%M:%S %Y", &tm); *t = mktime(&tm); @@ -581,8 +584,8 @@ int search_in_db(const char *db_filename, } } - printf("global_discard_mail_from_the_future = %d\n", - global_discard_mail_from_the_future); + /* printf("global_discard_mail_from_the_future = %d\n", + global_discard_mail_from_the_future); */ if(nb_extracted_mails < global_nb_mails_max && current_mail_filename[0] && @@ -808,7 +811,7 @@ static struct option long_options[] = { { "version", no_argument, 0, 'v' }, { "quiet", no_argument, 0, 'q' }, { "use-leading-time", no_argument, 0, 't' }, - { "do-not-discard-mails-in-the-future", no_argument, 0, 'f' }, + { "do-not-discard-mails-from-the-future", no_argument, 0, 'f' }, { "db-file-output", 1, 0, 'd' }, { "db-pattern", 1, 0, 'p' }, { "db-root", 1, 0, 'r' }, @@ -833,12 +836,16 @@ struct time_criterion { static struct time_criterion time_criteria[] = { + { "1h", 0, 1, -1, -1 }, + { "2h", 0, 2, -1, -1 }, + { "4h", 0, 4, -1, -1 }, { "8h", 0, 8, -1, -1 }, { "24h", 0, 24, -1, -1 }, { "48h", 0, 48, -1, -1 }, { "week", 0, 24 * 7, -1, -1 }, { "2weeks", 0, 24 * 14, -1, -1 }, { "month", 0, 24 * 31, -1, -1 }, + { "semester", 0, 24 * 185, -1, -1 }, { "trimester", 0, 24 * 92, -1, -1 }, { "year", 0, 24 * 365, -1, -1 }, @@ -1055,6 +1062,9 @@ int main(int argc, char **argv) { struct search_condition search_conditions[MAX_NB_SEARCH_CONDITIONS]; struct alias_node *a, *b; + /* Group and others have no access */ + umask(S_IRWXG | S_IRWXO); + if(regcomp(&global_leading_from_line_regexp, LEADING_FROM_LINE_REGEXP_STRING, 0)) { fprintf(stderr, "mymail: Cannot compile leading \"from\" line regexp. That is strange.\n");