X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=attach.c;h=913dbb7522fbf280c5f19936d3249acfa206c675;hp=4e985c17ea0fe8a6fcc7b3e1031719ba7cd7237f;hb=23265c6d12ecb744cb38689e9d78a448089ac351;hpb=bbc4fd52516a8afefbd14c77e34f8389d6f0a6ed diff --git a/attach.c b/attach.c index 4e985c1..913dbb7 100644 --- a/attach.c +++ b/attach.c @@ -156,7 +156,7 @@ int mutt_compose_attachment (BODY * a) /* Remove headers by copying out data to another file, then * copying the file back */ - fseek (fp, b->offset, 0); + fseeko (fp, b->offset, 0); mutt_mktemp (tempfile); if ((tfp = safe_fopen (tempfile, "w")) == NULL) { mutt_perror (_("Failure to open file to strip headers.")); @@ -238,17 +238,20 @@ int mutt_edit_attachment (BODY * a) command, sizeof (command))) { /* For now, editing requires a file, no piping */ mutt_error _("Mailcap Edit entry requires %%s"); + goto bailout; } else { mutt_endwin (NULL); - if (mutt_system (command) == -1) + if (mutt_system (command) == -1) { mutt_error (_("Error running \"%s\"!"), command); + goto bailout; + } } } } else if (a->type == TYPETEXT) { /* On text, default to editor */ - mutt_edit_file (NONULL (Editor), newfile); + mutt_edit_file (NONULL (Editor), a->filename); } else { rfc1524_free_entry (&entry); @@ -463,7 +466,7 @@ int mutt_view_attachment (FILE * fp, BODY * a, int flag, HEADER * hdr, if (fp && !use_mailcap && a->filename) { /* recv case */ strfcpy (pagerfile, a->filename, sizeof (pagerfile)); - mutt_adv_mktemp (pagerfile, sizeof (pagerfile)); + mutt_adv_mktemp (NULL, pagerfile, sizeof (pagerfile)); } else mutt_mktemp (pagerfile); @@ -721,7 +724,7 @@ int mutt_save_attachment (FILE * fp, BODY * m, char *path, int flags, hn->msgno = hdr->msgno; /* required for MH/maildir */ hn->read = 1; - fseek (fp, m->offset, 0); + fseeko (fp, m->offset, 0); if (fgets (buf, sizeof (buf), fp) == NULL) return -1; if (mx_open_mailbox (path, M_APPEND | M_QUIET, &ctx) == NULL) @@ -756,7 +759,7 @@ int mutt_save_attachment (FILE * fp, BODY * m, char *path, int flags, mutt_perror ("fopen"); return (-1); } - fseek ((s.fpin = fp), m->offset, 0); + fseeko ((s.fpin = fp), m->offset, 0); mutt_decode_attachment (m, &s); if (fclose (s.fpout) != 0) { @@ -1013,3 +1016,30 @@ int mutt_print_attachment (FILE * fp, BODY * a) return 0; } } + +int mutt_attach_check (HEADER* hdr) { + int found = 0; + char buf[LONG_STRING]; + char *p = NULL; + FILE* fp = NULL; + regmatch_t pmatch[1]; + + if (!hdr || !hdr->content || !((regex_t*) AttachRemindRegexp.rx) || + (fp = safe_fopen (hdr->content->filename, "r")) == NULL) + return (0); + + while (!found && fgets (buf, sizeof (buf), fp)) { + p = buf; + while (p && *p) { + if (regexec ((regex_t*) AttachRemindRegexp.rx, p, 1, + pmatch, 0) == 0) { + found = 1; + break; + } + p++; + } + } + fclose (fp); + + return (found); +}