From 451309697d902647a8043ce1ee083e96712d3cd0 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 9 Feb 2020 15:07:22 +0200 Subject: [PATCH] server: 'sent' does not use 'maildir' anymore So don't require it. --- mu/mu-cmd-server.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mu/mu-cmd-server.cc b/mu/mu-cmd-server.cc index 235b7b39..250479a3 100644 --- a/mu/mu-cmd-server.cc +++ b/mu/mu-cmd-server.cc @@ -1253,9 +1253,7 @@ make_command_map (Context& context) cmap.emplace("sent", CommandInfo{ ArgMap{ {"path", ArgInfo{Type::String, true, - "path to the message file" }}, - {"maildir", ArgInfo{Type::String, true, - "maildir the messages resides under" }} + "path to the message file" }} }, "tell mu about a message that was sent", [&](const auto& params){sent_handler(context, params);}});