summaryrefslogtreecommitdiffstats
path: root/pop.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2016-08-01 15:04:45 -0700
committerKevin McCarthy <kevin@8t8.us>2016-08-01 15:04:45 -0700
commite6bafd5779a02882a20b1f5d65b6598341217ed6 (patch)
tree780e5ed24b29c7d9982bf0c17fe2e9dba8d27b2e /pop.c
parent4f33c66c210c5b8c73e095c8ff2a392ddae210f9 (diff)
Convert mx_open_mailbox_append() to use ctx->mx_ops.
Set the flag MUTT_NEWFOLDER to signal Maildir and MH to create the directory structure. Distribute the "open append" code to mbox, mh, and imap/imap.c. Set pop's mx_ops handler to NULL to signal it is not supported.
Diffstat (limited to 'pop.c')
-rw-r--r--pop.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pop.c b/pop.c
index 972b7152..b6f89169 100644
--- a/pop.c
+++ b/pop.c
@@ -937,6 +937,7 @@ fail:
struct mx_ops mx_pop_ops = {
.open = pop_open_mailbox,
+ .open_append = NULL,
.close = pop_close_mailbox,
.open_msg = pop_fetch_message,
.close_msg = pop_close_message,