diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:49:30 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:49:30 +0000 |
commit | fc31cf25ce923c369cc41769ba0d62ecaf8b1dd6 (patch) | |
tree | f535033014b4b473dfb47e66e7bbcd9084c20aa9 /Completion | |
parent | 3fe1c4714510120f4051aa8ece7524c56dec84e7 (diff) | |
download | zsh-fc31cf25ce923c369cc41769ba0d62ecaf8b1dd6.tar.gz zsh-fc31cf25ce923c369cc41769ba0d62ecaf8b1dd6.tar.xz zsh-fc31cf25ce923c369cc41769ba0d62ecaf8b1dd6.zip |
moved from Completion/User/_fetchmail
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_fetchmail | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_fetchmail b/Completion/Unix/Command/_fetchmail new file mode 100644 index 000000000..31a92d984 --- /dev/null +++ b/Completion/Unix/Command/_fetchmail @@ -0,0 +1,11 @@ +#compdef fetchmail + +_arguments -S \ + {--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' \ + -- |