From: Ken Hornstein Date: Fri, 16 Mar 2012 03:00:06 +0000 (-0400) Subject: Call readconfig() on mhn.defaults so we get default entries in for use X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/0270817c5e0c47f23b890351d69ac18f09254175?ds=sidebyside;hp=4582f97fd2ce5bdb3ac54fbb099c80965e379a9e Call readconfig() on mhn.defaults so we get default entries in for use with attach. --- diff --git a/uip/sendsbr.c b/uip/sendsbr.c index 04d6ea92..91eaddfa 100644 --- a/uip/sendsbr.c +++ b/uip/sendsbr.c @@ -192,6 +192,7 @@ attach(char *attachment_header_field_name, char *draft_file_name, int has_body; /* draft has a message body */ int length; /* length of attachment header field name */ char *p; /* miscellaneous string pointer */ + FILE *fp; /* pointer for mhn.defaults */ /* * Open up the draft file. @@ -301,6 +302,11 @@ attach(char *attachment_header_field_name, char *draft_file_name, * that specify attachments. Add a mhbuild MIME composition file for each. */ + if ((fp = fopen (p = etcpath ("mhn.defaults"), "r"))) { + readconfig ((struct node **) NULL, fp, p, 0); + fclose(fp); + } + rewind(draft_file); while (get_line() != EOF && *field != '\0' && *field != '-') {