From 524394502fd68463dc5785fdc95c418459eebce5 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Wed, 8 Jun 2016 22:33:37 +0200 Subject: --configdump: fix quoting RHS of localnames --- conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf.c') diff --git a/conf.c b/conf.c index e51c7ccb..3daa4954 100644 --- a/conf.c +++ b/conf.c @@ -336,7 +336,7 @@ void dump_config(struct runctl *runp, struct query *querylist) strlcpy(namebuf, visbuf(idp->id), sizeof(namebuf)); if (idp->val.id2) - fprintf(stdout, "(\"%s\", %s)", namebuf, visbuf(idp->val.id2)); + fprintf(stdout, "(\"%s\", \"%s\")", namebuf, visbuf(idp->val.id2)); else fprintf(stdout, "\"%s\"", namebuf); if (idp->next) -- cgit v1.2.3 : fetchmail
[fork] set imap idle timeout to 600s, some servers don't follow rfc recommendationsgit
aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/zsh-completion
blob: c5e653f42fefb1e63fdf5eaac49de80754fd832b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Set up command completion for zsh
#
fetchmailauthtypes=(password kerberos kerberos_v5)
fetchmailprotocols=(auto pop2 pop3 apop rpop kpop sdps imap imap-k4 imap-gss etrn)
function fetchmailformattedinterfaces ()
{ reply=(`ifconfig|perl -e '$/="";while(<>){s/[\r\n]//g;if(/^(\w+\d*).*inet addr:([\d\.]+)/){print "$1/$2\n";}}'`) }
function fetchmailcompctl ()
{ reply=(`awk '{ print $2 }' < ~/.fetchmailrc` `fetchmail --help 2>&1| cut -c 7-19 | sed "s/,//g"`) }
compctl -K fetchmailcompctl \
	-x "C[-1,-L|--logfile]" -f \
	-  "C[-1,-f|--fetchmailrc]" -f \
	-  "C[-1,-i|--idfile]" -f \
	-  "C[-1,-I|--interface]" -K fetchmailformattedinterfaces \
	-  "C[-1,-M|--monitor]" -K fetchmailformattedinterfaces \
	-  "C[-1,-p|--protocol]" -k fetchmailprotocols \
	-  "C[-1,-A|--auth]" -k fetchmailauthtypes \
	-  "c[-1,--plugin]" -m \
	-  "c[-1,--plugout]" -m \
	-- fetchmail