diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-03-11 22:53:41 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-03-11 22:53:41 +0000 |
commit | e264c1bee199acd99267e2142ab22507cadb488a (patch) | |
tree | af471605f1dafb99214a91b44dedd17f350ae703 /Completion/User/_fetchmail | |
parent | c140245164e0448685940f17fd8efcbc8109b237 (diff) | |
download | zsh-e264c1bee199acd99267e2142ab22507cadb488a.tar.gz zsh-e264c1bee199acd99267e2142ab22507cadb488a.tar.xz zsh-e264c1bee199acd99267e2142ab22507cadb488a.zip |
Various new, improved, fixed or updated functions (13600)
Diffstat (limited to 'Completion/User/_fetchmail')
-rw-r--r-- | Completion/User/_fetchmail | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Completion/User/_fetchmail b/Completion/User/_fetchmail new file mode 100644 index 000000000..0f9095107 --- /dev/null +++ b/Completion/User/_fetchmail @@ -0,0 +1,11 @@ +#compdef fetchmail + +_arguments \ + {--bsmtp,'(--logfile)-L','(-L)--logfile','(--fetchmailrc)-f','(-f)--fetchmailrc','(--idfile)-i','(-i)--idfile'}':file:_files' \ + {--plugin,--plugout,'(--mda)-m','(-m)--mda'}':command:_command_names -e' \ + {'(--username)-u','(-u)--username'}:user:_users \ + '--auth:authentication types:(password kerberos kerberos_v5)' \ + {'(--protocol)-p','(-p)--protocol'}:protocol:'(auto pop2 pop3 apop rpop kpop sdps imap imap-k4 imap-gss etrn)' \ + {'(--port)-P','(-P)--port'}':port number' \ + '*:mail server:_hosts' \ + -- |