From 0270817c5e0c47f23b890351d69ac18f09254175 Mon Sep 17 00:00:00 2001 From: Ken Hornstein Date: Thu, 15 Mar 2012 23:00:06 -0400 Subject: [PATCH] Call readconfig() on mhn.defaults so we get default entries in for use with attach. --- uip/sendsbr.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/uip/sendsbr.c b/uip/sendsbr.c index 04d6ea9..91eaddf 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 != '-') { -- 1.7.10.4