]> Pileus Git - ~andy/fetchmail/blob - conf.c
095d396b1a93084c5690c4d6090ce45c781abbb1
[~andy/fetchmail] / conf.c
1 /*
2  * conf.c -- dump fetchmail configuration as Python dictionary initializer
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6
7 #include "config.h"
8 #include "tunable.h"
9
10 #include <stdio.h>
11 #include <ctype.h>
12 #if defined(STDC_HEADERS)
13 #include <stdlib.h>
14 #endif
15 #if defined(HAVE_UNISTD_H)
16 #include <unistd.h>
17 #endif
18 #include <string.h>
19 #include <pwd.h>
20 #include <errno.h>
21
22 #include "fetchmail.h"
23
24 /* Python prettyprinting functions */
25
26 static indent_level;
27
28 static void indent(char ic)
29 /* indent current line */
30 {
31     int i;
32
33     if (ic == ')' || ic == ']' || ic == '}')
34         indent_level--;
35
36     /*
37      * The guard here is a kluge.  It depends on the fact that in the
38      * particular structure we're dumping, opening [s are always
39      * initializers for dictionary members and thus will be preceded
40      * by a member name.
41      */
42     if (ic != '[')
43     {
44         for (i = 0; i < indent_level / 2; i++)
45             putc('\t', stdout);
46         if (indent_level % 2)
47             fputs("    ", stdout);
48     }
49
50     if (ic)
51     {
52         putc(ic, stdout);
53         putc('\n', stdout);
54     }
55
56     if (ic == '(' || ic == '[' || ic == '{')
57         indent_level++;
58 }
59
60 static void stringdump(const char *name, const char *member)
61 /* dump a string member with current indent */
62 {
63     static char buf[BUFSIZ];
64
65     indent('\0');
66     fprintf(stdout, "'%s':", name);
67     if (member)
68         fprintf(stdout, "'%s'", visbuf(member));
69     else
70         fputs("None", stdout);
71     fputs(",\n", stdout);
72 }
73
74 static int numdump(const char *name, const int num)
75 /* dump a numeric quantity at current indent */
76 {
77     indent('\0');
78     fprintf(stdout, "'%s':%d,\n", name, num);
79 }
80
81 static int booldump(const char *name, const int onoff)
82 /* dump a boolean quantity at current indent */
83 {
84     indent('\0');
85     if (onoff)
86         fprintf(stdout, "'%s':TRUE,\n", name);
87     else
88         fprintf(stdout, "'%s':FALSE,\n", name);
89 }
90
91 static void listdump(const char *name, struct idlist *list)
92 /* dump a string list member with current indent */
93 {
94     indent('\0');
95     fprintf(stdout, "'%s':", name);
96
97     if (!list)
98         fputs("None,\n", stdout);
99     else
100     {
101         struct idlist *idp;
102
103         fputs("[", stdout);
104         for (idp = list; idp; idp = idp->next)
105             if (idp->id)
106             {
107                 fprintf(stdout, "'%s'", visbuf(idp->id));
108                 if (idp->next)
109                     fputs(", ", stdout);
110             }
111         fputs("],\n", stdout);
112     }
113 }
114
115 /*
116  * Note: this function dumps the entire configuration,
117  * after merging of the defaults record (if any).  It
118  * is intended to produce output parseable by a configuration
119  * front end, not anything especially comfortable for humans.
120  */
121
122 void dump_config(struct runctl *runp, struct query *querylist)
123 /* dump the in-core configuration in recompilable form */
124 {
125     struct query *ctl;
126     struct idlist *idp;
127
128     indent_level = 0;
129
130     fputs("from Tkinter import *\t# for FALSE\n\n", stdout);
131
132     fputs("# Start of initializer\n", stdout);
133     fputs("configuration = ", stdout);
134     indent('{');
135
136     numdump("poll_interval", runp->poll_interval);
137     booldump("syslog", runp->use_syslog);
138     stringdump("logfile", runp->logfile);
139     stringdump("idfile", runp->idfile);
140     booldump("invisible", runp->invisible);
141
142     if (!querylist)
143         goto alldone;
144
145     indent(0);
146     fputs("# List of server entries begins here\n", stdout);
147     indent(0);
148     fputs("'servers': ", stdout);
149     indent('[');
150
151     for (ctl = querylist; ctl; ctl = ctl->next)
152     {
153         /*
154          * Every time we see a leading server entry after the first one,
155          * it implicitly ends the both (q) the list of user structures
156          * associated with the previous entry, and (b) that previous entry.
157          */
158         if (ctl > querylist)
159         {
160             indent(']');
161             indent('}');
162             indent('\0'); putc(',', stdout);
163         }
164
165         indent(0);
166         fprintf(stdout,"# Entry for site `%s' begins:\n",ctl->server.pollname);
167         indent('{');
168
169         /*
170          * First, the server stuff.
171          */
172         if (!ctl->server.lead_server)
173         {
174             flag using_kpop =
175                 (ctl->server.protocol == P_POP3 &&
176                  ctl->server.port == KPOP_PORT &&
177                  ctl->server.preauthenticate == A_KERBEROS_V4);
178
179             stringdump("pollname", ctl->server.pollname); 
180             booldump("active", !ctl->server.skip); 
181             stringdump("via", ctl->server.via); 
182             stringdump("protocol", 
183                        using_kpop ? "KPOP" : showproto(ctl->server.protocol));
184             numdump("port",  ctl->server.port);
185             numdump("timeout",  ctl->server.timeout);
186             numdump("interval", ctl->server.interval);
187             stringdump("envelope", ctl->server.envelope); 
188             stringdump("qvirtual", ctl->server.qvirtual);
189  
190             if (ctl->server.preauthenticate == A_KERBEROS_V4)
191                 stringdump("auth", "kerberos_v4");
192             else if (ctl->server.preauthenticate == A_KERBEROS_V5)
193                 stringdump("auth", "kerberos_v5");
194             else
195                 stringdump("auth", "password");
196
197 #if defined(HAVE_GETHOSTBYNAME) && defined(HAVE_RES_SEARCH)
198             booldump("dns", ctl->server.dns);
199 #endif /* HAVE_GETHOSTBYNAME && HAVE_RES_SEARCH */
200             booldump("uidl", ctl->server.uidl);
201
202             listdump("aka", ctl->server.akalist);
203             listdump("localdomains", ctl->server.localdomains);
204
205 #ifdef linux
206             stringdump("interface", ctl->server.interface);
207             stringdump("monitor", ctl->server.monitor);
208 #endif /* linux */
209
210             indent(0);
211             fputs("'users': ", stdout);
212             indent('[');
213         }
214
215         indent('{');
216
217         stringdump("user", ctl->remotename);
218         stringdump("password", ctl->password);
219
220         indent('\0');
221         fprintf(stdout, "'localnames':[");
222         for (idp = ctl->localnames; idp; idp = idp->next)
223         {
224             if (idp->val.id2)
225                 fprintf(stdout, "('%s', %s)", 
226                         visbuf(idp->id), visbuf(idp->val.id2));
227             else
228                 fprintf(stdout, "'%s'", visbuf(idp->id));
229             if (idp->next)
230                 fputs(", ", stdout);
231         }
232         if (ctl->wildcard)
233             fputs(", '*'", stdout);
234         fputs("],\n", stdout);
235
236         booldump("fetchall", ctl->fetchall);
237         booldump("keep", ctl->keep);
238         booldump("flush", ctl->flush);
239         booldump("rewrite", ctl->rewrite);
240         booldump("stripcr", ctl->stripcr); 
241         booldump("forcecr", ctl->forcecr);
242         booldump("pass8bits", ctl->pass8bits);
243         booldump("dropstatus", ctl->dropstatus);
244         booldump("mimedecode", ctl->mimedecode);
245
246         stringdump("mda", ctl->mda);
247 #ifdef INET6
248         stringdump("netsec", ctl->netsec);
249 #endif /* INET6 */
250         stringdump("preconnect", ctl->preconnect);
251         stringdump("postconnect", ctl->postconnect);
252         numdump("fetchlimit", ctl->fetchlimit);
253         numdump("batchlimit", ctl->batchlimit);
254         numdump("expunge", ctl->expunge);
255         listdump("smtphost", ctl->smtphunt);
256         stringdump("smtpaddress", ctl->smtpaddress);
257         numdump("antispam", ctl->antispam);
258         listdump("mailboxes", ctl->mailboxes);
259
260         indent('}');
261     }
262
263     /* end last span of user entries and last server entry */
264     indent(']');
265     indent('}');
266
267     /* end array of servers */
268     indent(']');
269
270  alldone:
271     /* end top-level dictionary */
272     indent('}');
273     fputs("# End of initializer\n", stdout);
274 }
275
276 /* conf.c ends here */