return (0);
}
-static LIST *make_references(ENVELOPE *e)
-{
- LIST *t, *l;
-
- l = mutt_copy_list(e->references);
-
- if(e->message_id)
- {
- t = mutt_new_list();
- t->data = safe_strdup(e->message_id);
- t->next = l;
- l = t;
- }
-
- return l;
-}
-
static int fetch_recips (ENVELOPE *out, ENVELOPE *in, int flags)
{
ADDRESS *tmp;
return 0;
}
+static LIST *make_references(ENVELOPE *e)
+{
+ LIST *t, *l;
+
+ l = mutt_copy_list(e->references);
+
+ if(e->message_id)
+ {
+ t = mutt_new_list();
+ t->data = safe_strdup(e->message_id);
+ t->next = l;
+ l = t;
+ }
+
+ return l;
+}
+
static int
envelope_defaults (ENVELOPE *env, CONTEXT *ctx, HEADER *cur, int flags)
{