Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 3/4] _postfix: Complete 'postconf'.
- X-seq: zsh-workers 39110
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 3/4] _postfix: Complete 'postconf'.
- Date: Sat, 27 Aug 2016 18:44:49 +0000
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=VAXaw9tGn6jnRr4m u1wXcTy1bSg=; b=e1o80UqcwstiDZ1Nh2W8cTE/IH5pZevexb40BLENC3rqrbTj mpU/L/GwjqeKDKfUFPw6nkYoAZAmA9acDp8Cytzqio6ArZnKcUujUWyhlOofX5Re Fh8E91xkGAuLsDon+bwL4oPneP4jYoDZUQFj9FwalBqrG93SUtSVaDAgJCM=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=VAXaw9tGn6jnRr4 mu1wXcTy1bSg=; b=ZN1A1KtsW57ewfp8yZvsEB5qYMi8kjP59Jiu2Sgoq2iLCTK mg6bcUhUTfWUTNXRzQ7jBPRW5ez56Pyn79ck6NkWcvY8QGJrtjH0UEY4LGOA0gdG iNCGz6NiRD5rVrFL4gkD7F1uGEOvyj6x2IguLL/zEG64fGCtRN851mBcKXIA=
- In-reply-to: <1472323490-30345-1-git-send-email-danielsh@fujitsu.shahaf.local2>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <1472323490-30345-1-git-send-email-danielsh@fujitsu.shahaf.local2>
---
Completion/Unix/Command/_postfix | 107 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 106 insertions(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_postfix b/Completion/Unix/Command/_postfix
index 2e6a0a0..8880dbf 100644
--- a/Completion/Unix/Command/_postfix
+++ b/Completion/Unix/Command/_postfix
@@ -1,9 +1,36 @@
-#compdef postqueue postsuper
+#compdef postconf postqueue postsuper
+
+# Last updated from postfix 3.1.0.
+
+local context state state_descr line
+typeset -A opt_args
+integer NORMARG
_postfix_queue_id() {
compadd "$@" -- ${${(M)${(f)"$(_call_program mailq 'mailq')"}:#(#s)([0-9A-F]##)*}/(#s)(#b)([0-9A-F]##)*/$match[1]}
}
+_postfix_main_cf_parameter() {
+ local expl
+ # Note for the future: if $mail_version >= 3.1, we can pass -H instead of
+ # stripping the = signs by hand.
+ _wanted parameters expl 'main.cf parameter' compadd "$@" -- ${${(f)"$(_call_program postconf-defaults "${(q)words[1]} -d")"}%% =*}
+}
+
+_postfix_main_cf_parameter_and_value() {
+ # Note: be careful not to accidentally run 'postconf foo=bar' here.
+ #
+ # The '-P 1' syntax chooses the shortest match. If the '1' were removed,
+ # completing «postconf foo=bar=<TAB>» would change main.cf. So, don't remove
+ # it.
+ if compset -P 1 '*='; then
+ local value="`_call_program postconf-get-value-at-dir "${(q)words[1]} ${opt_args[-c]+"-c ${(q)opt_args[-c]}"} -h -- ${(q)IPREFIX%=}"`"
+ [[ -n $value ]] && compadd "$@" -- $value
+ else
+ _postfix_main_cf_parameter -S=
+ fi
+}
+
case $service in
(postsuper)
_arguments -C -s : \
@@ -27,4 +54,82 @@ case $service in
'(-f -i -j -p -s)-p[print the queue in traditional format]' \
'(-f -i -j -p -s)-s[immediately deliver messages to specified site]:site:_hosts'
;;
+ (postconf)
+ local -a file_ops=(-b -t -a -A -l -m -T)
+ local -a modes=(-F -M -P $file_ops -p)
+ local -a only_for_p=(-C -d -h -n)
+ local -a only_for_asterisk_dot_cf=(-e -f -o -x)
+ local -a args=(
+ # global
+ '-c[configdir]:config dir:_files -/' \
+ '*-v[enable verbose logging]'
+
+ # mode selection
+ "($modes $only_for_p -X -#)"'-F[operate on master.cf entry fields]'
+ "($modes $only_for_p -H )"'-M[operate on master.cf services entries]'
+ "($modes $only_for_p -#)"'-P[operate on master.cf parameter settings]'
+ "($modes $only_for_p $only_for_asterisk_dot_cf -H -X -#)"'-b[display DSN text, expanded]'
+ "($modes $only_for_p $only_for_asterisk_dot_cf -H -X -#)"'-t[display DSN text, unexpanded]'
+ "($modes $only_for_p $only_for_asterisk_dot_cf -H -X -#)"'-a[list available SASL server plug-ins]'
+ "($modes $only_for_p $only_for_asterisk_dot_cf -H -X -#)"'-A[list available SASL client plug-ins]'
+ "($modes $only_for_p $only_for_asterisk_dot_cf -H -X -#)"'-l[list supported mailbox locking methods]'
+ "($modes $only_for_p $only_for_asterisk_dot_cf -H -X -#)"'-m[list supported lookup table types]'
+ "($modes )"'-p[(default) print main.cf settings]'
+ "($modes $only_for_p $only_for_asterisk_dot_cf -H -X -#)"'-T[print TLS information]:mode:((
+ compile-version\:"OpenSSL compile-time version"
+ run-version\:"OpenSSL run-time version"
+ public-key-algorithms\:"supported public-key algorithms"
+ ))'
+
+ # other options; comments indicate modes:
+ # -p only
+ '-C[display parameters from the specified class]:parameter class:(builtin service user all)'
+ '-d[print default values]'
+ '-h[print value only]'
+ '-n[show parameters changed in main.cf]'
+
+ # all except $file_ops:
+ '-e[change parameter values]'
+ '-f[fold long output lines]'
+ '-o[set parameter value for this operation]: :_postfix_main_cf_parameter_and_value'
+ '-x[expand '\''$name'\'' in parameter values]'
+
+ # -p -F -P only
+ '-H[show parameter name only]'
+ # -p -M -P only
+ '-X[remove parameters from main.cf/master.cf]'
+ # -p -M only
+ '-#[comment out parameters in main.cf/master.cf]'
+
+ # $state
+ '*: :->positional'
+ )
+ _arguments -C -s -S -n : "$args[@]"
+
+ case $state in
+ (positional)
+ # Simulate the default
+ if [[ -z $opt_args[(i)${(j.|.)modes}] ]]; then
+ opt_args[-p]=""
+ fi
+ if [[ -n $opt_args[(i)(-b|-t)] ]]; then
+ local expl
+ if (( CURRENT == NORMARG )); then
+ _wanted files expl 'template file, or "" for default' _files
+ else
+ _nothing
+ fi
+ elif [[ -n $opt_args[(i)${(j.|.)file_ops}] ]]; then
+ _nothing
+ elif (( $+opt_args[-p] )); then
+ if (( $+opt_args[-e] )); then
+ _postfix_main_cf_parameter_and_value
+ else
+ _postfix_main_cf_parameter
+ fi
+ else # one of the master.cf modes: -M -F -P
+ _message "arguments for $opt_args[(i)${(j.|.)modes}] mode"
+ fi
+ esac
+ ;;
esac
Messages sorted by:
Reverse Date,
Date,
Thread,
Author