]> Pileus Git - ~andy/fetchmail/blob - conf.c
Before Gunther's patches.
[~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 TRUE, 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'); 
163             putc(',', stdout);
164             putc('\n', stdout);
165         }
166
167         indent(0);
168         fprintf(stdout,"# Entry for site `%s' begins:\n",ctl->server.pollname);
169         indent('{');
170
171         /*
172          * First, the server stuff.
173          */
174         if (!ctl->server.lead_server)
175         {
176             flag using_kpop =
177                 (ctl->server.protocol == P_POP3 &&
178                  ctl->server.port == KPOP_PORT &&
179                  ctl->server.preauthenticate == A_KERBEROS_V4);
180
181             stringdump("pollname", ctl->server.pollname); 
182             booldump("active", !ctl->server.skip); 
183             stringdump("via", ctl->server.via); 
184             stringdump("protocol", 
185                        using_kpop ? "KPOP" : showproto(ctl->server.protocol));
186             numdump("port",  ctl->server.port);
187             numdump("timeout",  ctl->server.timeout);
188             numdump("interval", ctl->server.interval);
189             stringdump("envelope", ctl->server.envelope); 
190             numdump("envskip", ctl->server.envskip);
191             stringdump("qvirtual", ctl->server.qvirtual);
192  
193             if (ctl->server.preauthenticate == A_KERBEROS_V4)
194                 stringdump("auth", "kerberos_v4");
195             else if (ctl->server.preauthenticate == A_KERBEROS_V5)
196                 stringdump("auth", "kerberos_v5");
197             else
198                 stringdump("auth", "password");
199
200 #if defined(HAVE_GETHOSTBYNAME) && defined(HAVE_RES_SEARCH)
201             booldump("dns", ctl->server.dns);
202 #endif /* HAVE_GETHOSTBYNAME && HAVE_RES_SEARCH */
203             booldump("uidl", ctl->server.uidl);
204
205             listdump("aka", ctl->server.akalist);
206             listdump("localdomains", ctl->server.localdomains);
207
208 #ifdef linux
209             stringdump("interface", ctl->server.interface);
210             stringdump("monitor", ctl->server.monitor);
211 #endif /* linux */
212
213             indent(0);
214             fputs("'users': ", stdout);
215             indent('[');
216         }
217
218         indent('{');
219
220         stringdump("user", ctl->remotename);
221         stringdump("password", ctl->password);
222
223         indent('\0');
224         fprintf(stdout, "'localnames':[");
225         for (idp = ctl->localnames; idp; idp = idp->next)
226         {
227             if (idp->val.id2)
228                 fprintf(stdout, "('%s', %s)", 
229                         visbuf(idp->id), visbuf(idp->val.id2));
230             else
231                 fprintf(stdout, "'%s'", visbuf(idp->id));
232             if (idp->next)
233                 fputs(", ", stdout);
234         }
235         if (ctl->wildcard)
236             fputs(", '*'", stdout);
237         fputs("],\n", stdout);
238
239         booldump("fetchall", ctl->fetchall);
240         booldump("keep", ctl->keep);
241         booldump("flush", ctl->flush);
242         booldump("rewrite", ctl->rewrite);
243         booldump("stripcr", ctl->stripcr); 
244         booldump("forcecr", ctl->forcecr);
245         booldump("pass8bits", ctl->pass8bits);
246         booldump("dropstatus", ctl->dropstatus);
247         booldump("mimedecode", ctl->mimedecode);
248
249         stringdump("mda", ctl->mda);
250 #ifdef INET6
251         stringdump("netsec", ctl->netsec);
252 #endif /* INET6 */
253         stringdump("preconnect", ctl->preconnect);
254         stringdump("postconnect", ctl->postconnect);
255         numdump("fetchlimit", ctl->fetchlimit);
256         numdump("batchlimit", ctl->batchlimit);
257         numdump("expunge", ctl->expunge);
258         listdump("smtphost", ctl->smtphunt);
259         stringdump("smtpaddress", ctl->smtpaddress);
260         numdump("antispam", ctl->antispam);
261         listdump("mailboxes", ctl->mailboxes);
262
263         indent('}');
264     }
265
266     /* end last span of user entries and last server entry */
267     indent(']');
268     indent('}');
269
270     /* end array of servers */
271     indent(']');
272
273  alldone:
274     /* end top-level dictionary */
275     indent('}');
276     fputs("# End of initializer\n", stdout);
277 }
278
279 /* conf.c ends here */