summaryrefslogtreecommitdiff
path: root/libproto/imap/appmsg.c
diff options
context:
space:
mode:
Diffstat (limited to 'libproto/imap/appmsg.c')
-rw-r--r--libproto/imap/appmsg.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libproto/imap/appmsg.c b/libproto/imap/appmsg.c
index 45796590a..04c54267c 100644
--- a/libproto/imap/appmsg.c
+++ b/libproto/imap/appmsg.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2011-2019 Free Software Foundation, Inc.
+ Copyright (C) 2011-2024 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -28,9 +28,9 @@
#include <mailutils/sys/imap.h>
int
-mu_imap_append_message (mu_imap_t imap, const char *mailbox, int flags,
- struct tm *tm, struct mu_timezone *tz,
- mu_message_t msg)
+mu_imap_append_message (mu_imap_t imap, const char *mailbox,
+ mu_message_t msg, mu_envelope_t env,
+ mu_attribute_t atr)
{
mu_stream_t str;
int rc;
@@ -38,7 +38,7 @@ mu_imap_append_message (mu_imap_t imap, const char *mailbox, int flags,
rc = mu_message_get_streamref (msg, &str);
if (rc == 0)
{
- rc = mu_imap_append_stream (imap, mailbox, flags, tm, tz, str);
+ rc = mu_imap_append_stream (imap, mailbox, env, atr, str);
mu_stream_unref (str);
}
return rc;

Return to:

Send suggestions and report system problems to the System administrator.