zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH 1/4] _postfix: Use mailq to obtain queue id's.
@ 2016-08-27 18:44 Daniel Shahaf
  2016-08-27 18:44 ` [PATCH 2/4] _postfix: Complete 'postqueue'. Also minor tweaks to 'postsuper' Daniel Shahaf
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Daniel Shahaf @ 2016-08-27 18:44 UTC (permalink / raw)
  To: zsh-workers

'mailq' is usually in */bin (as opposed to */sbin) and so is more likely
to be in $PATH.
---
 Completion/Unix/Command/_postfix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Completion/Unix/Command/_postfix b/Completion/Unix/Command/_postfix
index 0ced6c2..6811569 100644
--- a/Completion/Unix/Command/_postfix
+++ b/Completion/Unix/Command/_postfix
@@ -1,7 +1,7 @@
 #compdef postsuper
 
 _postfix_queue_id() {
-compadd ${${(M)${(f)"$(postqueue -p)"}:#(#s)([0-9A-F]##)*}/(#s)(#b)([0-9A-F]##)*/$match[1]}
+  compadd "$@" -- ${${(M)${(f)"$(_call_program mailq 'mailq')"}:#(#s)([0-9A-F]##)*}/(#s)(#b)([0-9A-F]##)*/$match[1]}
 }
 
 case $service in


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-08-27 18:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-27 18:44 [PATCH 1/4] _postfix: Use mailq to obtain queue id's Daniel Shahaf
2016-08-27 18:44 ` [PATCH 2/4] _postfix: Complete 'postqueue'. Also minor tweaks to 'postsuper' Daniel Shahaf
2016-08-27 18:44 ` [PATCH 3/4] _postfix: Complete 'postconf' Daniel Shahaf
2016-08-27 18:44 ` [PATCH 4/4] _postfix: Support $enable_long_queue_ids Daniel Shahaf

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).