]> Pileus Git - ~andy/fetchmail/blob - conf.c
We can get down to user level and edit now.
[~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
190             if (ctl->server.envelope == STRING_DISABLED)
191                 stringdump("envelope", NULL); 
192             else if (ctl->server.envelope == NULL)
193                 stringdump("envelope", "Received");             
194             else
195                 stringdump("envelope", ctl->server.envelope); 
196             numdump("envskip", ctl->server.envskip);
197             stringdump("qvirtual", ctl->server.qvirtual);
198  
199             if (ctl->server.preauthenticate == A_KERBEROS_V4)
200                 stringdump("auth", "kerberos_v4");
201             else if (ctl->server.preauthenticate == A_KERBEROS_V5)
202                 stringdump("auth", "kerberos_v5");
203             else
204                 stringdump("auth", "password");
205
206 #if defined(HAVE_GETHOSTBYNAME) && defined(HAVE_RES_SEARCH)
207             booldump("dns", ctl->server.dns);
208 #endif /* HAVE_GETHOSTBYNAME && HAVE_RES_SEARCH */
209             booldump("uidl", ctl->server.uidl);
210
211             listdump("aka", ctl->server.akalist);
212             listdump("localdomains", ctl->server.localdomains);
213
214 #ifdef linux
215             stringdump("interface", ctl->server.interface);
216             stringdump("monitor", ctl->server.monitor);
217 #endif /* linux */
218
219             indent(0);
220             fputs("'users': ", stdout);
221             indent('[');
222         }
223
224         indent('{');
225
226         stringdump("remote", ctl->remotename);
227         stringdump("password", ctl->password);
228
229         indent('\0');
230         fprintf(stdout, "'localnames':[");
231         for (idp = ctl->localnames; idp; idp = idp->next)
232         {
233             if (idp->val.id2)
234                 fprintf(stdout, "('%s', %s)", 
235                         visbuf(idp->id), visbuf(idp->val.id2));
236             else
237                 fprintf(stdout, "'%s'", visbuf(idp->id));
238             if (idp->next)
239                 fputs(", ", stdout);
240         }
241         if (ctl->wildcard)
242             fputs(", '*'", stdout);
243         fputs("],\n", stdout);
244
245         booldump("fetchall", ctl->fetchall);
246         booldump("keep", ctl->keep);
247         booldump("flush", ctl->flush);
248         booldump("rewrite", ctl->rewrite);
249         booldump("stripcr", ctl->stripcr); 
250         booldump("forcecr", ctl->forcecr);
251         booldump("pass8bits", ctl->pass8bits);
252         booldump("dropstatus", ctl->dropstatus);
253         booldump("mimedecode", ctl->mimedecode);
254
255         stringdump("mda", ctl->mda);
256 #ifdef INET6
257         stringdump("netsec", ctl->netsec);
258 #endif /* INET6 */
259         stringdump("preconnect", ctl->preconnect);
260         stringdump("postconnect", ctl->postconnect);
261         numdump("limit", ctl->limit);
262         numdump("fetchlimit", ctl->fetchlimit);
263         numdump("batchlimit", ctl->batchlimit);
264         numdump("expunge", ctl->expunge);
265         listdump("smtphunt", ctl->smtphunt);
266         stringdump("smtpaddress", ctl->smtpaddress);
267         numdump("antispam", ctl->antispam);
268         listdump("mailboxes", ctl->mailboxes);
269
270         indent('}');
271     }
272
273     /* end last span of user entries and last server entry */
274     indent(']');
275     indent('}');
276
277     /* end array of servers */
278     indent(']');
279
280  alldone:
281     /* end top-level dictionary */
282     indent('}');
283     fputs("# End of initializer\n", stdout);
284 }
285
286 /* conf.c ends here */