]> Pileus Git - ~andy/fetchmail/blob - fetchmail.c
Another option fix from Gunther.
[~andy/fetchmail] / fetchmail.c
1 /*
2  * fetchmail.c -- main driver module for fetchmail
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6 #include "config.h"
7
8 #include <stdio.h>
9 #include <ctype.h>
10 #if defined(STDC_HEADERS)
11 #include <stdlib.h>
12 #endif
13 #if defined(HAVE_UNISTD_H)
14 #include <unistd.h>
15 #endif
16 #if defined(HAVE_ALLOCA_H)
17 #include <alloca.h>
18 #else
19 #ifdef _AIX
20  #pragma alloca
21 #endif
22 #endif
23 #include <string.h>
24 #include <signal.h>
25 #if defined(HAVE_SYSLOG)
26 #include <syslog.h>
27 #endif
28 #include <pwd.h>
29 #include <errno.h>
30 #include <sys/time.h>
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #ifdef HAVE_SYS_WAIT_H
34 #include <sys/wait.h>
35 #endif
36
37 #ifdef HAVE_GETHOSTBYNAME
38 #include <netdb.h>
39 #endif /* HAVE_GETHOSTBYNAME */
40
41 #include "fetchmail.h"
42 #include "tunable.h"
43 #include "smtp.h"
44 #include "getopt.h"
45 #include "netrc.h"
46
47 #ifndef ENETUNREACH
48 #define ENETUNREACH   128       /* Interactive doesn't know this */
49 #endif /* ENETUNREACH */
50
51 /* prototypes for internal functions */
52 static int load_params(int, char **, int);
53 static void dump_params (struct runctl *runp, struct query *, flag implicit);
54 static int query_host(struct query *);
55
56 /* controls the detail level of status/progress messages written to stderr */
57 int outlevel;           /* see the O_.* constants above */
58
59 /* miscellaneous global controls */
60 struct runctl run;      /* global controls for this run */
61 flag nodetach;          /* if TRUE, don't detach daemon process */
62 flag quitmode;          /* if --quit was set */
63 flag check_only;        /* if --probe was set */
64 flag versioninfo;       /* emit only version info */
65 char *user;             /* the name of the invoking user */
66 char *home;             /* invoking user's home directory */
67 char *fetchmailhost;    /* the name of the host running fetchmail */
68 char *program_name;     /* the name to prefix error messages with */
69 flag configdump;        /* dump control blocks for configurator */
70
71 #if NET_SECURITY
72 void *request = NULL;
73 int requestlen = 0;
74 #endif /* NET_SECURITY */
75
76 static char *lockfile;          /* name of lockfile */
77 static int querystatus;         /* status of query */
78 static int successes;           /* count number of successful polls */
79 static int lastsig;             /* last signal received */
80 static struct runctl cmd_run;   /* global options set from command line */
81
82 static void termhook();         /* forward declaration of exit hook */
83
84 /*
85  * The function of this variable is to reduce the size of the window during
86  * which two SIGALRMS in rapid succession can hose the code.  This is a
87  * bit of a kluge; the real right thing would use sigprocmask(), sigsuspend()
88  * and close the window entirely.  But since the interval isn't normally
89  * going to be less than one second this is not a big issue.
90  */
91 #if defined(STDC_HEADERS)
92 static sig_atomic_t     alarm_latch = FALSE;
93 #else
94 /* assume int can be written in one atomic operation on non ANSI-C systems */
95 static int              alarm_latch = FALSE;
96 #endif
97
98 RETSIGTYPE donothing(sig) int sig; {signal(sig, donothing); lastsig = sig;}
99 RETSIGTYPE gotsigalrm(sig) int sig; {signal(sig, donothing); lastsig = sig; alarm_latch = TRUE;}
100
101 #ifdef HAVE_ON_EXIT
102 static void unlockit(int n, void *p)
103 #else
104 static void unlockit(void)
105 #endif
106 /* must-do actions for exit (but we can't count on being able to do malloc) */
107 {
108     unlink(lockfile);
109 }
110
111 #ifdef __EMX__
112 /* Various EMX-specific definitions */
113 int itimerflag;
114 void itimerthread(void* dummy) {
115   if (outlevel == O_VERBOSE)
116     fprintf(stderr, "fetchmail: thread sleeping for %d sec.\n", poll_interval);
117   while(1) {
118     _sleep2(poll_interval*1000);
119     kill((getpid()), SIGALRM);
120   }
121 }
122 #endif
123
124 int main (int argc, char **argv)
125 {
126     int st, bkgd = FALSE;
127     int parsestatus, implicitmode = FALSE;
128     FILE        *lockfp;
129     struct query *ctl;
130     netrc_entry *netrc_list;
131     char *netrc_file, *tmpbuf;
132     pid_t pid;
133
134     envquery(argc, argv);
135
136 #define IDFILE_NAME     ".fetchids"
137     run.idfile = (char *) xmalloc(strlen(home)+strlen(IDFILE_NAME)+2);
138     strcpy(run.idfile, home);
139     strcat(run.idfile, "/");
140     strcat(run.idfile, IDFILE_NAME);
141   
142     outlevel = O_NORMAL;
143
144     if ((parsestatus = parsecmdline(argc,argv, &cmd_run, &cmd_opts)) < 0)
145         exit(PS_SYNTAX);
146
147     /* this hint to stdio should help messages come out in the right order */
148     setvbuf(stdout, NULL, _IOLBF, MSGBUFSIZE);
149
150     if (versioninfo)
151     {
152         printf("This is fetchmail release %s", RELEASE_ID);
153 #ifdef POP2_ENABLE
154         printf("+POP2");
155 #endif /* POP2_ENABLE */
156 #ifndef POP3_ENABLE
157         printf("-POP3");
158 #endif /* POP3_ENABLE */
159 #ifndef IMAP_ENABLE
160         printf("-IMAP");
161 #endif /* IMAP_ENABLE */
162 #ifdef RPA_ENABLE
163         printf("+RPA");
164 #endif /* RPA_ENABLE */
165 #ifndef ETRN_ENABLE
166         printf("-ETRN");
167 #endif /* ETRN_ENABLE */
168 #if OPIE
169         printf("+OPIE");
170 #endif /* OPIE */
171 #if INET6
172         printf("+INET6");
173 #endif /* INET6 */
174 #if NET_SECURITY
175         printf("+NETSEC");
176 #endif /* NET_SECURITY */
177         putchar('\n');
178
179         /* this is an attempt to help remote debugging */
180         system("uname -a");
181     }
182
183     /* avoid parsing the config file if all we're doing is killing a daemon */ 
184     if (!(quitmode && argc == 2))
185         implicitmode = load_params(argc, argv, optind);
186
187     /* set up to do lock protocol */
188 #define FETCHMAIL_PIDFILE       "fetchmail.pid"
189     tmpbuf = xmalloc(strlen(home) + strlen(FETCHMAIL_PIDFILE) + 3);
190     if (!getuid())
191         sprintf(tmpbuf, "%s/%s", PID_DIR, FETCHMAIL_PIDFILE);
192     else {
193         strcpy(tmpbuf, home);
194         strcat(tmpbuf, "/.");
195         strcat(tmpbuf, FETCHMAIL_PIDFILE);
196     }
197 #undef FETCHMAIL_PIDFILE
198
199     /* perhaps we just want to check options? */
200     if (versioninfo)
201     {
202         printf("Taking options from command line");
203         if (access(rcfile, 0))
204             printf("\n");
205         else
206             printf(" and %s\n", rcfile);
207         if (outlevel == O_VERBOSE)
208             printf("Lockfile at %s\n", tmpbuf);
209
210         if (querylist == NULL)
211             (void) fprintf(stderr,
212                 "No mailservers set up -- perhaps %s is missing?\n", rcfile);
213         else
214             dump_params(&run, querylist, implicitmode);
215         exit(0);
216     }
217
218     /* dump options as a Python dictionary, for configurator use */
219     if (configdump)
220     {
221         dump_config(&run, querylist);
222         exit(0);
223     }
224
225     /* check for another fetchmail running concurrently */
226     pid = -1;
227     if ((lockfile = (char *) malloc(strlen(tmpbuf) + 1)) == NULL)
228     {
229         fprintf(stderr,"fetchmail: cannot allocate memory for lock name.\n");
230         exit(PS_EXCLUDE);
231     }
232     else
233         (void) strcpy(lockfile, tmpbuf);
234     if ((lockfp = fopen(lockfile, "r")) != NULL )
235     {
236         bkgd = (fscanf(lockfp,"%d %d", &pid, &st) == 2);
237
238         if (kill(pid, 0) == -1) {
239             fprintf(stderr,"fetchmail: removing stale lockfile\n");
240             pid = -1;
241             bkgd = FALSE;
242             unlink(lockfile);
243         }
244         fclose(lockfp);
245     }
246
247     /* if no mail servers listed and nothing in background, we're done */
248     if (!(quitmode && argc == 2) && pid == -1 && querylist == NULL) {
249         (void)fputs("fetchmail: no mailservers have been specified.\n",stderr);
250         exit(PS_SYNTAX);
251     }
252
253     /* perhaps user asked us to kill the other fetchmail */
254     if (quitmode)
255     {
256         if (pid == -1) 
257         {
258             fprintf(stderr,"fetchmail: no other fetchmail is running\n");
259             if (argc == 2)
260                 exit(PS_EXCLUDE);
261         }
262         else if (kill(pid, SIGTERM) < 0)
263         {
264             fprintf(stderr,"fetchmail: error killing %s fetchmail at %d; bailing out.\n",
265                     bkgd ? "background" : "foreground", pid);
266             exit(PS_EXCLUDE);
267         }
268         else
269         {
270             fprintf(stderr,"fetchmail: %s fetchmail at %d killed.\n",
271                     bkgd ? "background" : "foreground", pid);
272             unlink(lockfile);
273             if (argc == 2)
274                 exit(0);
275             else
276                 pid = -1; 
277         }
278     }
279
280     /* another fetchmail is running -- wake it up or die */
281     if (pid != -1)
282     {
283         if (check_only)
284         {
285             fprintf(stderr,
286                  "fetchmail: can't check mail while another fetchmail to same host is running.\n");
287             return(PS_EXCLUDE);
288         }
289         else if (!implicitmode)
290         {
291             fprintf(stderr,
292                  "fetchmail: can't poll specified hosts with another fetchmail running at %d.\n",
293                  pid);
294                 return(PS_EXCLUDE);
295         }
296         else if (!bkgd)
297         {
298             fprintf(stderr,
299                  "fetchmail: another foreground fetchmail is running at %d.\n",
300                  pid);
301                 return(PS_EXCLUDE);
302         }
303         else if (argc > 1)
304         {
305             fprintf(stderr,
306                     "fetchmail: can't accept options while a background fetchmail is running.\n");
307             return(PS_EXCLUDE);
308         }
309         else if (kill(pid, SIGUSR1) == 0)
310         {
311             fprintf(stderr,
312                     "fetchmail: background fetchmail at %d awakened.\n",
313                     pid);
314             return(0);
315         }
316         else
317         {
318             /*
319              * Should never happen -- possible only if a background fetchmail
320              * croaks after the first kill probe above but before the
321              * SIGUSR1/SIGHUP transmission.
322              */
323             fprintf(stderr,
324                     "fetchmail: elder sibling at %d died mysteriously.\n",
325                     pid);
326             return(PS_UNDEFINED);
327         }
328     }
329
330     /* parse the ~/.netrc file (if present) for future password lookups. */
331     netrc_file = (char *) xmalloc (strlen (home) + 8);
332     strcpy (netrc_file, home);
333     strcat (netrc_file, "/.netrc");
334     netrc_list = parse_netrc(netrc_file);
335
336     /* pick up interactively any passwords we need but don't have */ 
337     for (ctl = querylist; ctl; ctl = ctl->next)
338         if (ctl->active && !(implicitmode && ctl->server.skip)&&!ctl->password)
339         {
340             if (ctl->server.preauthenticate == A_KERBEROS_V4 ||
341                 ctl->server.preauthenticate == A_KERBEROS_V5 ||
342 #ifdef GSSAPI
343                 ctl->server.protocol == P_IMAP_GSS ||
344 #endif /* GSSAPI */
345                 ctl->server.protocol == P_IMAP_K4)
346                 /* Server won't care what the password is, but there
347                    must be some non-null string here.  */
348                 ctl->password = ctl->remotename;
349             else
350             {
351                 /* look up the host and account in the .netrc file. */
352                 netrc_entry *p = search_netrc(netrc_list,ctl->server.pollname);
353                 while (p && strcmp(p->account, ctl->remotename))
354                     p = search_netrc(p->next, ctl->remotename);
355
356                 /* if we find a matching entry with a password, use it */
357                 if (p && p->password)
358                     ctl->password = xstrdup(p->password);
359             }
360
361             if (ctl->server.protocol != P_ETRN && ctl->server.protocol != P_IMAP_K4
362 #ifdef GSSAPI
363                 && ctl->server.protocol != P_IMAP_GSS
364 #endif /* GSSAPI */
365                 && !ctl->password)
366             {
367                 free(tmpbuf);
368 #define PASSWORD_PROMPT "Enter password for %s@%s: "
369                 tmpbuf = xmalloc(strlen(PASSWORD_PROMPT) +
370                                         strlen(ctl->remotename) +
371                                         strlen(ctl->server.pollname) + 1);
372                 (void) sprintf(tmpbuf, PASSWORD_PROMPT,
373                                ctl->remotename, ctl->server.pollname);
374                 ctl->password = xstrdup((char *)getpassword(tmpbuf));
375 #undef  PASSWORD_PROMPT
376             }
377         }
378
379     /* we don't need tmpbuf anymore */
380     free(tmpbuf);
381     tmpbuf = NULL;      /* firewall code */
382
383     /*
384      * Maybe time to go to demon mode...
385      */
386 #if defined(HAVE_SYSLOG)
387     if (run.use_syslog)
388     {
389         openlog(program_name, LOG_PID, LOG_MAIL);
390         error_init(-1);
391     }
392     else
393 #endif
394         error_init(run.poll_interval == 0 && !run.logfile);
395
396     if (run.poll_interval)
397     {
398         if (!nodetach)
399             daemonize(run.logfile, termhook);
400         error( 0, 0, "starting fetchmail %s daemon ", RELEASE_ID);
401
402         /*
403          * We'll set up a handler for these when we're sleeping,
404          * but ignore them otherwise so as not to interrupt a poll.
405          */
406         signal(SIGUSR1, SIG_IGN);
407         if (run.poll_interval && !getuid())
408             signal(SIGHUP, SIG_IGN);
409     }
410
411     /* beyond here we don't want more than one fetchmail running per user */
412     umask(0077);
413     signal(SIGABRT, termhook);
414     signal(SIGINT, termhook);
415     signal(SIGTERM, termhook);
416     signal(SIGALRM, termhook);
417     signal(SIGPIPE, termhook);
418     signal(SIGQUIT, termhook);
419
420     /* here's the exclusion lock */
421     if ((lockfp = fopen(lockfile,"w")) != NULL) {
422         fprintf(lockfp,"%d",getpid());
423         if (run.poll_interval)
424             fprintf(lockfp," %d", run.poll_interval);
425         fclose(lockfp);
426
427 #ifdef HAVE_ATEXIT
428         atexit(unlockit);
429 #endif
430 #ifdef HAVE_ON_EXIT
431         on_exit(unlockit, (char *)NULL);
432 #endif
433     }
434
435     /*
436      * Query all hosts. If there's only one, the error return will
437      * reflect the status of that transaction.
438      */
439     do {
440 #if defined(HAVE_RES_SEARCH) && defined(USE_TCPIP_FOR_DNS)
441         /*
442          * This was an efficiency hack that backfired.  The theory
443          * was that using TCP/IP for DNS queries would get us better
444          * reliability and shave off some per-UDP-packet costs.
445          * Unfortunately it interacted badly with diald, which effectively 
446          * filters out DNS queries over TCP/IP for reasons having to do
447          * with some obscure kernel problem involving bootstrapping of
448          * dynamically-addressed links.  I don't understand this mess
449          * and don't want to, so it's "See ya!" to this hack.
450          */
451         sethostent(TRUE);       /* use TCP/IP for mailserver queries */
452 #endif /* HAVE_RES_SEARCH */
453
454         batchcount = 0;
455         for (ctl = querylist; ctl; ctl = ctl->next)
456         {
457             if (ctl->active && !(implicitmode && ctl->server.skip))
458             {
459                 /* check skip interval first so that it counts all polls */
460                 if (run.poll_interval && ctl->server.interval) 
461                 {
462                     if (ctl->server.poll_count++ % ctl->server.interval) 
463                     {
464                         if (outlevel == O_VERBOSE)
465                             fprintf(stderr,
466                                     "fetchmail: interval not reached, not querying %s\n",
467                                     ctl->server.pollname);
468                         continue;
469                     }
470                 }
471
472 #if defined(linux) && !INET6
473                 /* interface_approve() does its own error logging */
474                 if (!interface_approve(&ctl->server))
475                     continue;
476 #endif /* defined(linux) && !INET6 */
477
478 #ifdef HAVE_GETHOSTBYNAME
479                 /*
480                  * This functions partly as a probe to make sure our
481                  * nameserver is still up.  The multidrop case
482                  * (especially) needs it.
483                  */
484                 if (ctl->server.preauthenticate==A_KERBEROS_V4 ||
485                     ctl->server.preauthenticate==A_KERBEROS_V5 ||
486                     MULTIDROP(ctl))
487                 {
488                     struct hostent      *namerec;
489
490                     /* compute the canonical name of the host */
491                     errno = 0;
492                     namerec = gethostbyname(ctl->server.queryname);
493                     if (namerec == (struct hostent *)NULL)
494                     {
495                         error(0, errno,
496                                 "skipping %s poll, ",
497                                 ctl->server.pollname);
498                         if (errno)
499                         {
500                             if (errno == ENETUNREACH)
501                                 break;  /* go to sleep */
502                         }
503 #ifdef HAVE_HERROR              /* NEXTSTEP doesn't */
504                         else
505                             herror("DNS error");
506 #endif /* HAVE_HERROR */
507                         continue;
508                     }
509                     else
510                     {
511                         free(ctl->server.truename);
512                         ctl->server.truename=xstrdup((char *)namerec->h_name);
513                     }
514                 }
515 #endif /* HAVE_GETHOSTBYNAME */
516
517                 querystatus = query_host(ctl);
518
519                 if (querystatus == PS_SUCCESS)
520                 {
521                     successes++;
522 #ifdef POP3_ENABLE
523                     if (!check_only)
524                         update_str_lists(ctl);
525
526                    /* Save UID list to prevent re-fetch in case fetchmail 
527                       recover from crash */
528                     if (!check_only && outlevel == O_VERBOSE)
529                     {
530                         write_saved_lists(querylist, run.idfile);
531                         error(0, 0, "fetchmail: saved UID List");
532                     }
533 #endif  /* POP3_ENABLE */
534                 }
535                 else if (!check_only && 
536                          ((querystatus!=PS_NOMAIL) || (outlevel==O_VERBOSE)))
537                     error(0, 0, "Query status=%d", querystatus);
538
539 #if defined(linux) && !INET6
540                 if (ctl->server.monitor)
541                     {
542                         /* Allow some time for the link to quiesce.  One
543                          * second is usually sufficient, three is safe.
544                          * Note:  this delay is important - don't remove!
545                          */
546                         sleep(3);
547                         interface_note_activity(&ctl->server);
548                     }
549 #endif /* defined(linux) && !INET6 */
550             }
551         }
552
553 #if defined(HAVE_RES_SEARCH) && defined(USE_TCPIP_FOR_DNS)
554         endhostent();           /* release TCP/IP connection to nameserver */
555 #endif /* HAVE_RES_SEARCH */
556
557         /*
558          * Close all SMTP delivery sockets.  For optimum performance
559          * we'd like to hold them open til end of run, but (1) this
560          * loses if our poll interval is longer than the MTA's inactivity
561          * timeout, and (2) some MTAs (like smail) don't deliver after
562          * each message, but rather queue up mail and wait to actually
563          * deliver it until the input socket is closed. 
564          */
565         for (ctl = querylist; ctl; ctl = ctl->next)
566             if (ctl->smtp_socket != -1)
567             {
568                 SMTP_quit(ctl->smtp_socket);
569                 close(ctl->smtp_socket);
570                 ctl->smtp_socket = -1;
571             }
572
573         /*
574          * OK, we've polled.  Now sleep.
575          */
576         if (run.poll_interval)
577         {
578             if (outlevel == O_VERBOSE)
579             {
580                 time_t  now;
581
582                 time(&now);
583                 fprintf(stderr, "fetchmail: sleeping at %s", ctime(&now));
584             }
585
586             /*
587              * With this simple hack, we make it possible for a foreground 
588              * fetchmail to wake up one in daemon mode.  What we want is the
589              * side effect of interrupting any sleep that may be going on,
590              * forcing fetchmail to re-poll its hosts.  The second line is
591              * for people who think all system daemons wake up on SIGHUP.
592              */
593             signal(SIGUSR1, donothing);
594             if (!getuid())
595                 signal(SIGHUP, donothing);
596
597             /*
598              * We can't use sleep(3) here because we need an alarm(3)
599              * equivalent in order to implement server nonresponse timeout.
600              * We'll just assume setitimer(2) is available since fetchmail
601              * has to have a BSDoid socket layer to work at all.
602              */
603             {
604 #ifndef __EMX__
605 #ifdef SLEEP_WITH_ALARM         /* not normally on */
606                 /* 
607                  * This code stopped working under glibc-2, apparently due
608                  * to the change in signal(2) semantics.  (The siginterrupt
609                  * line, added later, should fix this problem.) John Stracke
610                  * <francis@netscape.com> wrote:
611                  *
612                  * The problem seems to be that, after hitting the interval
613                  * timer while talking to the server, the process no longer
614                  * responds to SIGALRM.  I put in printf()s to see when it
615                  * reached the pause() for the poll interval, and I checked
616                  * the return from setitimer(), and everything seemed to be
617                  * working fine, except that the pause() just ignored SIGALRM.
618                  * I thought maybe the itimer wasn't being fired, so I hit
619                  * it with a SIGALRM from the command line, and it ignored
620                  * that, too.  SIGUSR1 woke it up just fine, and it proceeded
621                  * to repoll--but, when the dummy server didn't respond, it
622                  * never timed out, and SIGALRM wouldn't make it.
623                  *
624                  * (continued below...)
625                  */
626                 struct itimerval ntimeout;
627
628                 ntimeout.it_interval.tv_sec = ntimeout.it_interval.tv_usec = 0;
629                 ntimeout.it_value.tv_sec  = poll_interval;
630                 ntimeout.it_value.tv_usec = 0;
631
632                 siginterrupt(SIGALRM, 1);
633                 alarm_latch = FALSE;
634                 signal(SIGALRM, gotsigalrm);    /* first trap signals */
635                 setitimer(ITIMER_REAL,&ntimeout,NULL);  /* then start timer */
636                 /* there is a very small window between the next two lines */
637                 if (!alarm_latch)
638                     pause();
639                 signal(SIGALRM, SIG_IGN);
640 #else
641                 /* 
642                  * So the workaround I used is to make it sleep by using
643                  * select() instead of setitimer()/pause().  select() is
644                  * perfectly happy being called with a timeout and
645                  * no file descriptors; it just sleeps until it hits the
646                  * timeout.  The only concern I had was that it might
647                  * implement its timeout with SIGALRM--there are some
648                  * Unices where this is done, because select() is a library
649                  * function--but apparently not.
650                  */
651                 struct timeval timeout;
652
653                 timeout.tv_sec = run.poll_interval;
654                 timeout.tv_usec = 0;
655                 lastsig = 0;
656                 select(0,0,0,0, &timeout);
657 #endif
658 #else /* EMX */
659                 alarm_latch = FALSE;
660                 signal(SIGALRM, gotsigalrm);
661                 _beginthread(itimerthread, NULL, 32768, NULL);
662                 /* see similar code above */
663                 if (!alarm_latch)
664                     pause();
665                 signal(SIGALRM, SIG_IGN);
666 #endif /* ! EMX */
667                 if (lastsig == SIGUSR1
668                         || ((run.poll_interval && !getuid()) && lastsig == SIGHUP))
669                 {
670 #ifdef SYS_SIGLIST_DECLARED
671                     error(0, 0, "awakened by %s", sys_siglist[lastsig]);
672 #else
673                     error(0, 0, "awakened by signal %d", lastsig);
674 #endif
675                 }
676             }
677
678             /* now lock out interrupts again */
679             signal(SIGUSR1, SIG_IGN);
680             if (!getuid())
681                 signal(SIGHUP, SIG_IGN);
682
683             if (outlevel == O_VERBOSE)
684             {
685                 time_t  now;
686
687                 time(&now);
688                 fprintf(stderr, "fetchmail: awakened at %s", ctime(&now));
689             }
690         }
691     } while
692         (run.poll_interval);
693
694     if (outlevel == O_VERBOSE)
695         fprintf(stderr,"fetchmail: normal termination, status %d\n",
696                 successes ? PS_SUCCESS : querystatus);
697
698     termhook(0);
699     exit(successes ? PS_SUCCESS : querystatus);
700 }
701
702 static void optmerge(struct query *h2, struct query *h1, int force)
703 /* merge two options records */
704 {
705     /*
706      * If force is off, modify h2 fields only when they're empty (treat h1
707      * as defaults).  If force is on, modify each h2 field whenever h1
708      * is nonempty (treat h1 as an override).  
709      */
710 #define LIST_MERGE(dstl, srcl) if (force ? !!srcl : !dstl) \
711                                                 free_str_list(&dstl), \
712                                                 append_str_list(&dstl, &srcl)
713     LIST_MERGE(h2->server.localdomains, h1->server.localdomains);
714     LIST_MERGE(h2->localnames, h1->localnames);
715     LIST_MERGE(h2->mailboxes, h1->mailboxes);
716     LIST_MERGE(h2->smtphunt, h1->smtphunt);
717 #undef LIST_MERGE
718
719 #define FLAG_MERGE(fld) if (force ? !!h1->fld : !h2->fld) h2->fld = h1->fld
720     FLAG_MERGE(server.via);
721     FLAG_MERGE(server.protocol);
722 #if INET6
723     FLAG_MERGE(server.service);
724     FLAG_MERGE(server.netsec);
725 #else /* INET6 */
726     FLAG_MERGE(server.port);
727 #endif /* INET6 */
728     FLAG_MERGE(server.interval);
729     FLAG_MERGE(server.preauthenticate);
730     FLAG_MERGE(server.timeout);
731     FLAG_MERGE(server.envelope);
732     FLAG_MERGE(server.envskip);
733     FLAG_MERGE(server.qvirtual);
734     FLAG_MERGE(server.skip);
735     FLAG_MERGE(server.dns);
736     FLAG_MERGE(server.uidl);
737
738 #ifdef linux
739     FLAG_MERGE(server.interface);
740     FLAG_MERGE(server.monitor);
741     FLAG_MERGE(server.interface_pair);
742 #endif /* linux */
743
744     FLAG_MERGE(wildcard);
745     FLAG_MERGE(remotename);
746     FLAG_MERGE(password);
747     FLAG_MERGE(mda);
748     FLAG_MERGE(smtpaddress);
749     FLAG_MERGE(antispam);
750     FLAG_MERGE(preconnect);
751
752     FLAG_MERGE(keep);
753     FLAG_MERGE(flush);
754     FLAG_MERGE(fetchall);
755     FLAG_MERGE(rewrite);
756     FLAG_MERGE(forcecr);
757     FLAG_MERGE(stripcr);
758     FLAG_MERGE(pass8bits);
759     FLAG_MERGE(dropstatus);
760     FLAG_MERGE(mimedecode);
761     FLAG_MERGE(limit);
762     FLAG_MERGE(fetchlimit);
763     FLAG_MERGE(batchlimit);
764     FLAG_MERGE(expunge);
765 #undef FLAG_MERGE
766 }
767
768 static int load_params(int argc, char **argv, int optind)
769 {
770     int implicitmode, st;
771     struct passwd *pw;
772     struct query def_opts, *ctl;
773
774     memset(&def_opts, '\0', sizeof(struct query));
775     def_opts.smtp_socket = -1;
776     def_opts.smtpaddress = (char *)0;
777     def_opts.antispam = 571;
778
779     def_opts.server.protocol = P_AUTO;
780     def_opts.server.timeout = CLIENT_TIMEOUT;
781     def_opts.remotename = user;
782     def_opts.expunge = 1;
783
784     /* this builds the host list */
785     if (prc_parse_file(rcfile, !versioninfo) != 0)
786         exit(PS_SYNTAX);
787
788     if ((implicitmode = (optind >= argc)))
789     {
790         for (ctl = querylist; ctl; ctl = ctl->next)
791             ctl->active = TRUE;
792     }
793     else
794         for (; optind < argc; optind++) 
795         {
796             flag        predeclared =  FALSE;
797
798             /*
799              * If hostname corresponds to a host known from the rc file,
800              * simply declare it active.  Otherwise synthesize a host
801              * record from command line and defaults
802              */
803             for (ctl = querylist; ctl; ctl = ctl->next)
804                 if (!strcmp(ctl->server.pollname, argv[optind])
805                         || str_in_list(&ctl->server.akalist, argv[optind], TRUE))
806                 {
807                     ctl->active = TRUE;
808                     predeclared = TRUE;
809                 }
810
811             if (!predeclared)
812             {
813                 /*
814                  * Allocate and link record without copying in
815                  * command-line args; we'll do that with the optmerge
816                  * call later on.
817                  */
818                 ctl = hostalloc((struct query *)NULL);
819                 ctl->server.via =
820                     ctl->server.pollname = xstrdup(argv[optind]);
821             }
822         }
823
824     /*
825      * If there's a defaults record, merge it and lose it.
826      */ 
827     if (querylist && strcmp(querylist->server.pollname, "defaults") == 0)
828     {
829         for (ctl = querylist->next; ctl; ctl = ctl->next)
830             optmerge(ctl, querylist, FALSE);
831         querylist = querylist->next;
832     }
833
834     /* don't allow a defaults record after the first */
835     for (ctl = querylist; ctl; ctl = ctl->next)
836         if (ctl != querylist && strcmp(ctl->server.pollname, "defaults") == 0)
837             exit(PS_SYNTAX);
838
839     /* merge in wired defaults, do sanity checks and prepare internal fields */
840     for (ctl = querylist; ctl; ctl = ctl->next)
841     {
842         if (configdump || (ctl->active && !(implicitmode && ctl->server.skip)))
843         {
844             /* merge in defaults */
845             optmerge(ctl, &def_opts, FALSE);
846
847             /* force command-line options */
848             optmerge(ctl, &cmd_opts, TRUE);
849
850             /* make sure we have a nonempty host list to forward to */
851             if (!ctl->smtphunt)
852             {
853                 save_str(&ctl->smtphunt, fetchmailhost, FALSE);
854                 /* for non ETRN try to deliver mails to localhost if
855                  * fetchmailhost fails
856                  */
857                 if (ctl->server.protocol != P_ETRN) {
858                     save_str(&ctl->smtphunt, "localhost", FALSE);
859                 }
860             }
861
862             /* keep lusers from shooting themselves in the foot :-) */
863             if (run.poll_interval && ctl->limit)
864             {
865                 fprintf(stderr,"fetchmail: you'd never see large messages!\n");
866                 exit(PS_SYNTAX);
867             }
868
869             /* if `user' doesn't name a real local user, try to run as root */
870             if ((pw = getpwnam(user)) == (struct passwd *)NULL)
871                 ctl->uid = 0;
872             else
873                 ctl->uid = pw->pw_uid;  /* for local delivery via MDA */
874             if (!ctl->localnames)       /* for local delivery via SMTP */
875                 save_str_pair(&ctl->localnames, user, NULL);
876
877             /* this code enables flags to be turned off */
878 #define DEFAULT(flag, dflt)     if (flag == FLAG_TRUE)\
879                                         flag = TRUE;\
880                                 else if (flag == FLAG_FALSE)\
881                                         flag = FALSE;\
882                                 else\
883                                         flag = (dflt)
884             DEFAULT(ctl->keep, FALSE);
885             DEFAULT(ctl->fetchall, FALSE);
886             DEFAULT(ctl->flush, FALSE);
887             DEFAULT(ctl->rewrite, TRUE);
888             DEFAULT(ctl->stripcr, (ctl->mda != (char *)NULL)); 
889             DEFAULT(ctl->forcecr, FALSE);
890             DEFAULT(ctl->pass8bits, FALSE);
891             DEFAULT(ctl->dropstatus, FALSE);
892             DEFAULT(ctl->mimedecode, FALSE);
893             DEFAULT(ctl->server.dns, TRUE);
894             DEFAULT(ctl->server.uidl, FALSE);
895 #undef DEFAULT
896
897 #if !defined(HAVE_GETHOSTBYNAME) || !defined(HAVE_RES_SEARCH)
898             /* can't handle multidrop mailboxes unless we can do DNS lookups */
899             if (ctl->localnames && ctl->localnames->next && ctl->server.dns)
900             {
901                 ctl->server.dns = FALSE;
902                 fprintf(stderr, "fetchmail: warning: no DNS available to check multidrop fetches from %s\n", ctl->server.pollname);
903             }
904 #endif /* !HAVE_GETHOSTBYNAME || !HAVE_RES_SEARCH */
905
906             /*
907              *
908              * Compute the true name of the mailserver host.  
909              * There are two clashing cases here:
910              *
911              * (1) The poll name is a label, possibly on one of several
912              *     poll configurations for the same host.  In this case 
913              *     the `via' option will be present and give the true name.
914              *
915              * (2) The poll name is the true one, the via name is 
916              *     localhost.   This is going to be typical for ssh-using
917              *     configurations.
918              *
919              * We're going to assume the via name is true unless it's
920              * localhost.
921              *
922              * Each poll cycle, if we've got DNS, we'll try to canonicalize
923              * the name.  This will function as a probe to ensure the
924              * host's nameserver is up.
925              */
926             if (ctl->server.via && strcmp(ctl->server.via, "localhost"))
927                 ctl->server.queryname = xstrdup(ctl->server.via);
928             else
929                 ctl->server.queryname = xstrdup(ctl->server.pollname);
930             ctl->server.truename = xstrdup(ctl->server.queryname);
931
932             /* if no folders were specified, set up the null one as default */
933             if (!ctl->mailboxes)
934                 save_str(&ctl->mailboxes, (char *)NULL, 0);
935
936             /* maybe user overrode timeout on command line? */
937             if (ctl->server.timeout == -1)      
938                 ctl->server.timeout = CLIENT_TIMEOUT;
939
940 #if !INET6
941             /* sanity checks */
942             if (ctl->server.port < 0)
943             {
944                 (void) fprintf(stderr,
945                                "%s configuration invalid, port number cannot be negative",
946                                ctl->server.pollname);
947                 exit(PS_SYNTAX);
948             }
949             if (ctl->server.protocol == P_RPOP && ctl->server.port >= 1024)
950             {
951                 (void) fprintf(stderr,
952                                "%s configuration invalid, RPOP requires a privileged port",
953                                ctl->server.pollname);
954                 exit(PS_SYNTAX);
955             }
956 #endif /* !INET6 */
957         }
958     }
959
960     /* here's where we override globals */
961     if (cmd_run.logfile)
962         run.logfile = cmd_run.logfile;
963     if (cmd_run.idfile)
964         run.idfile = cmd_run.idfile;
965     if (cmd_run.poll_interval >= 0)
966         run.poll_interval = cmd_run.poll_interval;
967     if (cmd_run.invisible)
968         run.invisible = cmd_run.invisible;
969     if (cmd_run.use_syslog)
970         run.use_syslog = cmd_run.use_syslog;
971
972     /* check and daemon options are not compatible */
973     if (check_only && run.poll_interval)
974         run.poll_interval = 0;
975
976 #ifdef POP3_ENABLE
977     /* initialize UID handling */
978     if (!versioninfo && (st = prc_filecheck(run.idfile, !versioninfo)) != 0)
979         exit(st);
980     else
981         initialize_saved_lists(querylist, run.idfile);
982 #endif /* POP3_ENABLE */
983
984     return(implicitmode);
985 }
986
987 void termhook(int sig)
988 /* to be executed on normal or signal-induced termination */
989 {
990     struct query        *ctl;
991
992     /*
993      * Sending SMTP QUIT on signal is theoretically nice, but led to a 
994      * subtle bug.  If fetchmail was terminated by signal while it was 
995      * shipping message text, it would hang forever waiting for a
996      * command acknowledge.  In theory we could enable the QUIT
997      * only outside of the message send.  In practice, we don't
998      * care.  All mailservers hang up on a dropped TCP/IP connection
999      * anyway.
1000      */
1001
1002     if (sig != 0)
1003         error(0, 0, "terminated with signal %d", sig);
1004     else
1005         /* terminate all SMTP connections cleanly */
1006         for (ctl = querylist; ctl; ctl = ctl->next)
1007             if (ctl->smtp_socket != -1)
1008                 SMTP_quit(ctl->smtp_socket);
1009
1010 #ifdef POP3_ENABLE
1011     if (!check_only)
1012         write_saved_lists(querylist, run.idfile);
1013 #endif /* POP3_ENABLE */
1014
1015     /* 
1016      * Craig Metz, the RFC1938 one-time-password guy, points out:
1017      * "Remember that most kernels don't zero pages before handing them to the
1018      * next process and many kernels share pages between user and kernel space.
1019      * You'd be very surprised what you can find from a short program to do a
1020      * malloc() and then dump the contents of the pages you got. By zeroing
1021      * the secrets at end of run (earlier if you can), you make sure the next
1022      * guy can't get the password/pass phrase."
1023      *
1024      * Right you are, Craig!
1025      */
1026     for (ctl = querylist; ctl; ctl = ctl->next)
1027         if (ctl->password)
1028           memset(ctl->password, '\0', strlen(ctl->password));
1029
1030 #if !defined(HAVE_ATEXIT) && !defined(HAVE_ON_EXIT)
1031     unlockit();
1032 #endif
1033
1034     exit(successes ? PS_SUCCESS : querystatus);
1035 }
1036
1037 /*
1038  * Sequence of protocols to try when autoprobing, most capable to least.
1039  */
1040 static const int autoprobe[] = 
1041 {
1042 #ifdef IMAP_ENABLE
1043     P_IMAP,
1044 #endif /* IMAP_ENABLE */
1045 #ifdef POP3_ENABLE
1046     P_POP3,
1047 #endif /* POP3_ENABLE */
1048 #ifdef POP2_ENABLE
1049     P_POP2
1050 #endif /* POP2_ENABLE */
1051 };
1052
1053 static int query_host(struct query *ctl)
1054 /* perform fetch transaction with single host */
1055 {
1056     int i, st;
1057
1058     if (outlevel == O_VERBOSE)
1059     {
1060         time_t now;
1061
1062         time(&now);
1063         fprintf(stderr, "fetchmail: %s querying %s (protocol %s) at %s",
1064             RELEASE_ID,
1065             ctl->server.pollname, showproto(ctl->server.protocol), ctime(&now));
1066     }
1067     switch (ctl->server.protocol) {
1068     case P_AUTO:
1069         for (i = 0; i < sizeof(autoprobe)/sizeof(autoprobe[0]); i++)
1070         {
1071             ctl->server.protocol = autoprobe[i];
1072             if ((st = query_host(ctl)) == PS_SUCCESS || st == PS_NOMAIL || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP)
1073                 break;
1074         }
1075         ctl->server.protocol = P_AUTO;
1076         return(st);
1077         break;
1078     case P_POP2:
1079 #ifdef POP2_ENABLE
1080         return(doPOP2(ctl));
1081 #else
1082         fprintf(stderr, "POP2 support is not configured.\n");
1083         return(PS_PROTOCOL);
1084 #endif /* POP2_ENABLE */
1085         break;
1086     case P_POP3:
1087     case P_APOP:
1088     case P_RPOP:
1089 #ifdef POP3_ENABLE
1090         return(doPOP3(ctl));
1091 #else
1092         fprintf(stderr, "POP3 support is not configured.\n");
1093         return(PS_PROTOCOL);
1094 #endif /* POP3_ENABLE */
1095         break;
1096     case P_IMAP:
1097     case P_IMAP_K4:
1098 #ifdef GSSAPI
1099     case P_IMAP_GSS:
1100 #endif /* GSSAPI */
1101 #ifdef IMAP_ENABLE
1102         return(doIMAP(ctl));
1103 #else
1104         fprintf(stderr, "IMAP support is not configured.\n");
1105         return(PS_PROTOCOL);
1106 #endif /* IMAP_ENABLE */
1107         break;
1108     case P_ETRN:
1109 #ifndef ETRN_ENABLE
1110         fprintf(stderr, "ETRN support is not configured.\n");
1111         return(PS_PROTOCOL);
1112 #else
1113 #ifdef HAVE_GETHOSTBYNAME
1114         return(doETRN(ctl));
1115 #else
1116         fprintf(stderr, "Cannot support ETRN without gethostbyname(2).\n");
1117         return(PS_PROTOCOL);
1118 #endif /* HAVE_GETHOSTBYNAME */
1119 #endif /* ETRN_ENABLE */
1120     default:
1121         error(0, 0, "unsupported protocol selected.");
1122         return(PS_PROTOCOL);
1123     }
1124 }
1125
1126 void dump_params (struct runctl *runp, struct query *querylist, flag implicit)
1127 /* display query parameters in English */
1128 {
1129     struct query *ctl;
1130
1131     if (runp->poll_interval)
1132         printf("Poll interval is %d seconds\n", runp->poll_interval);
1133     if (runp->logfile)
1134         printf("Logfile is %s\n", runp->logfile);
1135     if (strcmp(runp->idfile, IDFILE_NAME))
1136         printf("Idfile is %s\n", runp->idfile);
1137 #if defined(HAVE_SYSLOG)
1138     if (runp->use_syslog)
1139         printf("Progress messages will be logged via syslog\n");
1140 #endif
1141     if (runp->invisible)
1142         printf("Fetchmail will masquerade and will not generate Received\n");
1143
1144     for (ctl = querylist; ctl; ctl = ctl->next)
1145     {
1146         if (!ctl->active || (implicit && ctl->server.skip))
1147             continue;
1148
1149         printf("Options for retrieving from %s@%s:\n",
1150                ctl->remotename, visbuf(ctl->server.pollname));
1151
1152         if (ctl->server.via && (ctl->server.protocol != P_ETRN))
1153             printf("  Mail will be retrieved via %s\n", ctl->server.via);
1154
1155         if (ctl->server.interval)
1156             printf("  Poll of this server will occur every %d intervals.\n",
1157                    ctl->server.interval);
1158         if (ctl->server.truename)
1159             printf("  True name of server is %s.\n", ctl->server.truename);
1160         if (ctl->server.skip || outlevel == O_VERBOSE)
1161             printf("  This host will%s be queried when no host is specified.\n",
1162                    ctl->server.skip ? " not" : "");
1163         /* don't poll for password when there is one or when using the ETRN
1164         ** protocol */
1165         if (!ctl->password && (ctl->server.protocol != P_ETRN))
1166             printf("  Password will be prompted for.\n");
1167         else if (outlevel == O_VERBOSE)
1168             if (ctl->server.protocol == P_APOP)
1169                 printf("  APOP secret = '%s'.\n", visbuf(ctl->password));
1170             else if (ctl->server.protocol == P_RPOP)
1171                 printf("  RPOP id = '%s'.\n", visbuf(ctl->password));
1172             else
1173                 printf("  Password = '%s'.\n", visbuf(ctl->password));
1174         if (ctl->server.protocol == P_POP3 
1175 #if INET6
1176             && !strcmp(ctl->server.service, KPOP_PORT)
1177 #else /* INET6 */
1178             && ctl->server.port == KPOP_PORT
1179 #endif /* INET6 */
1180             && (ctl->server.preauthenticate == A_KERBEROS_V4 ||
1181                 ctl->server.preauthenticate == A_KERBEROS_V5))
1182             printf("  Protocol is KPOP");
1183         else
1184             printf("  Protocol is %s", showproto(ctl->server.protocol));
1185 #if INET6
1186         if (ctl->server.service)
1187             printf(" (using service %s)", ctl->server.service);
1188         if (ctl->server.netsec)
1189             printf(" (using network security options %s)", ctl->server.netsec);
1190 #else /* INET6 */
1191         if (ctl->server.port)
1192             printf(" (using port %d)", ctl->server.port);
1193 #endif /* INET6 */
1194         else if (outlevel == O_VERBOSE)
1195             printf(" (using default port)");
1196         if (ctl->server.uidl && (ctl->server.protocol != P_ETRN))
1197             printf(" (forcing UIDL use)");
1198         putchar('.');
1199         putchar('\n');
1200         if (ctl->server.preauthenticate == A_KERBEROS_V4)
1201             printf("  Kerberos V4 preauthentication enabled.\n");
1202         if (ctl->server.preauthenticate == A_KERBEROS_V5)
1203             printf("  Kerberos V5 preauthentication enabled.\n");
1204         if (ctl->server.timeout > 0)
1205             printf("  Server nonresponse timeout is %d seconds", ctl->server.timeout);
1206         if (ctl->server.timeout ==  CLIENT_TIMEOUT)
1207             printf(" (default).\n");
1208         else
1209             printf(".\n");
1210
1211         if (ctl->server.protocol != P_ETRN) {
1212                 if (!ctl->mailboxes->id)
1213                     printf("  Default mailbox selected.\n");
1214                 else
1215                 {
1216                     struct idlist *idp;
1217
1218                     printf("  Selected mailboxes are:");
1219                     for (idp = ctl->mailboxes; idp; idp = idp->next)
1220                         printf(" %s", idp->id);
1221                     printf("\n");
1222                 }
1223                 printf("  %s messages will be retrieved (--all %s).\n",
1224                        ctl->fetchall ? "All" : "Only new",
1225                        ctl->fetchall ? "on" : "off");
1226                 printf("  Fetched messages will%s be kept on the server (--keep %s).\n",
1227                        ctl->keep ? "" : " not",
1228                        ctl->keep ? "on" : "off");
1229                 printf("  Old messages will%s be flushed before message retrieval (--flush %s).\n",
1230                        ctl->flush ? "" : " not",
1231                        ctl->flush ? "on" : "off");
1232                 printf("  Rewrite of server-local addresses is %sabled (--norewrite %s).\n",
1233                        ctl->rewrite ? "en" : "dis",
1234                        ctl->rewrite ? "off" : "on");
1235                 printf("  Carriage-return stripping is %sabled (stripcr %s).\n",
1236                        ctl->stripcr ? "en" : "dis",
1237                        ctl->stripcr ? "on" : "off");
1238                 printf("  Carriage-return forcing is %sabled (forcecr %s).\n",
1239                        ctl->forcecr ? "en" : "dis",
1240                        ctl->forcecr ? "on" : "off");
1241                 printf("  Interpretation of Content-Transfer-Encoding is %sabled (pass8bits %s).\n",
1242                        ctl->pass8bits ? "dis" : "en",
1243                        ctl->pass8bits ? "on" : "off");
1244                 printf("  MIME decoding is %sabled (mimedecode %s).\n",
1245                        ctl->mimedecode ? "en" : "dis",
1246                        ctl->mimedecode ? "on" : "off");
1247                 printf("  Nonempty Status lines will be %s (dropstatus %s)\n",
1248                        ctl->dropstatus ? "discarded" : "kept",
1249                        ctl->dropstatus ? "on" : "off");
1250                 if (NUM_NONZERO(ctl->limit))
1251                     printf("  Message size limit is %d bytes (--limit %d).\n", 
1252                            ctl->limit, ctl->limit);
1253                 else if (outlevel == O_VERBOSE)
1254                     printf("  No message size limit (--limit 0).\n");
1255                 if (NUM_NONZERO(ctl->fetchlimit))
1256                     printf("  Received-message limit is %d (--fetchlimit %d).\n",
1257                            ctl->fetchlimit, ctl->fetchlimit);
1258                 else if (outlevel == O_VERBOSE)
1259                     printf("  No received-message limit (--fetchlimit 0).\n");
1260                 if (NUM_NONZERO(ctl->batchlimit))
1261                     printf("  SMTP message batch limit is %d.\n", ctl->batchlimit);
1262                 else if (outlevel == O_VERBOSE)
1263                     printf("  No SMTP message batch limit (--batchlimit 0).\n");
1264                 if (ctl->server.protocol == P_IMAP)
1265                     if (NUM_NONZERO(ctl->expunge))
1266                         printf("  Deletion interval between expunges is %d (--expunge %d).\n", ctl->expunge, ctl->expunge);
1267                     else if (outlevel == O_VERBOSE)
1268                         printf("  No expunges (--expunge 0).\n");
1269         }
1270         if (ctl->mda && (ctl->server.protocol != P_ETRN))
1271             printf("  Messages will be delivered with '%s.'\n", visbuf(ctl->mda));
1272         else
1273         {
1274             struct idlist *idp;
1275
1276             printf("  Messages will be SMTP-forwarded to:");
1277             for (idp = ctl->smtphunt; idp; idp = idp->next)
1278             {
1279                 printf(" %s", idp->id);
1280                 if (!idp->val.status.mark)
1281                     printf(" (default)");
1282             }
1283             printf("\n");
1284             if (ctl->smtpaddress)
1285                 printf("  Host part of MAIL FROM line will be %s\n",
1286                        ctl->smtpaddress);
1287         }
1288         if (ctl->server.protocol != P_ETRN) {
1289                 if (ctl->antispam != -1)
1290                     printf("  Listener SMTP reponse %d will be treated as a spam block\n",
1291                            ctl->antispam);
1292                 else if (outlevel == O_VERBOSE)
1293                     printf("  Spam-blocking disabled\n");
1294         }
1295         if (ctl->preconnect)
1296             printf("  Server connection will be brought up with '%s.'\n",
1297                    visbuf(ctl->preconnect));
1298         else if (outlevel == O_VERBOSE)
1299             printf("  No pre-connection command.\n");
1300         if (ctl->postconnect)
1301             printf("  Server connection will be taken down with '%s.'\n",
1302                    visbuf(ctl->postconnect));
1303         else if (outlevel == O_VERBOSE)
1304             printf("  No post-connection command.\n");
1305         if (ctl->server.protocol != P_ETRN) {
1306                 if (!ctl->localnames)
1307                     printf("  No localnames declared for this host.\n");
1308                 else
1309                 {
1310                     struct idlist *idp;
1311                     int count = 0;
1312
1313                     for (idp = ctl->localnames; idp; idp = idp->next)
1314                         ++count;
1315
1316                     if (count > 1 || ctl->wildcard)
1317                         printf("  Multi-drop mode: ");
1318                     else
1319                         printf("  Single-drop mode: ");
1320
1321                     printf("%d local name(s) recognized.\n", count);
1322                     if (outlevel == O_VERBOSE)
1323                     {
1324                         for (idp = ctl->localnames; idp; idp = idp->next)
1325                             if (idp->val.id2)
1326                                 printf("\t%s -> %s\n", idp->id, idp->val.id2);
1327                             else
1328                                 printf("\t%s\n", idp->id);
1329                         if (ctl->wildcard)
1330                             fputs("\t*\n", stdout);
1331                     }
1332
1333                     if (count > 1 || ctl->wildcard)
1334                     {
1335                         printf("  DNS lookup for multidrop addresses is %sabled.\n",
1336                                ctl->server.dns ? "en" : "dis");
1337
1338                         if (ctl->server.envelope == STRING_DISABLED)
1339                             printf("  Envelope-address routing is disabled\n");
1340                         else
1341                         {
1342                             printf("  Envelope header is assumed to be: %s\n",
1343                                    ctl->server.envelope ? ctl->server.envelope:"Received");
1344                             if (ctl->server.envskip > 1 || outlevel >= O_VERBOSE)
1345                                 printf("  Number of envelope header to be parsed: %d\n",
1346                                        ctl->server.envskip);
1347                             if (ctl->server.qvirtual)
1348                                 printf("  Prefix %s will be removed from user id\n",
1349                                        ctl->server.qvirtual);
1350                             else if (outlevel >= O_VERBOSE) 
1351                                 printf("  No prefix stripping\n");
1352                         }
1353
1354                         if (ctl->server.akalist)
1355                         {
1356                             struct idlist *idp;
1357
1358                             printf("  Predeclared mailserver aliases:");
1359                             for (idp = ctl->server.akalist; idp; idp = idp->next)
1360                                 printf(" %s", idp->id);
1361                             putchar('\n');
1362                         }
1363                         if (ctl->server.localdomains)
1364                         {
1365                             struct idlist *idp;
1366
1367                             printf("  Local domains:");
1368                             for (idp = ctl->server.localdomains; idp; idp = idp->next)
1369                                 printf(" %s", idp->id);
1370                             putchar('\n');
1371                         }
1372                     }
1373                 }
1374         }
1375 #ifdef  linux
1376         if (ctl->server.interface)
1377             printf("  Connection must be through interface %s.\n", ctl->server.interface);
1378         else if (outlevel == O_VERBOSE)
1379             printf("  No interface requirement specified.\n");
1380         if (ctl->server.monitor)
1381             printf("  Polling loop will monitor %s.\n", ctl->server.monitor);
1382         else if (outlevel == O_VERBOSE)
1383             printf("  No monitor interface specified.\n");
1384 #endif
1385
1386         if (ctl->server.protocol > P_POP2 && (ctl->server.protocol != P_ETRN))
1387             if (!ctl->oldsaved)
1388                 printf("  No UIDs saved from this host.\n");
1389             else
1390             {
1391                 struct idlist *idp;
1392                 int count = 0;
1393
1394                 for (idp = ctl->oldsaved; idp; idp = idp->next)
1395                     ++count;
1396
1397                 printf("  %d UIDs saved.\n", count);
1398                 if (outlevel == O_VERBOSE)
1399                     for (idp = ctl->oldsaved; idp; idp = idp->next)
1400                         fprintf(stderr, "\t%s\n", idp->id);
1401             }
1402     }
1403 }
1404
1405 /* fetchmail.c ends here */