]> andersk Git - moira.git/blame_incremental - gen/aliases.qc
send mail about update errors
[moira.git] / gen / aliases.qc
... / ...
CommitLineData
1/* $Header$
2 *
3 * This generates the /usr/lib/aliases mail aliases file for the mailhub.
4 * The aliases file will contain:
5 * user pobox entries
6 * maillist expansions
7 * sublists of maillists
8 *
9 * (c) Copyright 1988 by the Massachusetts Institute of Technology.
10 * For copying and distribution information, please see the file
11 * <mit-copyright.h>.
12 */
13
14
15#include <mit-copyright.h>
16#include <stdio.h>
17#include <string.h>
18#include <sms.h>
19#include <sms_app.h>
20#include <sys/types.h>
21#include <sys/stat.h>
22#include <sys/time.h>
23
24
25#define ML_WID 72
26#define AL_MAX_WID 896
27
28char *divide = "########################################################################";
29extern int errno;
30char *whoami = "aliases.gen";
31char *ingres_date_and_time();
32
33
34main(argc, argv)
35int argc;
36char **argv;
37{
38 long tm = time(NULL);
39 FILE *out= stdout;
40 char filename[64], *targetfile;
41 struct stat sb;
42## int flag1, flag2, flag3;
43## char *filetime;
44 int ingerr();
45
46 IIseterr(ingerr);
47## ingres sms
48## set lockmode session where level = table
49
50 if (argc == 2) {
51 if (stat(argv[1], &sb) == 0) {
52 filetime = ingres_date_and_time(sb.st_mtime);
53## retrieve (flag1 = int4(interval("min",tblstats.modtime - filetime)))
54## where tblstats.table = "list"
55## retrieve (flag2 = int4(interval("min",tblstats.modtime - filetime)))
56## where tblstats.table = "members"
57## retrieve (flag3 = int4(interval("min",tblstats.modtime - filetime)))
58## where tblstats.table = "users"
59 if (flag1 < 0 && flag2 < 0 && flag3 < 0) {
60 fprintf(stderr, "File %s does not need to be rebuilt.\n",
61 argv[1]);
62 exit(SMS_NO_CHANGE);
63 }
64 }
65 targetfile = argv[1];
66 sprintf(filename, "%s~", targetfile);
67 if ((out = fopen(filename, "w")) == NULL) {
68 fprintf(stderr, "unable to open %s for output\n", filename);
69 exit(SMS_OCONFIG);
70 }
71 } else if (argc != 1) {
72 fprintf(stderr, "usage: %s [outfile]\n", argv[0]);
73 exit(SMS_ARGS);
74 }
75
76 fprintf(out, "%s\n# Aliases File Extract of %s", divide, ctime(&tm));
77 fprintf(out, "# This file is automatically generated, do not edit it directly.\n%s\n\n", divide);
78
79## begin transaction
80 get_info();
81## end transaction
82## exit
83
84 fprintf(stderr, "Dumping information\n");
85 do_mlists(out);
86 do_poboxes(out);
87
88 fprintf(out, "\n%s\n# End of aliases file\n%s\n", divide, divide);
89
90
91 if (fclose(out)) {
92 perror("close failed");
93 exit(SMS_CCONFIG);
94 }
95
96 if (argc == 2)
97 fix_file(targetfile);
98 exit(SMS_SUCCESS);
99}
100
101
102/*
103 * ingerr: (supposedly) called when Ingres indicates an error.
104 * I have not yet been able to get this to work to intercept a
105 * database open error.
106 */
107#define INGRES_DEADLOCK 4700
108
109static int ingerr(num)
110 int *num;
111{
112 char buf[256];
113 int ingres_errno;
114
115 switch (*num) {
116 case INGRES_DEADLOCK:
117 ingres_errno = SMS_DEADLOCK;
118 break;
119 default:
120 ingres_errno = SMS_INGRES_ERR;
121 }
122 com_err(whoami, SMS_INGRES_ERR, " code %d\n", *num);
123 critical_alert("DCM", "Alias build encountered INGRES ERROR %d", *num);
124 exit(ingres_errno);
125}
126
127
128struct hash *users, *machines, *strings, *lists;
129struct user {
130 char login[9];
131 char *pobox;
132};
133struct member {
134 struct member *next;
135 char *name;
136 int list_id;
137};
138struct list {
139 char name[33];
140 char maillist;
141 char acl_t;
142 char description[256];
143 int acl_id;
144 struct member *m;
145};
146
147
148get_info()
149##{
150## int id, maillistp, acl, pid, bid, mid;
151## char name[129], type[9], buf[257];
152 char *s;
153 register struct user *u;
154 register struct list *l;
155 register struct member *m;
156 register struct list *memberlist;
157
158 /* get locks */
159## retrieve (buf = list.modtime) where list.list_id = 0
160## retrieve (buf = users.modtime) where users.users_id = 0
161
162 fprintf(stderr, "Loading machines\n");
163 machines = create_hash(1000);
164## retrieve (id = machine.mach_id, name = machine.#name) {
165 if (s = index(name, '.'))
166 *s = 0;
167 sprintf(buf, "%s.LOCAL", name);
168 hash_store(machines, id, strsave(buf));
169## }
170
171 fprintf(stderr, "Loading strings\n");
172 strings = create_hash(2000);
173## retrieve (id = strings.string_id, name = strings.string) {
174 hash_store(strings, id, strsave(strtrim(name)));
175## }
176
177 fprintf(stderr, "Loading users\n");
178 users = create_hash(15000);
179## range of u is users
180## retrieve (id = u.users_id, name = u.login, type = u.potype,
181## pid = u.pop_id, bid = u.box_id) where u.status = 1 {
182 u = (struct user *) malloc(sizeof(struct user));
183 strcpy(u->login, strtrim(name));
184 u->pobox = (char *) NULL;
185 if (type[0] == 'P') {
186 if (s = hash_lookup(machines, pid)) {
187 sprintf(buf, "%s@%s", name, s);
188 u->pobox = strsave(buf);
189 } else {
190 fprintf(stderr, "User %s's pobox is on a missing machine!\n",
191 u->login);
192 }
193 } else if (type[0] == 'S') {
194 if ((u->pobox = hash_lookup(strings, bid)) == NULL)
195 fprintf(stderr, "User %s's pobox string is missing!\n", u->login);
196 }
197 hash_store(users, id, u);
198## }
199
200 fprintf(stderr, "Loading lists\n");
201 lists = create_hash(15000);
202## range of l is list
203## retrieve (id = l.list_id, name = l.#name, maillistp = l.maillist,
204## buf = l.desc, type = l.acl_type, acl = l.acl_id)
205## where l.active != 0 {
206 l = (struct list *) malloc(sizeof(struct list));
207 strcpy(l->name, strtrim(name));
208 l->maillist = maillistp;
209 strcpy(l->description, strtrim(buf));
210 l->acl_t = type[0];
211 l->acl_id = acl;
212 l->m = (struct member *) NULL;
213 hash_store(lists, id, l);
214## }
215
216
217 fprintf(stderr, "Loading members\n");
218## range of m is members
219## retrieve (id = m.list_id, type = m.member_type, mid = m.member_id) {
220 if (l = (struct list *) hash_lookup(lists, id)) {
221 m = (struct member *) malloc(sizeof(struct member));
222 m->name = (char *) NULL;
223 if (type[0] == 'U') {
224 m->list_id = 0;
225 if (u = (struct user *) hash_lookup(users, mid))
226 m->name = u->login;
227 } else if (type[0] == 'L') {
228 m->list_id = mid;
229 if (memberlist = (struct list *) hash_lookup(lists, mid))
230 m->name = memberlist->name;
231 } else if (type[0] == 'S') {
232 m->list_id = 0;
233 if (s = hash_lookup(strings, mid))
234 m->name = s;
235 }
236 if (m->name != (char *) NULL) {
237 m->next = l->m;
238 l->m = m;
239 }
240 }
241## }
242##}
243
244
245void save_mlist(id, l, sq)
246int id;
247struct list *l;
248struct save_queue *sq;
249{
250 if (l->maillist)
251 sq_save_unique_data(sq, id);
252}
253
254
255/* Extract mailing lists. Make a list of all mailinglists, then
256 * process them, adding any sub-lists or acl lists to the list of lists
257 * to be processed. If further sublists are encountered, repeat...
258 */
259
260int lwid, bol, awid;
261
262do_mlists(out)
263FILE *out;
264{
265 register struct list *l;
266 struct list *l1;
267 register struct member *m;
268 struct user *u;
269 register struct save_queue *sq;
270 struct save_queue *sq_create();
271 int id;
272
273 sq = sq_create();
274 fprintf(out, "\n%s\n# Mailing lists\n%s\n", divide, divide);
275
276 hash_step(lists, save_mlist, sq);
277
278 while (sq_get_data(sq, &id)) {
279 l = (struct list *) hash_lookup(lists, id);
280 if (l->m && /* there's at least one member */
281 l->m->next == NULL && /* there's only one member */
282 !strcmp(l->name, l->m->name)) /* the member is same as list */
283 continue;
284 put_fill(out, l->description);
285 if (l->acl_t == 'L') {
286 if (l1 = (struct list *) hash_lookup(lists, l->acl_id)) {
287 fprintf(out, "owner-%s: %s\n", l->name, l1->name);
288 sq_save_unique_data(sq, l->acl_id);
289 }
290 } else if (l->acl_t == 'U') {
291 if (u = (struct user *) hash_lookup(users, l->acl_id))
292 fprintf(out, "owner-%s: %s\n", l->name, u->login);
293 }
294 fprintf(out, "%s: ", l->name);
295 lwid = strlen(l->name) + 2;
296 bol = 1;
297 for (m = l->m; m; m = m->next) {
298 if (m->list_id != 0)
299 sq_save_unique_data(sq, m->list_id);
300 do_member(out, m->name);
301 }
302 fprintf(out, "\n\n");
303 }
304
305/* Removed for speed, since this take 10 minutes to free, and we don't
306 * really need the memory reclaimed.
307 * sq_destroy(sq); */
308}
309
310
311/* print out strings separated by commas, doing line breaks as appropriate */
312
313do_member(out, s)
314FILE *out;
315register char *s;
316{
317 register wwid;
318 static int cont = 1;
319
320 strtrim(s);
321 wwid = strlen(s);
322
323 if (!bol && awid + wwid + 2 > AL_MAX_WID) {
324 fprintf(out, ",\n\tcontinuation-%d\ncontinuation-%d: ", cont, cont);
325 cont++;
326 awid = lwid = bol = 17;
327 }
328
329 if (bol) {
330 lwid += wwid;
331 awid = lwid;
332 fprintf(out, "%s", s);
333 bol = 0;
334 return;
335 }
336 if (lwid + wwid + 2 > ML_WID) {
337 fprintf(out, ",\n\t%s", s);
338 awid += lwid + wwid + 2;
339 lwid = wwid + 8;
340 return;
341 }
342 lwid += wwid + 2;
343 fprintf(out, ", %s", s);
344}
345
346do_pobox(id, u, out)
347int id;
348register struct user *u;
349FILE *out;
350{
351 if (u->pobox)
352 fprintf(out, "%s: %s\n", u->login, u->pobox);
353}
354
355
356/* Do user poboxes. Just step through the users table, and print any
357 * we extracted earlier.
358 */
359
360do_poboxes(out)
361FILE *out;
362{
363 register char *p;
364 char *index();
365
366 fprintf(out, "\n%s\n# User Poboxes\n%s\n", divide, divide);
367
368 hash_step(users, do_pobox, out);
369}
370
371
372put_fill(aliases, string)
373FILE *aliases;
374register char *string;
375{
376 register char *c;
377 register int lwid;
378 register int wwid;
379
380 if (*string == 0) return;
381 fputs("# ", aliases);
382 lwid = 3;
383
384 while (1) {
385 while (*string && *string == ' ') string++;
386 c = (char *)index(string, ' ');
387 if (c == 0) {
388 wwid = strlen(string);
389 } else {
390 wwid = c - string;
391 *c = 0;
392 }
393
394 if ((lwid + wwid) > ML_WID) {
395 fputs("\n# ", aliases);
396 lwid = 3;
397 fputs(string, aliases);
398 } else {
399 fputs(string, aliases);
400 }
401
402 if (c == (char *)0) break;
403 /* add a space after the word */
404 (void) fputc(' ', aliases);
405 wwid++;
406 lwid += wwid;
407 string += wwid;
408 /* add another if after a period */
409 if (*--c == '.') {
410 (void) fputc(' ', aliases);
411 lwid++;
412 }
413 }
414
415 (void) fputc('\n', aliases);
416}
This page took 1.685433 seconds and 5 git commands to generate.