diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-10-25 11:18:25 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-10-25 11:18:25 +0100 |
commit | 11ce40d8d043155bc87a5f564c9064e06fc4f184 (patch) | |
tree | 3f569ab2758804fde2441d5de5179f5afbc300bb /src | |
parent | bc062cd5d29c98fce2117533eaa2d811e4dc57d0 (diff) |
Output newline after list of message IDs output by "-Mxxx" operations
Diffstat (limited to 'src')
-rw-r--r-- | src/src/exim.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/src/exim.c b/src/src/exim.c index 3290d6346..6a2e7a644 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -4300,6 +4300,11 @@ if (msg_action_arg > 0 && msg_action != MSG_DELIVER && msg_action != MSG_LOAD) for (i = msg_action_arg; i < argc; i++) if (!queue_action(argv[i], msg_action, NULL, 0, 0)) yield = EXIT_FAILURE; + switch (msg_action) + { + case MSG_REMOVE: MSG_DELETE: case MSG_FREEZE: case MSG_THAW: break; + default: printf("\n"); break; + } } else if (!queue_action(argv[msg_action_arg], msg_action, argv, argc, |