]> Pileus Git - ~andy/fetchmail/blob - fetchmail.c
Duh. Synthesized record has to be declared active.
[~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                 ctl->active = TRUE;
822             }
823         }
824
825     /*
826      * If there's a defaults record, merge it and lose it.
827      */ 
828     if (querylist && strcmp(querylist->server.pollname, "defaults") == 0)
829     {
830         for (ctl = querylist->next; ctl; ctl = ctl->next)
831             optmerge(ctl, querylist, FALSE);
832         querylist = querylist->next;
833     }
834
835     /* don't allow a defaults record after the first */
836     for (ctl = querylist; ctl; ctl = ctl->next)
837         if (ctl != querylist && strcmp(ctl->server.pollname, "defaults") == 0)
838             exit(PS_SYNTAX);
839
840     /* merge in wired defaults, do sanity checks and prepare internal fields */
841     for (ctl = querylist; ctl; ctl = ctl->next)
842     {
843         if (configdump || (ctl->active && !(implicitmode && ctl->server.skip)))
844         {
845             /* merge in defaults */
846             optmerge(ctl, &def_opts, FALSE);
847
848             /* force command-line options */
849             optmerge(ctl, &cmd_opts, TRUE);
850
851             /* make sure we have a nonempty host list to forward to */
852             if (!ctl->smtphunt)
853             {
854                 save_str(&ctl->smtphunt, fetchmailhost, FALSE);
855                 /* for non ETRN try to deliver mails to localhost if
856                  * fetchmailhost fails
857                  */
858                 if (ctl->server.protocol != P_ETRN) {
859                     save_str(&ctl->smtphunt, "localhost", FALSE);
860                 }
861             }
862
863             /* keep lusers from shooting themselves in the foot :-) */
864             if (run.poll_interval && ctl->limit)
865             {
866                 fprintf(stderr,"fetchmail: you'd never see large messages!\n");
867                 exit(PS_SYNTAX);
868             }
869
870             /* if `user' doesn't name a real local user, try to run as root */
871             if ((pw = getpwnam(user)) == (struct passwd *)NULL)
872                 ctl->uid = 0;
873             else
874                 ctl->uid = pw->pw_uid;  /* for local delivery via MDA */
875             if (!ctl->localnames)       /* for local delivery via SMTP */
876                 save_str_pair(&ctl->localnames, user, NULL);
877
878             /* this code enables flags to be turned off */
879 #define DEFAULT(flag, dflt)     if (flag == FLAG_TRUE)\
880                                         flag = TRUE;\
881                                 else if (flag == FLAG_FALSE)\
882                                         flag = FALSE;\
883                                 else\
884                                         flag = (dflt)
885             DEFAULT(ctl->keep, FALSE);
886             DEFAULT(ctl->fetchall, FALSE);
887             DEFAULT(ctl->flush, FALSE);
888             DEFAULT(ctl->rewrite, TRUE);
889             DEFAULT(ctl->stripcr, (ctl->mda != (char *)NULL)); 
890             DEFAULT(ctl->forcecr, FALSE);
891             DEFAULT(ctl->pass8bits, FALSE);
892             DEFAULT(ctl->dropstatus, FALSE);
893             DEFAULT(ctl->mimedecode, FALSE);
894             DEFAULT(ctl->server.dns, TRUE);
895             DEFAULT(ctl->server.uidl, FALSE);
896 #undef DEFAULT
897
898 #if !defined(HAVE_GETHOSTBYNAME) || !defined(HAVE_RES_SEARCH)
899             /* can't handle multidrop mailboxes unless we can do DNS lookups */
900             if (ctl->localnames && ctl->localnames->next && ctl->server.dns)
901             {
902                 ctl->server.dns = FALSE;
903                 fprintf(stderr, "fetchmail: warning: no DNS available to check multidrop fetches from %s\n", ctl->server.pollname);
904             }
905 #endif /* !HAVE_GETHOSTBYNAME || !HAVE_RES_SEARCH */
906
907             /*
908              *
909              * Compute the true name of the mailserver host.  
910              * There are two clashing cases here:
911              *
912              * (1) The poll name is a label, possibly on one of several
913              *     poll configurations for the same host.  In this case 
914              *     the `via' option will be present and give the true name.
915              *
916              * (2) The poll name is the true one, the via name is 
917              *     localhost.   This is going to be typical for ssh-using
918              *     configurations.
919              *
920              * We're going to assume the via name is true unless it's
921              * localhost.
922              *
923              * Each poll cycle, if we've got DNS, we'll try to canonicalize
924              * the name.  This will function as a probe to ensure the
925              * host's nameserver is up.
926              */
927             if (ctl->server.via && strcmp(ctl->server.via, "localhost"))
928                 ctl->server.queryname = xstrdup(ctl->server.via);
929             else
930                 ctl->server.queryname = xstrdup(ctl->server.pollname);
931             ctl->server.truename = xstrdup(ctl->server.queryname);
932
933             /* if no folders were specified, set up the null one as default */
934             if (!ctl->mailboxes)
935                 save_str(&ctl->mailboxes, (char *)NULL, 0);
936
937             /* maybe user overrode timeout on command line? */
938             if (ctl->server.timeout == -1)      
939                 ctl->server.timeout = CLIENT_TIMEOUT;
940
941 #if !INET6
942             /* sanity checks */
943             if (ctl->server.port < 0)
944             {
945                 (void) fprintf(stderr,
946                                "%s configuration invalid, port number cannot be negative",
947                                ctl->server.pollname);
948                 exit(PS_SYNTAX);
949             }
950             if (ctl->server.protocol == P_RPOP && ctl->server.port >= 1024)
951             {
952                 (void) fprintf(stderr,
953                                "%s configuration invalid, RPOP requires a privileged port",
954                                ctl->server.pollname);
955                 exit(PS_SYNTAX);
956             }
957 #endif /* !INET6 */
958         }
959     }
960
961     /* here's where we override globals */
962     if (cmd_run.logfile)
963         run.logfile = cmd_run.logfile;
964     if (cmd_run.idfile)
965         run.idfile = cmd_run.idfile;
966     if (cmd_run.poll_interval >= 0)
967         run.poll_interval = cmd_run.poll_interval;
968     if (cmd_run.invisible)
969         run.invisible = cmd_run.invisible;
970     if (cmd_run.use_syslog)
971         run.use_syslog = cmd_run.use_syslog;
972
973     /* check and daemon options are not compatible */
974     if (check_only && run.poll_interval)
975         run.poll_interval = 0;
976
977 #ifdef POP3_ENABLE
978     /* initialize UID handling */
979     if (!versioninfo && (st = prc_filecheck(run.idfile, !versioninfo)) != 0)
980         exit(st);
981     else
982         initialize_saved_lists(querylist, run.idfile);
983 #endif /* POP3_ENABLE */
984
985     return(implicitmode);
986 }
987
988 void termhook(int sig)
989 /* to be executed on normal or signal-induced termination */
990 {
991     struct query        *ctl;
992
993     /*
994      * Sending SMTP QUIT on signal is theoretically nice, but led to a 
995      * subtle bug.  If fetchmail was terminated by signal while it was 
996      * shipping message text, it would hang forever waiting for a
997      * command acknowledge.  In theory we could enable the QUIT
998      * only outside of the message send.  In practice, we don't
999      * care.  All mailservers hang up on a dropped TCP/IP connection
1000      * anyway.
1001      */
1002
1003     if (sig != 0)
1004         error(0, 0, "terminated with signal %d", sig);
1005     else
1006         /* terminate all SMTP connections cleanly */
1007         for (ctl = querylist; ctl; ctl = ctl->next)
1008             if (ctl->smtp_socket != -1)
1009                 SMTP_quit(ctl->smtp_socket);
1010
1011 #ifdef POP3_ENABLE
1012     if (!check_only)
1013         write_saved_lists(querylist, run.idfile);
1014 #endif /* POP3_ENABLE */
1015
1016     /* 
1017      * Craig Metz, the RFC1938 one-time-password guy, points out:
1018      * "Remember that most kernels don't zero pages before handing them to the
1019      * next process and many kernels share pages between user and kernel space.
1020      * You'd be very surprised what you can find from a short program to do a
1021      * malloc() and then dump the contents of the pages you got. By zeroing
1022      * the secrets at end of run (earlier if you can), you make sure the next
1023      * guy can't get the password/pass phrase."
1024      *
1025      * Right you are, Craig!
1026      */
1027     for (ctl = querylist; ctl; ctl = ctl->next)
1028         if (ctl->password)
1029           memset(ctl->password, '\0', strlen(ctl->password));
1030
1031 #if !defined(HAVE_ATEXIT) && !defined(HAVE_ON_EXIT)
1032     unlockit();
1033 #endif
1034
1035     exit(successes ? PS_SUCCESS : querystatus);
1036 }
1037
1038 /*
1039  * Sequence of protocols to try when autoprobing, most capable to least.
1040  */
1041 static const int autoprobe[] = 
1042 {
1043 #ifdef IMAP_ENABLE
1044     P_IMAP,
1045 #endif /* IMAP_ENABLE */
1046 #ifdef POP3_ENABLE
1047     P_POP3,
1048 #endif /* POP3_ENABLE */
1049 #ifdef POP2_ENABLE
1050     P_POP2
1051 #endif /* POP2_ENABLE */
1052 };
1053
1054 static int query_host(struct query *ctl)
1055 /* perform fetch transaction with single host */
1056 {
1057     int i, st;
1058
1059     if (outlevel == O_VERBOSE)
1060     {
1061         time_t now;
1062
1063         time(&now);
1064         fprintf(stderr, "fetchmail: %s querying %s (protocol %s) at %s",
1065             RELEASE_ID,
1066             ctl->server.pollname, showproto(ctl->server.protocol), ctime(&now));
1067     }
1068     switch (ctl->server.protocol) {
1069     case P_AUTO:
1070         for (i = 0; i < sizeof(autoprobe)/sizeof(autoprobe[0]); i++)
1071         {
1072             ctl->server.protocol = autoprobe[i];
1073             if ((st = query_host(ctl)) == PS_SUCCESS || st == PS_NOMAIL || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP)
1074                 break;
1075         }
1076         ctl->server.protocol = P_AUTO;
1077         return(st);
1078         break;
1079     case P_POP2:
1080 #ifdef POP2_ENABLE
1081         return(doPOP2(ctl));
1082 #else
1083         fprintf(stderr, "POP2 support is not configured.\n");
1084         return(PS_PROTOCOL);
1085 #endif /* POP2_ENABLE */
1086         break;
1087     case P_POP3:
1088     case P_APOP:
1089     case P_RPOP:
1090 #ifdef POP3_ENABLE
1091         return(doPOP3(ctl));
1092 #else
1093         fprintf(stderr, "POP3 support is not configured.\n");
1094         return(PS_PROTOCOL);
1095 #endif /* POP3_ENABLE */
1096         break;
1097     case P_IMAP:
1098     case P_IMAP_K4:
1099 #ifdef GSSAPI
1100     case P_IMAP_GSS:
1101 #endif /* GSSAPI */
1102 #ifdef IMAP_ENABLE
1103         return(doIMAP(ctl));
1104 #else
1105         fprintf(stderr, "IMAP support is not configured.\n");
1106         return(PS_PROTOCOL);
1107 #endif /* IMAP_ENABLE */
1108         break;
1109     case P_ETRN:
1110 #ifndef ETRN_ENABLE
1111         fprintf(stderr, "ETRN support is not configured.\n");
1112         return(PS_PROTOCOL);
1113 #else
1114 #ifdef HAVE_GETHOSTBYNAME
1115         return(doETRN(ctl));
1116 #else
1117         fprintf(stderr, "Cannot support ETRN without gethostbyname(2).\n");
1118         return(PS_PROTOCOL);
1119 #endif /* HAVE_GETHOSTBYNAME */
1120 #endif /* ETRN_ENABLE */
1121     default:
1122         error(0, 0, "unsupported protocol selected.");
1123         return(PS_PROTOCOL);
1124     }
1125 }
1126
1127 void dump_params (struct runctl *runp, struct query *querylist, flag implicit)
1128 /* display query parameters in English */
1129 {
1130     struct query *ctl;
1131
1132     if (runp->poll_interval)
1133         printf("Poll interval is %d seconds\n", runp->poll_interval);
1134     if (runp->logfile)
1135         printf("Logfile is %s\n", runp->logfile);
1136     if (strcmp(runp->idfile, IDFILE_NAME))
1137         printf("Idfile is %s\n", runp->idfile);
1138 #if defined(HAVE_SYSLOG)
1139     if (runp->use_syslog)
1140         printf("Progress messages will be logged via syslog\n");
1141 #endif
1142     if (runp->invisible)
1143         printf("Fetchmail will masquerade and will not generate Received\n");
1144
1145     for (ctl = querylist; ctl; ctl = ctl->next)
1146     {
1147         if (!ctl->active || (implicit && ctl->server.skip))
1148             continue;
1149
1150         printf("Options for retrieving from %s@%s:\n",
1151                ctl->remotename, visbuf(ctl->server.pollname));
1152
1153         if (ctl->server.via && (ctl->server.protocol != P_ETRN))
1154             printf("  Mail will be retrieved via %s\n", ctl->server.via);
1155
1156         if (ctl->server.interval)
1157             printf("  Poll of this server will occur every %d intervals.\n",
1158                    ctl->server.interval);
1159         if (ctl->server.truename)
1160             printf("  True name of server is %s.\n", ctl->server.truename);
1161         if (ctl->server.skip || outlevel == O_VERBOSE)
1162             printf("  This host will%s be queried when no host is specified.\n",
1163                    ctl->server.skip ? " not" : "");
1164         /* don't poll for password when there is one or when using the ETRN
1165         ** protocol */
1166         if (!ctl->password && (ctl->server.protocol != P_ETRN))
1167             printf("  Password will be prompted for.\n");
1168         else if (outlevel == O_VERBOSE)
1169             if (ctl->server.protocol == P_APOP)
1170                 printf("  APOP secret = '%s'.\n", visbuf(ctl->password));
1171             else if (ctl->server.protocol == P_RPOP)
1172                 printf("  RPOP id = '%s'.\n", visbuf(ctl->password));
1173             else
1174                 printf("  Password = '%s'.\n", visbuf(ctl->password));
1175         if (ctl->server.protocol == P_POP3 
1176 #if INET6
1177             && !strcmp(ctl->server.service, KPOP_PORT)
1178 #else /* INET6 */
1179             && ctl->server.port == KPOP_PORT
1180 #endif /* INET6 */
1181             && (ctl->server.preauthenticate == A_KERBEROS_V4 ||
1182                 ctl->server.preauthenticate == A_KERBEROS_V5))
1183             printf("  Protocol is KPOP");
1184         else
1185             printf("  Protocol is %s", showproto(ctl->server.protocol));
1186 #if INET6
1187         if (ctl->server.service)
1188             printf(" (using service %s)", ctl->server.service);
1189         if (ctl->server.netsec)
1190             printf(" (using network security options %s)", ctl->server.netsec);
1191 #else /* INET6 */
1192         if (ctl->server.port)
1193             printf(" (using port %d)", ctl->server.port);
1194 #endif /* INET6 */
1195         else if (outlevel == O_VERBOSE)
1196             printf(" (using default port)");
1197         if (ctl->server.uidl && (ctl->server.protocol != P_ETRN))
1198             printf(" (forcing UIDL use)");
1199         putchar('.');
1200         putchar('\n');
1201         if (ctl->server.preauthenticate == A_KERBEROS_V4)
1202             printf("  Kerberos V4 preauthentication enabled.\n");
1203         if (ctl->server.preauthenticate == A_KERBEROS_V5)
1204             printf("  Kerberos V5 preauthentication enabled.\n");
1205         if (ctl->server.timeout > 0)
1206             printf("  Server nonresponse timeout is %d seconds", ctl->server.timeout);
1207         if (ctl->server.timeout ==  CLIENT_TIMEOUT)
1208             printf(" (default).\n");
1209         else
1210             printf(".\n");
1211
1212         if (ctl->server.protocol != P_ETRN) {
1213                 if (!ctl->mailboxes->id)
1214                     printf("  Default mailbox selected.\n");
1215                 else
1216                 {
1217                     struct idlist *idp;
1218
1219                     printf("  Selected mailboxes are:");
1220                     for (idp = ctl->mailboxes; idp; idp = idp->next)
1221                         printf(" %s", idp->id);
1222                     printf("\n");
1223                 }
1224                 printf("  %s messages will be retrieved (--all %s).\n",
1225                        ctl->fetchall ? "All" : "Only new",
1226                        ctl->fetchall ? "on" : "off");
1227                 printf("  Fetched messages will%s be kept on the server (--keep %s).\n",
1228                        ctl->keep ? "" : " not",
1229                        ctl->keep ? "on" : "off");
1230                 printf("  Old messages will%s be flushed before message retrieval (--flush %s).\n",
1231                        ctl->flush ? "" : " not",
1232                        ctl->flush ? "on" : "off");
1233                 printf("  Rewrite of server-local addresses is %sabled (--norewrite %s).\n",
1234                        ctl->rewrite ? "en" : "dis",
1235                        ctl->rewrite ? "off" : "on");
1236                 printf("  Carriage-return stripping is %sabled (stripcr %s).\n",
1237                        ctl->stripcr ? "en" : "dis",
1238                        ctl->stripcr ? "on" : "off");
1239                 printf("  Carriage-return forcing is %sabled (forcecr %s).\n",
1240                        ctl->forcecr ? "en" : "dis",
1241                        ctl->forcecr ? "on" : "off");
1242                 printf("  Interpretation of Content-Transfer-Encoding is %sabled (pass8bits %s).\n",
1243                        ctl->pass8bits ? "dis" : "en",
1244                        ctl->pass8bits ? "on" : "off");
1245                 printf("  MIME decoding is %sabled (mimedecode %s).\n",
1246                        ctl->mimedecode ? "en" : "dis",
1247                        ctl->mimedecode ? "on" : "off");
1248                 printf("  Nonempty Status lines will be %s (dropstatus %s)\n",
1249                        ctl->dropstatus ? "discarded" : "kept",
1250                        ctl->dropstatus ? "on" : "off");
1251                 if (NUM_NONZERO(ctl->limit))
1252                     printf("  Message size limit is %d bytes (--limit %d).\n", 
1253                            ctl->limit, ctl->limit);
1254                 else if (outlevel == O_VERBOSE)
1255                     printf("  No message size limit (--limit 0).\n");
1256                 if (NUM_NONZERO(ctl->fetchlimit))
1257                     printf("  Received-message limit is %d (--fetchlimit %d).\n",
1258                            ctl->fetchlimit, ctl->fetchlimit);
1259                 else if (outlevel == O_VERBOSE)
1260                     printf("  No received-message limit (--fetchlimit 0).\n");
1261                 if (NUM_NONZERO(ctl->batchlimit))
1262                     printf("  SMTP message batch limit is %d.\n", ctl->batchlimit);
1263                 else if (outlevel == O_VERBOSE)
1264                     printf("  No SMTP message batch limit (--batchlimit 0).\n");
1265                 if (ctl->server.protocol == P_IMAP)
1266                     if (NUM_NONZERO(ctl->expunge))
1267                         printf("  Deletion interval between expunges is %d (--expunge %d).\n", ctl->expunge, ctl->expunge);
1268                     else if (outlevel == O_VERBOSE)
1269                         printf("  No expunges (--expunge 0).\n");
1270         }
1271         if (ctl->mda && (ctl->server.protocol != P_ETRN))
1272             printf("  Messages will be delivered with '%s.'\n", visbuf(ctl->mda));
1273         else
1274         {
1275             struct idlist *idp;
1276
1277             printf("  Messages will be SMTP-forwarded to:");
1278             for (idp = ctl->smtphunt; idp; idp = idp->next)
1279             {
1280                 printf(" %s", idp->id);
1281                 if (!idp->val.status.mark)
1282                     printf(" (default)");
1283             }
1284             printf("\n");
1285             if (ctl->smtpaddress)
1286                 printf("  Host part of MAIL FROM line will be %s\n",
1287                        ctl->smtpaddress);
1288         }
1289         if (ctl->server.protocol != P_ETRN) {
1290                 if (ctl->antispam != -1)
1291                     printf("  Listener SMTP reponse %d will be treated as a spam block\n",
1292                            ctl->antispam);
1293                 else if (outlevel == O_VERBOSE)
1294                     printf("  Spam-blocking disabled\n");
1295         }
1296         if (ctl->preconnect)
1297             printf("  Server connection will be brought up with '%s.'\n",
1298                    visbuf(ctl->preconnect));
1299         else if (outlevel == O_VERBOSE)
1300             printf("  No pre-connection command.\n");
1301         if (ctl->postconnect)
1302             printf("  Server connection will be taken down with '%s.'\n",
1303                    visbuf(ctl->postconnect));
1304         else if (outlevel == O_VERBOSE)
1305             printf("  No post-connection command.\n");
1306         if (ctl->server.protocol != P_ETRN) {
1307                 if (!ctl->localnames)
1308                     printf("  No localnames declared for this host.\n");
1309                 else
1310                 {
1311                     struct idlist *idp;
1312                     int count = 0;
1313
1314                     for (idp = ctl->localnames; idp; idp = idp->next)
1315                         ++count;
1316
1317                     if (count > 1 || ctl->wildcard)
1318                         printf("  Multi-drop mode: ");
1319                     else
1320                         printf("  Single-drop mode: ");
1321
1322                     printf("%d local name(s) recognized.\n", count);
1323                     if (outlevel == O_VERBOSE)
1324                     {
1325                         for (idp = ctl->localnames; idp; idp = idp->next)
1326                             if (idp->val.id2)
1327                                 printf("\t%s -> %s\n", idp->id, idp->val.id2);
1328                             else
1329                                 printf("\t%s\n", idp->id);
1330                         if (ctl->wildcard)
1331                             fputs("\t*\n", stdout);
1332                     }
1333
1334                     if (count > 1 || ctl->wildcard)
1335                     {
1336                         printf("  DNS lookup for multidrop addresses is %sabled.\n",
1337                                ctl->server.dns ? "en" : "dis");
1338
1339                         if (ctl->server.envelope == STRING_DISABLED)
1340                             printf("  Envelope-address routing is disabled\n");
1341                         else
1342                         {
1343                             printf("  Envelope header is assumed to be: %s\n",
1344                                    ctl->server.envelope ? ctl->server.envelope:"Received");
1345                             if (ctl->server.envskip > 1 || outlevel >= O_VERBOSE)
1346                                 printf("  Number of envelope header to be parsed: %d\n",
1347                                        ctl->server.envskip);
1348                             if (ctl->server.qvirtual)
1349                                 printf("  Prefix %s will be removed from user id\n",
1350                                        ctl->server.qvirtual);
1351                             else if (outlevel >= O_VERBOSE) 
1352                                 printf("  No prefix stripping\n");
1353                         }
1354
1355                         if (ctl->server.akalist)
1356                         {
1357                             struct idlist *idp;
1358
1359                             printf("  Predeclared mailserver aliases:");
1360                             for (idp = ctl->server.akalist; idp; idp = idp->next)
1361                                 printf(" %s", idp->id);
1362                             putchar('\n');
1363                         }
1364                         if (ctl->server.localdomains)
1365                         {
1366                             struct idlist *idp;
1367
1368                             printf("  Local domains:");
1369                             for (idp = ctl->server.localdomains; idp; idp = idp->next)
1370                                 printf(" %s", idp->id);
1371                             putchar('\n');
1372                         }
1373                     }
1374                 }
1375         }
1376 #ifdef  linux
1377         if (ctl->server.interface)
1378             printf("  Connection must be through interface %s.\n", ctl->server.interface);
1379         else if (outlevel == O_VERBOSE)
1380             printf("  No interface requirement specified.\n");
1381         if (ctl->server.monitor)
1382             printf("  Polling loop will monitor %s.\n", ctl->server.monitor);
1383         else if (outlevel == O_VERBOSE)
1384             printf("  No monitor interface specified.\n");
1385 #endif
1386
1387         if (ctl->server.protocol > P_POP2 && (ctl->server.protocol != P_ETRN))
1388             if (!ctl->oldsaved)
1389                 printf("  No UIDs saved from this host.\n");
1390             else
1391             {
1392                 struct idlist *idp;
1393                 int count = 0;
1394
1395                 for (idp = ctl->oldsaved; idp; idp = idp->next)
1396                     ++count;
1397
1398                 printf("  %d UIDs saved.\n", count);
1399                 if (outlevel == O_VERBOSE)
1400                     for (idp = ctl->oldsaved; idp; idp = idp->next)
1401                         fprintf(stderr, "\t%s\n", idp->id);
1402             }
1403     }
1404 }
1405
1406 /* fetchmail.c ends here */