]> Pileus Git - ~andy/fetchmail/blob - fetchmail.c
sendmail -i improvement.
[~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 #if defined(STDC_HEADERS)
10 #include <stdlib.h>
11 #endif
12 #if defined(HAVE_UNISTD_H)
13 #include <unistd.h>
14 #endif
15 #include <fcntl.h>
16 #include <string.h>
17 #include <signal.h>
18 #if defined(HAVE_SYSLOG)
19 #include <syslog.h>
20 #endif
21 #include <pwd.h>
22 #ifdef __FreeBSD__
23 #include <grp.h>
24 #endif
25 #include <errno.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <sys/time.h>   /* needed for Sun 4.1.2 */
29 #ifdef HAVE_SETRLIMIT
30 #include <sys/resource.h>
31 #endif /* HAVE_SETRLIMIT */
32 #include <sys/utsname.h>
33
34 #include "getopt.h"
35 #include "fetchmail.h"
36 #include "socket.h"
37 #include "tunable.h"
38 #include "smtp.h"
39 #include "netrc.h"
40 #include "i18n.h"
41
42 #ifndef ENETUNREACH
43 #define ENETUNREACH   128       /* Interactive doesn't know this */
44 #endif /* ENETUNREACH */
45
46 /* prototypes for internal functions */
47 static int load_params(int, char **, int);
48 static void dump_params (struct runctl *runp, struct query *, flag implicit);
49 static int query_host(struct query *);
50
51 /* controls the detail level of status/progress messages written to stderr */
52 int outlevel;               /* see the O_.* constants above */
53
54 /* miscellaneous global controls */
55 struct runctl run;          /* global controls for this run */
56 flag nodetach;              /* if TRUE, don't detach daemon process */
57 flag quitmode;              /* if --quit was set */
58 flag check_only;            /* if --probe was set */
59 flag versioninfo;           /* emit only version info */
60 char *user;                 /* the name of the invoking user */
61 char *home;                 /* invoking user's home directory */
62 char *fmhome;               /* fetchmail's home directory */
63 char *program_name;         /* the name to prefix error messages with */
64 flag configdump;            /* dump control blocks for configurator */
65 char *fetchmailhost;        /* either `localhost' or the host's FQDN */
66
67 #if NET_SECURITY
68 void *request = NULL;
69 int requestlen = 0;
70 #endif /* NET_SECURITY */
71
72 static int querystatus;         /* status of query */
73 static int successes;           /* count number of successful polls */
74 static int activecount;         /* count number of active entries */
75 static struct runctl cmd_run;   /* global options set from command line */
76 static time_t parsetime;        /* time of last parse */
77
78 static void terminate_run(int);
79 static void terminate_poll(int);
80
81 #if defined(__FreeBSD__) && defined(__FreeBSD_USE_KVM)
82 /* drop SGID kmem privileage until we need it */
83 static void dropprivs(void)
84 {
85     struct group *gr;
86     gid_t        egid;
87     gid_t        rgid;
88     
89     egid = getegid();
90     rgid = getgid();
91     gr = getgrgid(egid);
92     
93     if (gr && !strcmp(gr->gr_name, "kmem"))
94     {
95         extern void interface_set_gids(gid_t egid, gid_t rgid);
96         interface_set_gids(egid, rgid);
97         setegid(rgid);
98     }
99 }
100 #endif
101
102 #if defined(HAVE_SETLOCALE) && defined(ENABLE_NLS) && defined(HAVE_STRFTIME)
103 #include <time.h>
104 #include <locale.h>
105 static char *timestamp (void)
106 {
107     time_t      now;
108     static char buf[60];
109
110     time (&now);
111     setlocale (LC_TIME, "");
112     strftime (buf, sizeof (buf), "%c", localtime(&now));
113     setlocale (LC_TIME, "C");
114     return (buf);
115 }
116 #else
117 #define timestamp rfc822timestamp
118 #endif
119
120 int main(int argc, char **argv)
121 {
122     int bkgd = FALSE;
123     int parsestatus, implicitmode = FALSE;
124     struct query *ctl;
125     netrc_entry *netrc_list;
126     char *netrc_file, *tmpbuf;
127     pid_t pid;
128     int lastsig = 0;
129
130 #if defined(__FreeBSD__) && defined(__FreeBSD_USE_KVM)
131     dropprivs();
132 #endif
133
134     envquery(argc, argv);
135 #ifdef ENABLE_NLS
136     setlocale (LC_ALL, "");
137     bindtextdomain(PACKAGE, LOCALEDIR);
138     textdomain(PACKAGE);
139 #endif
140
141     /*
142      * Note: because we can't initialize reporting before we  know whether
143      * syslog is supposed to be on, this message will go to stdout and
144      * be lost when running in background.
145      */
146     if (outlevel >= O_VERBOSE)
147     {
148         int i;
149
150         report(stdout, GT_("fetchmail: invoked with"));
151         for (i = 0; i < argc; i++)
152             report(stdout, " %s", argv[i]);
153         report(stdout, "\n");
154     }
155
156 #define IDFILE_NAME     ".fetchids"
157     run.idfile = (char *) xmalloc(strlen(fmhome)+sizeof(IDFILE_NAME)+2);
158     strcpy(run.idfile, fmhome);
159     strcat(run.idfile, "/");
160     strcat(run.idfile, IDFILE_NAME);
161   
162     outlevel = O_NORMAL;
163
164     /*
165      * We used to arrange for the lock to be removed on exit close
166      * to where the lock was asserted.  Now we need to do it here, because
167      * we might have re-executed in background with an existing lock
168      * as the result of a changed rcfile (see the code near the execvp(3)
169      * call near the beginning of the polling loop for details).  We want
170      * to be sure the lock gets nuked on any error exit, basically.
171      */
172     lock_dispose();
173
174     if ((parsestatus = parsecmdline(argc,argv, &cmd_run, &cmd_opts)) < 0)
175         exit(PS_SYNTAX);
176
177     if (versioninfo)
178     {
179         printf(GT_("This is fetchmail release %s"), VERSION);
180 #ifdef POP2_ENABLE
181         printf("+POP2");
182 #endif /* POP2_ENABLE */
183 #ifndef POP3_ENABLE
184         printf("-POP3");
185 #endif /* POP3_ENABLE */
186 #ifndef IMAP_ENABLE
187         printf("-IMAP");
188 #endif /* IMAP_ENABLE */
189 #ifdef GSSAPI
190         printf("+IMAP-GSS");
191 #endif /* GSSAPI */
192 #ifdef RPA_ENABLE
193         printf("+RPA");
194 #endif /* RPA_ENABLE */
195 #ifdef NTLM_ENABLE
196         printf("+NTLM");
197 #endif /* NTLM_ENABLE */
198 #ifdef SDPS_ENABLE
199         printf("+SDPS");
200 #endif /* SDPS_ENABLE */
201 #ifndef ETRN_ENABLE
202         printf("-ETRN");
203 #endif /* ETRN_ENABLE */
204 #ifndef ODMR_ENABLE
205         printf("-ODMR");
206 #endif /* ODMR_ENABLE */
207 #ifdef SSL_ENABLE
208         printf("+SSL");
209 #endif
210 #if OPIE_ENABLE
211         printf("+OPIE");
212 #endif /* OPIE_ENABLE */
213 #if INET6_ENABLE
214         printf("+INET6");
215 #endif /* INET6_ENABLE */
216 #if NET_SECURITY
217         printf("+NETSEC");
218 #endif /* NET_SECURITY */
219 #ifdef HAVE_SOCKS
220         printf("+SOCKS");
221 #endif /* HAVE_SOCKS */
222 #if ENABLE_NLS
223         printf("+NLS");
224 #endif /* ENABLE_NLS */
225         putchar('\n');
226         fputs("Fallback MDA: ", stdout);
227 #ifdef FALLBACK_MDA
228         fputs(FALLBACK_MDA, stdout);
229 #else
230         fputs("(none)", stdout);
231 #endif
232         putchar('\n');
233         fflush(stdout);
234
235         /* this is an attempt to help remote debugging */
236         system("uname -a");
237     }
238
239     /* avoid parsing the config file if all we're doing is killing a daemon */ 
240     if (!(quitmode && argc == 2))
241         implicitmode = load_params(argc, argv, optind);
242
243 #if defined(HAVE_SYSLOG)
244     /* logging should be set up early in case we were restarted from exec */
245     if (run.use_syslog)
246     {
247 #if defined(LOG_MAIL)
248         openlog(program_name, LOG_PID, LOG_MAIL);
249 #else
250         /* Assume BSD4.2 openlog with two arguments */
251         openlog(program_name, LOG_PID);
252 #endif
253         report_init(-1);
254     }
255     else
256 #endif
257         report_init((run.poll_interval == 0 || nodetach) && !run.logfile);
258
259     /* construct the lockfile */
260     lock_setup();
261
262 #ifdef HAVE_SETRLIMIT
263     /*
264      * Before getting passwords, disable core dumps unless -v -d0 mode is on.
265      * Core dumps could otherwise contain passwords to be scavenged by a
266      * cracker.
267      */
268     if (outlevel < O_VERBOSE || run.poll_interval > 0)
269     {
270         struct rlimit corelimit;
271         corelimit.rlim_cur = 0;
272         corelimit.rlim_max = 0;
273         setrlimit(RLIMIT_CORE, &corelimit);
274     }
275 #endif /* HAVE_SETRLIMIT */
276
277 #define NETRC_FILE      ".netrc"
278     /* parse the ~/.netrc file (if present) for future password lookups. */
279     xalloca(netrc_file, char *, strlen(home) + sizeof(NETRC_FILE) + 2);
280     strcpy (netrc_file, home);
281     strcat (netrc_file, "/");
282     strcat (netrc_file, NETRC_FILE);
283     netrc_list = parse_netrc(netrc_file);
284 #undef NETRC_FILE
285
286     /* pick up passwords where we can */ 
287     for (ctl = querylist; ctl; ctl = ctl->next)
288     {
289         if (ctl->active && !(implicitmode && ctl->server.skip)&&!ctl->password)
290         {
291             if (NO_PASSWORD(ctl))
292                 /* Server won't care what the password is, but there
293                    must be some non-null string here.  */
294                 ctl->password = ctl->remotename;
295             else
296             {
297                 netrc_entry *p;
298
299                 /* look up the pollname and account in the .netrc file. */
300                 p = search_netrc(netrc_list,
301                                  ctl->server.pollname, ctl->remotename);
302                 /* if we find a matching entry with a password, use it */
303                 if (p && p->password)
304                     ctl->password = xstrdup(p->password);
305
306                 /* otherwise try with "via" name if there is one */
307                 else if (ctl->server.via)
308                 {
309                     p = search_netrc(netrc_list, 
310                                      ctl->server.via, ctl->remotename);
311                     if (p && p->password)
312                         ctl->password = xstrdup(p->password);
313                 }
314             }
315         }
316     }
317
318     /* perhaps we just want to check options? */
319     if (versioninfo)
320     {
321         int havercfile = access(rcfile, 0);
322
323         printf(GT_("Taking options from command line%s%s\n"),
324                                 havercfile ? "" :  GT_(" and "),
325                                 havercfile ? "" : rcfile);
326
327         if (querylist == NULL)
328             fprintf(stderr,
329                     GT_("No mailservers set up -- perhaps %s is missing?\n"),
330                     rcfile);
331         else
332             dump_params(&run, querylist, implicitmode);
333         exit(0);
334     }
335
336     /* dump options as a Python dictionary, for configurator use */
337     if (configdump)
338     {
339         dump_config(&run, querylist);
340         exit(0);
341     }
342
343     /* check for another fetchmail running concurrently */
344     pid = lock_state();
345     bkgd = (pid < 0);
346     pid = bkgd ? -pid : pid;
347
348     /* if no mail servers listed and nothing in background, we're done */
349     if (!(quitmode && argc == 2) && pid == 0 && querylist == NULL) {
350         (void)fputs(GT_("fetchmail: no mailservers have been specified.\n"),stderr);
351         exit(PS_SYNTAX);
352     }
353
354     /* perhaps user asked us to kill the other fetchmail */
355     if (quitmode)
356     {
357         if (pid == 0) 
358         {
359             fprintf(stderr,GT_("fetchmail: no other fetchmail is running\n"));
360             if (argc == 2)
361                 exit(PS_EXCLUDE);
362         }
363         else if (kill(pid, SIGTERM) < 0)
364         {
365             fprintf(stderr,GT_("fetchmail: error killing %s fetchmail at %d; bailing out.\n"),
366                     bkgd ? GT_("background") : GT_("foreground"), pid);
367             exit(PS_EXCLUDE);
368         }
369         else
370         {
371             fprintf(stderr,GT_("fetchmail: %s fetchmail at %d killed.\n"),
372                     bkgd ? GT_("background") : GT_("foreground"), pid);
373             lock_release();
374             if (argc == 2)
375                 exit(0);
376             else
377                 pid = 0; 
378         }
379     }
380
381     /* another fetchmail is running -- wake it up or die */
382     if (pid != 0)
383     {
384         if (check_only)
385         {
386             fprintf(stderr,
387                  GT_("fetchmail: can't check mail while another fetchmail to same host is running.\n"));
388             return(PS_EXCLUDE);
389         }
390         else if (!implicitmode)
391         {
392             fprintf(stderr,
393                  GT_("fetchmail: can't poll specified hosts with another fetchmail running at %d.\n"),
394                  pid);
395                 return(PS_EXCLUDE);
396         }
397         else if (!bkgd)
398         {
399             fprintf(stderr,
400                  GT_("fetchmail: another foreground fetchmail is running at %d.\n"),
401                  pid);
402                 return(PS_EXCLUDE);
403         }
404         else if (argc > 1)
405         {
406             /* this test enables re-execing on a changed rcfile */
407             if (getpid() == pid)
408                 lock_assert();
409             else
410             {
411                 fprintf(stderr,
412                         GT_("fetchmail: can't accept options while a background fetchmail is running.\n"));
413                 return(PS_EXCLUDE);
414             }
415         }
416         else if (kill(pid, SIGUSR1) == 0)
417         {
418             fprintf(stderr,
419                     GT_("fetchmail: background fetchmail at %d awakened.\n"),
420                     pid);
421             return(0);
422         }
423         else
424         {
425             /*
426              * Should never happen -- possible only if a background fetchmail
427              * croaks after the first kill probe above but before the
428              * SIGUSR1/SIGHUP transmission.
429              */
430             fprintf(stderr,
431                     GT_("fetchmail: elder sibling at %d died mysteriously.\n"),
432                     pid);
433             return(PS_UNDEFINED);
434         }
435     }
436
437     /* pick up interactively any passwords we need but don't have */ 
438     for (ctl = querylist; ctl; ctl = ctl->next)
439     {
440         if (ctl->active && !(implicitmode && ctl->server.skip)
441                 && !NO_PASSWORD(ctl) && !ctl->password)
442         {
443             if (!isatty(0))
444             {
445                 fprintf(stderr,
446                         GT_("fetchmail: can't find a password for %s@%s.\n"),
447                         ctl->remotename, ctl->server.pollname);
448                 return(PS_AUTHFAIL);
449             }
450             else
451             {
452                 char* password_prompt = GT_("Enter password for %s@%s: ");
453
454                 xalloca(tmpbuf, char *, strlen(password_prompt) +
455                         strlen(ctl->remotename) +
456                         strlen(ctl->server.pollname) + 1);
457                 (void) sprintf(tmpbuf, password_prompt,
458                                ctl->remotename, ctl->server.pollname);
459                 ctl->password = xstrdup((char *)fm_getpassword(tmpbuf));
460             }
461         }
462     }
463
464     /*
465      * Time to initiate the SOCKS library (this is not mandatory: it just
466      * registers the correct application name for logging purpose. If you
467      * have some problem, comment out these lines).
468      */
469 #ifdef HAVE_SOCKS
470     SOCKSinit("fetchmail");
471 #endif /* HAVE_SOCKS */
472
473     /* avoid zombies from plugins */
474     deal_with_sigchld();
475
476     /*
477      * Maybe time to go to demon mode...
478      */
479     if (run.poll_interval)
480     {
481         if (!nodetach)
482             daemonize(run.logfile, terminate_run);
483         report(stdout, GT_("starting fetchmail %s daemon \n"), VERSION);
484
485         /*
486          * We'll set up a handler for these when we're sleeping,
487          * but ignore them otherwise so as not to interrupt a poll.
488          */
489         signal(SIGUSR1, SIG_IGN);
490         if (run.poll_interval && !getuid())
491             signal(SIGHUP, SIG_IGN);
492     }
493     else
494     {
495         if (run.logfile && access(run.logfile, F_OK) == 0)
496         {
497             if (!freopen(run.logfile, "a", stdout))
498                     report(stderr, GT_("could not open %s to append logs to \n"), run.logfile);
499             if (!freopen(run.logfile, "a", stderr))
500                     report(stdout, GT_("could not open %s to append logs to \n"), run.logfile);
501         }
502     }
503
504 #ifdef linux
505     interface_init();
506 #endif /* linux */
507
508     /* beyond here we don't want more than one fetchmail running per user */
509     umask(0077);
510     signal(SIGABRT, terminate_run);
511     signal(SIGINT, terminate_run);
512     signal(SIGTERM, terminate_run);
513     signal(SIGALRM, terminate_run);
514     signal(SIGPIPE, terminate_run);
515     signal(SIGQUIT, terminate_run);
516
517     /* here's the exclusion lock */
518     lock_or_die();
519
520     /*
521      * Query all hosts. If there's only one, the error return will
522      * reflect the status of that transaction.
523      */
524     do {
525         /* 
526          * Check to see if the rcfile has been touched.  If so,
527          * re-exec so the file will be reread.  Doing it this way
528          * avoids all the complications of trying to deallocate the
529          * in-core control structures -- and the potential memory
530          * leaks...
531          */
532         struct stat     rcstat;
533
534         if (stat(rcfile, &rcstat) == -1)
535         {
536             if (errno != ENOENT)
537                 report(stderr, 
538                        GT_("couldn't time-check %s (error %d)\n"),
539                        rcfile, errno);
540         }
541         else if (rcstat.st_mtime > parsetime)
542         {
543             report(stdout, GT_("restarting fetchmail (%s changed)\n"), rcfile);
544             /*
545              * Matthias Andree: Isn't this prone to introduction of
546              * "false" programs by interfering with PATH? Those
547              * path-searching execs might not be the best ideas for
548              * this reason.
549              *
550              * Rob Funk: But is there any way for someone to modify
551              * the PATH variable of a running fetchmail?  I don't know
552              * of a way.
553              *
554              * Dave's change makes fetchmail restart itself in exactly
555              * the way it was started from the shell (or shell script)
556              * in the first place.  If you're concerned about PATH
557              * contamination, call fetchmail initially with a full
558              * path, and use Dave's patch.
559              *
560              * Not using a -p variant of exec means that the restart
561              * will break if both (a) the user depended on PATH to
562              * call fetchmail in the first place, and (b) the system
563              * doesn't save the whole path in argv[0] if the whole
564              * path wasn't used in the initial call.  (If I recall
565              * correctly, Linux saves it but many other Unices don't.)
566              */
567             execvp(argv[0], argv);
568             report(stderr, GT_("attempt to re-exec fetchmail failed\n"));
569         }
570
571 #if defined(HAVE_RES_SEARCH) && defined(USE_TCPIP_FOR_DNS)
572         /*
573          * This was an efficiency hack that backfired.  The theory
574          * was that using TCP/IP for DNS queries would get us better
575          * reliability and shave off some per-UDP-packet costs.
576          * Unfortunately it interacted badly with diald, which effectively 
577          * filters out DNS queries over TCP/IP for reasons having to do
578          * with some obscure Linux kernel problem involving bootstrapping of
579          * dynamically-addressed links.  I don't understand this mess
580          * and don't want to, so it's "See ya!" to this hack.
581          */
582         sethostent(TRUE);       /* use TCP/IP for mailserver queries */
583 #endif /* HAVE_RES_SEARCH */
584
585         activecount = 0;
586         batchcount = 0;
587         for (ctl = querylist; ctl; ctl = ctl->next)
588             if (ctl->active)
589             {
590                 activecount++;
591                 if (!(implicitmode && ctl->server.skip))
592                 {
593                     if (ctl->wedged)
594                     {
595                         report(stderr, 
596                                GT_("poll of %s skipped (failed authentication or too many timeouts)\n"),
597                                ctl->server.pollname);
598                         continue;
599                     }
600
601                     /* check skip interval first so that it counts all polls */
602                     if (run.poll_interval && ctl->server.interval) 
603                     {
604                         if (ctl->server.poll_count++ % ctl->server.interval) 
605                         {
606                             if (outlevel >= O_VERBOSE)
607                                 report(stdout,
608                                        GT_("interval not reached, not querying %s\n"),
609                                        ctl->server.pollname);
610                             continue;
611                         }
612                     }
613
614 #if (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__)
615                     /*
616                      * Don't do monitoring if we were woken by a signal.
617                      * Note that interface_approve() does its own error logging.
618                      */
619                     if (!interface_approve(&ctl->server, !lastsig))
620                         continue;
621 #endif /* (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__) */
622
623                     querystatus = query_host(ctl);
624
625 #ifdef POP3_ENABLE
626                     /* leave the UIDL state alone if there have been any errors */
627                     if (!check_only &&
628                                 ((querystatus==PS_SUCCESS) || (querystatus==PS_NOMAIL) || (querystatus==PS_MAXFETCH)))
629                         uid_swap_lists(ctl);
630 #endif  /* POP3_ENABLE */
631
632                     if (querystatus == PS_SUCCESS)
633                         successes++;
634                     else if (!check_only && 
635                              ((querystatus!=PS_NOMAIL) || (outlevel==O_DEBUG)))
636                         switch(querystatus)
637                         {
638                         case PS_SUCCESS:
639                             report(stdout,GT_("Query status=0 (SUCCESS)\n"));break;
640                         case PS_NOMAIL: 
641                             report(stdout,GT_("Query status=1 (NOMAIL)\n")); break;
642                         case PS_SOCKET:
643                             report(stdout,GT_("Query status=2 (SOCKET)\n")); break;
644                         case PS_AUTHFAIL:
645                             report(stdout,GT_("Query status=3 (AUTHFAIL)\n"));break;
646                         case PS_PROTOCOL:
647                             report(stdout,GT_("Query status=4 (PROTOCOL)\n"));break;
648                         case PS_SYNTAX:
649                             report(stdout,GT_("Query status=5 (SYNTAX)\n")); break;
650                         case PS_IOERR:
651                             report(stdout,GT_("Query status=6 (IOERR)\n"));  break;
652                         case PS_ERROR:
653                             report(stdout,GT_("Query status=7 (ERROR)\n"));  break;
654                         case PS_EXCLUDE:
655                             report(stdout,GT_("Query status=8 (EXCLUDE)\n")); break;
656                         case PS_LOCKBUSY:
657                             report(stdout,GT_("Query status=9 (LOCKBUSY)\n"));break;
658                         case PS_SMTP:
659                             report(stdout,GT_("Query status=10 (SMTP)\n")); break;
660                         case PS_DNS:
661                             report(stdout,GT_("Query status=11 (DNS)\n")); break;
662                         case PS_BSMTP:
663                             report(stdout,GT_("Query status=12 (BSMTP)\n")); break;
664                         case PS_MAXFETCH:
665                             report(stdout,GT_("Query status=13 (MAXFETCH)\n"));break;
666                         default:
667                             report(stdout,GT_("Query status=%d\n"),querystatus);
668                             break;
669                         }
670
671 #if (defined(linux) && !INET6_ENABLE) || defined (__FreeBSD__)
672                     if (ctl->server.monitor)
673                     {
674                         /*
675                          * Allow some time for the link to quiesce.  One
676                          * second is usually sufficient, three is safe.
677                          * Note:  this delay is important - don't remove!
678                          */
679                         sleep(3);
680                         interface_note_activity(&ctl->server);
681                     }
682 #endif /* (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__) */
683                 }
684             }
685
686 #if defined(HAVE_RES_SEARCH) && defined(USE_TCPIP_FOR_DNS)
687         endhostent();           /* release TCP/IP connection to nameserver */
688 #endif /* HAVE_RES_SEARCH */
689
690         /* close connections cleanly */
691         terminate_poll(0);
692
693         /*
694          * OK, we've polled.  Now sleep.
695          */
696         if (run.poll_interval)
697         {
698             /* 
699              * Because passwords can expire, it may happen that *all*
700              * hosts are now out of the loop due to authfail
701              * conditions.  If this happens daemon-mode fetchmail
702              * should softly and silently vanish away, rather than
703              * spinning uselessly.
704              */
705             int unwedged = 0;
706
707             for (ctl = querylist; ctl; ctl = ctl->next)
708                 if (ctl->active && !(implicitmode && ctl->server.skip))
709                     if (!ctl->wedged)
710                         unwedged++;
711             if (!unwedged)
712             {
713                 report(stderr, GT_("All connections are wedged.  Exiting.\n"));
714                 /* FIXME: someday, send notification mail */
715                 exit(PS_AUTHFAIL);
716             }
717
718             if (outlevel > O_SILENT)
719                 report(stdout, 
720                        GT_("sleeping at %s\n"), timestamp());
721
722             /*
723              * OK, now pause until it's time for the next poll cycle.
724              * A nonzero return indicates we received a wakeup signal;
725              * unwedge all servers in case the problem has been
726              * manually repaired.
727              */
728             if ((lastsig = interruptible_idle(run.poll_interval)))
729             {
730                 if (outlevel > O_SILENT)
731 #ifdef SYS_SIGLIST_DECLARED
732                     report(stdout, 
733                        GT_("awakened by %s\n"), sys_siglist[lastsig]);
734 #else
735                     report(stdout, 
736                        GT_("awakened by signal %d\n"), lastsig);
737 #endif
738                 for (ctl = querylist; ctl; ctl = ctl->next)
739                     ctl->wedged = FALSE;
740             }
741
742             if (outlevel >= O_VERBOSE)
743                 report(stdout, GT_("awakened at %s\n"), timestamp());
744         }
745     } while
746         (run.poll_interval);
747
748     if (outlevel >= O_VERBOSE)
749         report(stdout, GT_("normal termination, status %d\n"),
750                 successes ? PS_SUCCESS : querystatus);
751
752     terminate_run(0);
753
754     if (successes)
755         exit(PS_SUCCESS);
756     else if (querystatus)
757         exit(querystatus);
758     else
759         /* in case we interrupted before a successful fetch */
760         exit(PS_NOMAIL);
761 }
762
763 static void list_merge(struct idlist **dstl, struct idlist **srcl, int force)
764 {
765     /*
766      * If force is off, modify dstl fields only when they're empty (treat srcl
767      * as defaults).  If force is on, modify each dstl field whenever scrcl
768      * is nonempty (treat srcl as an override).  
769      */
770     if (force ? !!*srcl : !*dstl)
771     {
772         struct idlist *cpl = copy_str_list(*srcl);
773
774         append_str_list(dstl, &cpl);
775     }
776 }
777
778 static void optmerge(struct query *h2, struct query *h1, int force)
779 /* merge two options records */
780 {
781     list_merge(&h2->server.localdomains, &h1->server.localdomains, force);
782     list_merge(&h2->localnames, &h1->localnames, force);
783     list_merge(&h2->mailboxes, &h1->mailboxes, force);
784     list_merge(&h2->smtphunt, &h1->smtphunt, force);
785     list_merge(&h2->domainlist, &h1->domainlist, force);
786     list_merge(&h2->antispam, &h1->antispam, force);
787
788 #define FLAG_MERGE(fld) if (force ? !!h1->fld : !h2->fld) h2->fld = h1->fld
789     FLAG_MERGE(server.via);
790     FLAG_MERGE(server.protocol);
791 #if INET6_ENABLE
792     FLAG_MERGE(server.service);
793     FLAG_MERGE(server.netsec);
794 #else /* INET6_ENABLE */
795     FLAG_MERGE(server.port);
796 #endif /* INET6_ENABLE */
797     FLAG_MERGE(server.interval);
798     FLAG_MERGE(server.authenticate);
799     FLAG_MERGE(server.timeout);
800     FLAG_MERGE(server.envelope);
801     FLAG_MERGE(server.envskip);
802     FLAG_MERGE(server.qvirtual);
803     FLAG_MERGE(server.skip);
804     FLAG_MERGE(server.dns);
805     FLAG_MERGE(server.checkalias);
806     FLAG_MERGE(server.uidl);
807     FLAG_MERGE(server.principal);
808
809 #if defined(linux) || defined(__FreeBSD__)
810     FLAG_MERGE(server.interface);
811     FLAG_MERGE(server.monitor);
812     FLAG_MERGE(server.interface_pair);
813 #endif /* linux || defined(__FreeBSD__) */
814
815     FLAG_MERGE(server.plugin);
816     FLAG_MERGE(server.plugout);
817
818     FLAG_MERGE(wildcard);
819     FLAG_MERGE(remotename);
820     FLAG_MERGE(password);
821     FLAG_MERGE(mda);
822     FLAG_MERGE(bsmtp);
823     FLAG_MERGE(listener);
824     FLAG_MERGE(smtpaddress);
825     FLAG_MERGE(smtpname);
826     FLAG_MERGE(preconnect);
827     FLAG_MERGE(postconnect);
828
829     FLAG_MERGE(keep);
830     FLAG_MERGE(flush);
831     FLAG_MERGE(fetchall);
832     FLAG_MERGE(rewrite);
833     FLAG_MERGE(forcecr);
834     FLAG_MERGE(stripcr);
835     FLAG_MERGE(pass8bits);
836     FLAG_MERGE(dropstatus);
837     FLAG_MERGE(dropdelivered);
838     FLAG_MERGE(mimedecode);
839     FLAG_MERGE(idle);
840     FLAG_MERGE(limit);
841     FLAG_MERGE(warnings);
842     FLAG_MERGE(fetchlimit);
843     FLAG_MERGE(batchlimit);
844 #ifdef  SSL_ENABLE
845     FLAG_MERGE(use_ssl);
846     FLAG_MERGE(sslkey);
847     FLAG_MERGE(sslcert);
848     FLAG_MERGE(sslproto);
849     FLAG_MERGE(sslcertck);
850     FLAG_MERGE(sslcertpath);
851     FLAG_MERGE(sslfingerprint);
852 #endif
853     FLAG_MERGE(expunge);
854
855     FLAG_MERGE(tracepolls);
856     FLAG_MERGE(properties);
857 #undef FLAG_MERGE
858 }
859
860 static int load_params(int argc, char **argv, int optind)
861 {
862     int implicitmode, st;
863     struct passwd *pw;
864     struct query def_opts, *ctl;
865     struct stat rcstat;
866
867     run.bouncemail = TRUE;
868     run.spambounce = FALSE;     /* don't bounce back to innocent bystanders */
869
870     memset(&def_opts, '\0', sizeof(struct query));
871     def_opts.smtp_socket = -1;
872     def_opts.smtpaddress = (char *)0;
873     def_opts.smtpname = (char *)0;
874 #define ANTISPAM(n)     save_str(&def_opts.antispam, STRING_DUMMY, 0)->val.status.num = (n)
875     ANTISPAM(571);      /* sendmail */
876     ANTISPAM(550);      /* old exim */
877     ANTISPAM(501);      /* new exim */
878     ANTISPAM(554);      /* Postfix */
879 #undef ANTISPAM
880
881     def_opts.server.protocol = P_AUTO;
882     def_opts.server.timeout = CLIENT_TIMEOUT;
883     def_opts.server.esmtp_name = user;
884     def_opts.warnings = WARNING_INTERVAL;
885     def_opts.remotename = user;
886     def_opts.listener = SMTP_MODE;
887
888     /* note the parse time, so we can pick up on modifications */
889     parsetime = 0;      /* foil compiler warnings */
890     if (stat(rcfile, &rcstat) != -1)
891         parsetime = rcstat.st_mtime;
892     else if (errno != ENOENT)
893         report(stderr, GT_("couldn't time-check the run-control file\n"));
894
895     /* this builds the host list */
896     if ((st = prc_parse_file(rcfile, !versioninfo)) != 0)
897         /*
898          * FIXME: someday, send notification mail here if backgrounded.
899          * Right now, that can happen if the user changes the rcfile
900          * while the fetchmail is running in background.  Do similarly
901          * for the other exit() calls in this function.
902          */
903         exit(st);
904
905     if ((implicitmode = (optind >= argc)))
906     {
907         for (ctl = querylist; ctl; ctl = ctl->next)
908             ctl->active = !ctl->server.skip;
909     }
910     else
911         for (; optind < argc; optind++) 
912         {
913             flag        predeclared =  FALSE;
914
915             /*
916              * If hostname corresponds to a host known from the rc file,
917              * simply declare it active.  Otherwise synthesize a host
918              * record from command line and defaults
919              */
920             for (ctl = querylist; ctl; ctl = ctl->next)
921                 if (!strcmp(ctl->server.pollname, argv[optind])
922                         || str_in_list(&ctl->server.akalist, argv[optind], TRUE))
923                 {
924                     /* Is this correct? */
925                     if (predeclared && outlevel == O_VERBOSE)
926                         fprintf(stderr,GT_("Warning: multiple mentions of host %s in config file\n"),argv[optind]);
927                     ctl->active = TRUE;
928                     predeclared = TRUE;
929                 }
930
931             if (!predeclared)
932             {
933                 /*
934                  * Allocate and link record without copying in
935                  * command-line args; we'll do that with the optmerge
936                  * call later on.
937                  */
938                 ctl = hostalloc((struct query *)NULL);
939                 ctl->server.via =
940                     ctl->server.pollname = xstrdup(argv[optind]);
941                 ctl->active = TRUE;
942                 ctl->server.lead_server = (struct hostdata *)NULL;
943             }
944         }
945
946     /*
947      * If there's a defaults record, merge it and lose it.
948      */ 
949     if (querylist && strcmp(querylist->server.pollname, "defaults") == 0)
950     {
951         for (ctl = querylist->next; ctl; ctl = ctl->next)
952             optmerge(ctl, querylist, FALSE);
953         querylist = querylist->next;
954     }
955
956     /* don't allow a defaults record after the first */
957     for (ctl = querylist; ctl; ctl = ctl->next)
958         if (ctl != querylist && strcmp(ctl->server.pollname, "defaults") == 0)
959             exit(PS_SYNTAX);
960
961     /* use localhost if we never fetch the FQDN of this host */
962     fetchmailhost = "localhost";
963
964     /* here's where we override globals */
965     if (cmd_run.logfile)
966         run.logfile = cmd_run.logfile;
967     if (cmd_run.idfile)
968         run.idfile = cmd_run.idfile;
969     /* do this before the keep/fetchall test below, otherwise -d0 may fail */
970     if (cmd_run.poll_interval >= 0)
971         run.poll_interval = cmd_run.poll_interval;
972     if (cmd_run.invisible)
973         run.invisible = cmd_run.invisible;
974     if (cmd_run.showdots)
975         run.showdots = cmd_run.showdots;
976     if (cmd_run.use_syslog)
977         run.use_syslog = (cmd_run.use_syslog == FLAG_TRUE);
978     if (cmd_run.postmaster)
979         run.postmaster = cmd_run.postmaster;
980     if (cmd_run.bouncemail)
981         run.bouncemail = cmd_run.bouncemail;
982
983     /* check and daemon options are not compatible */
984     if (check_only && run.poll_interval)
985         run.poll_interval = 0;
986
987     /*
988      * DNS support is required for some protocols.  We used to
989      * do this unconditionally, but it made fetchmail excessively
990      * vulnerable to misconfigured DNS setups.
991      *
992      * If we're using ETRN or ODMR, the smtp hunt list is the
993      * list of systems we're polling on behalf of; these have
994      * to be fully-qualified domain names.  The default for
995      * this list should be the FQDN of localhost.
996      *
997      * If we're using Kerberos for authentication, we need 
998      * the FQDN in order to generate capability keys.
999      */
1000     if (strcmp(fetchmailhost, "localhost") == 0)
1001         for (ctl = querylist; ctl; ctl = ctl->next)
1002             if (ctl->active && 
1003                 (ctl->server.protocol==P_ETRN || ctl->server.protocol==P_ODMR
1004                  || ctl->server.authenticate == A_KERBEROS_V4
1005                  || ctl->server.authenticate == A_KERBEROS_V5))
1006             {
1007                 fetchmailhost = host_fqdn();
1008                 break;
1009             }
1010
1011     /* merge in wired defaults, do sanity checks and prepare internal fields */
1012     for (ctl = querylist; ctl; ctl = ctl->next)
1013     {
1014         ctl->wedged = FALSE;
1015
1016         /* merge in defaults */
1017         optmerge(ctl, &def_opts, FALSE);
1018
1019         /* force command-line options */
1020         optmerge(ctl, &cmd_opts, TRUE);
1021
1022         /*
1023          * queryname has to be set up for inactive servers too.  
1024          * Otherwise the UIDL code core-dumps on startup.
1025          */
1026         if (ctl->server.via) 
1027             ctl->server.queryname = xstrdup(ctl->server.via);
1028         else
1029             ctl->server.queryname = xstrdup(ctl->server.pollname);
1030
1031         /*
1032          * We no longer do DNS lookups at startup.
1033          * This is a kluge.  It enables users to edit their
1034          * configurations when DNS isn't available.
1035          */
1036         ctl->server.truename = xstrdup(ctl->server.queryname);
1037
1038         if (configdump || ctl->active )
1039         {
1040             /* this code enables flags to be turned off */
1041 #define DEFAULT(flag, dflt)     if (flag == FLAG_TRUE)\
1042                                         flag = TRUE;\
1043                                 else if (flag == FLAG_FALSE)\
1044                                         flag = FALSE;\
1045                                 else\
1046                                         flag = (dflt)
1047             DEFAULT(ctl->keep, FALSE);
1048             DEFAULT(ctl->fetchall, FALSE);
1049             DEFAULT(ctl->flush, FALSE);
1050             DEFAULT(ctl->rewrite, TRUE);
1051             DEFAULT(ctl->stripcr, (ctl->mda != (char *)NULL)); 
1052             DEFAULT(ctl->forcecr, FALSE);
1053             DEFAULT(ctl->pass8bits, FALSE);
1054             DEFAULT(ctl->dropstatus, FALSE);
1055             DEFAULT(ctl->dropdelivered, FALSE);
1056             DEFAULT(ctl->mimedecode, FALSE);
1057             DEFAULT(ctl->idle, FALSE);
1058             DEFAULT(ctl->server.dns, TRUE);
1059             DEFAULT(ctl->server.uidl, FALSE);
1060 #ifdef  SSL_ENABLE
1061             DEFAULT(ctl->use_ssl, FALSE);
1062             DEFAULT(ctl->sslcertck, FALSE);
1063 #endif
1064             DEFAULT(ctl->server.checkalias, FALSE);
1065 #ifndef SSL_ENABLE
1066             if (ctl->use_ssl) 
1067             {
1068                 report(stderr, GT_("SSL support is not compiled in.\n"));
1069                 exit(PS_SYNTAX);
1070             }
1071 #endif /* SSL_ENABLE */
1072 #undef DEFAULT
1073
1074             /*
1075              * Make sure we have a nonempty host list to forward to.
1076              */
1077             if (!ctl->smtphunt)
1078                 save_str(&ctl->smtphunt, fetchmailhost, FALSE);
1079
1080             /*
1081              * Make sure we have a nonempty list of domains to fetch from.
1082              */
1083             if ((ctl->server.protocol==P_ETRN || ctl->server.protocol==P_ODMR) && !ctl->domainlist)
1084                 save_str(&ctl->domainlist, fetchmailhost, FALSE);
1085
1086             /* if `user' doesn't name a real local user, try to run as root */
1087             if ((pw = getpwnam(user)) == (struct passwd *)NULL)
1088                 ctl->uid = 0;
1089             else
1090                 ctl->uid = pw->pw_uid;  /* for local delivery via MDA */
1091             if (!ctl->localnames)       /* for local delivery via SMTP */
1092                 save_str_pair(&ctl->localnames, user, NULL);
1093
1094 #if !defined(HAVE_GETHOSTBYNAME) || !defined(HAVE_RES_SEARCH)
1095             /* can't handle multidrop mailboxes unless we can do DNS lookups */
1096             if (ctl->localnames && ctl->localnames->next && ctl->server.dns)
1097             {
1098                 ctl->server.dns = FALSE;
1099                 report(stderr, GT_("fetchmail: warning: no DNS available to check multidrop fetches from %s\n"), ctl->server.pollname);
1100             }
1101 #endif /* !HAVE_GETHOSTBYNAME || !HAVE_RES_SEARCH */
1102
1103             /* if no folders were specified, set up the null one as default */
1104             if (!ctl->mailboxes)
1105                 save_str(&ctl->mailboxes, (char *)NULL, 0);
1106
1107             /* maybe user overrode timeout on command line? */
1108             if (ctl->server.timeout == -1)      
1109                 ctl->server.timeout = CLIENT_TIMEOUT;
1110
1111 #if !INET6_ENABLE
1112             /* sanity checks */
1113             if (ctl->server.port < 0)
1114             {
1115                 (void) fprintf(stderr,
1116                                GT_("%s configuration invalid, port number cannot be negative\n"),
1117                                ctl->server.pollname);
1118                 exit(PS_SYNTAX);
1119             }
1120             if (ctl->server.protocol == P_RPOP && ctl->server.port >= 1024)
1121             {
1122                 (void) fprintf(stderr,
1123                                GT_("%s configuration invalid, RPOP requires a privileged port\n"),
1124                                ctl->server.pollname);
1125                 exit(PS_SYNTAX);
1126             }
1127             if (ctl->listener == LMTP_MODE)
1128             {
1129                 struct idlist   *idp;
1130
1131                 for (idp = ctl->smtphunt; idp; idp = idp->next)
1132                 {
1133                     char        *cp;
1134
1135                     if (!(cp = strrchr(idp->id, '/')) ||
1136                                 (atoi(++cp) == SMTP_PORT))
1137                     {
1138                         (void) fprintf(stderr,
1139                                        GT_("%s configuration invalid, LMTP can't use default SMTP port\n"),
1140                                        ctl->server.pollname);
1141                         exit(PS_SYNTAX);
1142                     }
1143                 }
1144             }
1145 #endif /* !INET6_ENABLE */
1146
1147             /*
1148              * "I beg to you, have mercy on the week minds like myself."
1149              * wrote Pehr Anderson.  Your petition is granted.
1150              */
1151             if (ctl->fetchall && ctl->keep && run.poll_interval && !nodetach)
1152             {
1153                 (void) fprintf(stderr,
1154                                GT_("Both fetchall and keep on in daemon mode is a mistake!\n"));
1155                 exit(PS_SYNTAX);
1156             }
1157         }
1158     }
1159
1160 #ifdef POP3_ENABLE
1161     /* initialize UID handling */
1162     if (!versioninfo && (st = prc_filecheck(run.idfile, !versioninfo)) != 0)
1163         exit(st);
1164     else
1165         initialize_saved_lists(querylist, run.idfile);
1166 #endif /* POP3_ENABLE */
1167
1168     /*
1169      * If the user didn't set a last-resort user to get misaddressed
1170      * multidrop mail, set an appropriate default here.
1171      */
1172     if (!run.postmaster)
1173     {
1174         if (getuid())                           /* ordinary user */
1175             run.postmaster = user;
1176         else                                    /* root */
1177             run.postmaster = "postmaster";
1178     }
1179
1180     return(implicitmode);
1181 }
1182
1183 static void terminate_poll(int sig)
1184 /* to be executed at the end of a poll cycle */
1185 {
1186     /*
1187      * Close all SMTP delivery sockets.  For optimum performance
1188      * we'd like to hold them open til end of run, but (1) this
1189      * loses if our poll interval is longer than the MTA's inactivity
1190      * timeout, and (2) some MTAs (like smail) don't deliver after
1191      * each message, but rather queue up mail and wait to actually
1192      * deliver it until the input socket is closed. 
1193      *
1194      * Sending SMTP QUIT on signal is theoretically nice, but led to a 
1195      * subtle bug.  If fetchmail was terminated by signal while it was 
1196      * shipping message text, it would hang forever waiting for a
1197      * command acknowledge.  In theory we could enable the QUIT
1198      * only outside of the message send.  In practice, we don't
1199      * care.  All mailservers hang up on a dropped TCP/IP connection
1200      * anyway.
1201      */
1202
1203     if (sig != 0)
1204         report(stdout, GT_("terminated with signal %d\n"), sig);
1205     else
1206     {
1207         struct query *ctl;
1208
1209         /* terminate all SMTP connections cleanly */
1210         for (ctl = querylist; ctl; ctl = ctl->next)
1211             if (ctl->smtp_socket != -1)
1212             {
1213                 /* don't send QUIT for ODMR case because we're acting
1214                    as a proxy between the SMTP server and client. */
1215                 smtp_close(ctl, ctl->server.protocol != P_ODMR);
1216             }
1217     }
1218
1219 #ifdef POP3_ENABLE
1220     /*
1221      * Update UID information at end of each poll, rather than at end
1222      * of run, because that way we don't lose all UIDL information since
1223      * the beginning of time if fetchmail crashes.
1224      */
1225     if (!check_only)
1226         write_saved_lists(querylist, run.idfile);
1227 #endif /* POP3_ENABLE */
1228 }
1229
1230 static void terminate_run(int sig)
1231 /* to be executed on normal or signal-induced termination */
1232 {
1233     struct query        *ctl;
1234
1235     terminate_poll(sig);
1236
1237     /* 
1238      * Craig Metz, the RFC1938 one-time-password guy, points out:
1239      * "Remember that most kernels don't zero pages before handing them to the
1240      * next process and many kernels share pages between user and kernel space.
1241      * You'd be very surprised what you can find from a short program to do a
1242      * malloc() and then dump the contents of the pages you got. By zeroing
1243      * the secrets at end of run (earlier if you can), you make sure the next
1244      * guy can't get the password/pass phrase."
1245      *
1246      * Right you are, Craig!
1247      */
1248     for (ctl = querylist; ctl; ctl = ctl->next)
1249         if (ctl->password)
1250           memset(ctl->password, '\0', strlen(ctl->password));
1251
1252 #if !defined(HAVE_ATEXIT) && !defined(HAVE_ON_EXIT)
1253     lock_release();
1254 #endif
1255
1256     if (activecount == 0)
1257         exit(PS_NOMAIL);
1258     else
1259         exit(successes ? PS_SUCCESS : querystatus);
1260 }
1261
1262 /*
1263  * Sequence of protocols to try when autoprobing, most capable to least.
1264  */
1265 static const int autoprobe[] = 
1266 {
1267 #ifdef IMAP_ENABLE
1268     P_IMAP,
1269 #endif /* IMAP_ENABLE */
1270 #ifdef POP3_ENABLE
1271     P_POP3,
1272 #endif /* POP3_ENABLE */
1273 #ifdef POP2_ENABLE
1274     P_POP2
1275 #endif /* POP2_ENABLE */
1276 };
1277
1278 static int query_host(struct query *ctl)
1279 /* perform fetch transaction with single host */
1280 {
1281     int i, st = 0;
1282
1283     /*
1284      * If we're syslogging the progress messages are automatically timestamped.
1285      * Force timestamping if we're going to a logfile.
1286      */
1287     if (outlevel >= O_VERBOSE)
1288     {
1289         report(stdout, GT_("%s querying %s (protocol %s) at %s: poll started\n"),
1290                VERSION,
1291                ctl->server.pollname,
1292                showproto(ctl->server.protocol),
1293                timestamp());
1294     }
1295
1296     switch (ctl->server.protocol) {
1297     case P_AUTO:
1298         for (i = 0; i < sizeof(autoprobe)/sizeof(autoprobe[0]); i++)
1299         {
1300             ctl->server.protocol = autoprobe[i];
1301             st = query_host(ctl);
1302             if (st == PS_SUCCESS || st == PS_NOMAIL || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP || st == PS_MAXFETCH)
1303                 break;
1304         }
1305         ctl->server.protocol = P_AUTO;
1306         break;
1307     case P_POP2:
1308 #ifdef POP2_ENABLE
1309         st = doPOP2(ctl);
1310 #else
1311         report(stderr, GT_("POP2 support is not configured.\n"));
1312         st = PS_PROTOCOL;
1313 #endif /* POP2_ENABLE */
1314         break;
1315     case P_POP3:
1316     case P_APOP:
1317     case P_RPOP:
1318 #ifdef POP3_ENABLE
1319         st = doPOP3(ctl);
1320 #else
1321         report(stderr, GT_("POP3 support is not configured.\n"));
1322         st = PS_PROTOCOL;
1323 #endif /* POP3_ENABLE */
1324         break;
1325     case P_IMAP:
1326 #ifdef IMAP_ENABLE
1327         st = doIMAP(ctl);
1328 #else
1329         report(stderr, GT_("IMAP support is not configured.\n"));
1330         st = PS_PROTOCOL;
1331 #endif /* IMAP_ENABLE */
1332         break;
1333     case P_ETRN:
1334 #ifndef ETRN_ENABLE
1335         report(stderr, GT_("ETRN support is not configured.\n"));
1336         st = PS_PROTOCOL;
1337 #else
1338 #ifdef HAVE_GETHOSTBYNAME
1339         st = doETRN(ctl);
1340 #else
1341         report(stderr, GT_("Cannot support ETRN without gethostbyname(2).\n"));
1342         st = PS_PROTOCOL;
1343 #endif /* HAVE_GETHOSTBYNAME */
1344         break;
1345 #endif /* ETRN_ENABLE */
1346     case P_ODMR:
1347 #ifndef ODMR_ENABLE
1348         report(stderr, GT_("ODMR support is not configured.\n"));
1349         st = PS_PROTOCOL;
1350 #else
1351 #ifdef HAVE_GETHOSTBYNAME
1352         st = doODMR(ctl);
1353 #else
1354         report(stderr, GT_("Cannot support ODMR without gethostbyname(2).\n"));
1355         st = PS_PROTOCOL;
1356 #endif /* HAVE_GETHOSTBYNAME */
1357 #endif /* ODMR_ENABLE */
1358         break;
1359     default:
1360         report(stderr, GT_("unsupported protocol selected.\n"));
1361         st = PS_PROTOCOL;
1362     }
1363
1364     /*
1365      * If we're syslogging the progress messages are automatically timestamped.
1366      * Force timestamping if we're going to a logfile.
1367      */
1368     if (outlevel >= O_VERBOSE)
1369     {
1370         report(stdout, GT_("%s querying %s (protocol %s) at %s: poll completed\n"),
1371                VERSION,
1372                ctl->server.pollname,
1373                showproto(ctl->server.protocol),
1374                timestamp());
1375     }
1376
1377     return(st);
1378 }
1379
1380 static void dump_params (struct runctl *runp,
1381                          struct query *querylist, flag implicit)
1382 /* display query parameters in English */
1383 {
1384     struct query *ctl;
1385
1386     if (runp->poll_interval)
1387         printf(GT_("Poll interval is %d seconds\n"), runp->poll_interval);
1388     if (runp->logfile)
1389         printf(GT_("Logfile is %s\n"), runp->logfile);
1390     if (strcmp(runp->idfile, IDFILE_NAME))
1391         printf(GT_("Idfile is %s\n"), runp->idfile);
1392 #if defined(HAVE_SYSLOG)
1393     if (runp->use_syslog)
1394         printf(GT_("Progress messages will be logged via syslog\n"));
1395 #endif
1396     if (runp->invisible)
1397         printf(GT_("Fetchmail will masquerade and will not generate Received\n"));
1398     if (runp->showdots)
1399         printf(GT_("Fetchmail will show progress dots even in logfiles.\n"));
1400     if (runp->postmaster)
1401         printf(GT_("Fetchmail will forward misaddressed multidrop messages to %s.\n"),
1402                runp->postmaster);
1403
1404     if (!runp->bouncemail)
1405         printf(GT_("Fetchmail will direct error mail to the postmaster.\n"));
1406     else if (outlevel >= O_VERBOSE)
1407         printf(GT_("Fetchmail will direct error mail to the sender.\n"));
1408
1409     for (ctl = querylist; ctl; ctl = ctl->next)
1410     {
1411         if (!ctl->active || (implicit && ctl->server.skip))
1412             continue;
1413
1414         printf(GT_("Options for retrieving from %s@%s:\n"),
1415                ctl->remotename, visbuf(ctl->server.pollname));
1416
1417         if (ctl->server.via && MAILBOX_PROTOCOL(ctl))
1418             printf(GT_("  Mail will be retrieved via %s\n"), ctl->server.via);
1419
1420         if (ctl->server.interval)
1421             printf(GT_("  Poll of this server will occur every %d intervals.\n"),
1422                    ctl->server.interval);
1423         if (ctl->server.truename)
1424             printf(GT_("  True name of server is %s.\n"), ctl->server.truename);
1425         if (ctl->server.skip || outlevel >= O_VERBOSE)
1426             printf(GT_("  This host %s be queried when no host is specified.\n"),
1427                    ctl->server.skip ? GT_("will not") : GT_("will"));
1428         if (!NO_PASSWORD(ctl))
1429         {
1430             if (!ctl->password)
1431                 printf(GT_("  Password will be prompted for.\n"));
1432             else if (outlevel >= O_VERBOSE)
1433             {
1434                 if (ctl->server.protocol == P_APOP)
1435                     printf(GT_("  APOP secret = \"%s\".\n"),
1436                            visbuf(ctl->password));
1437                 else if (ctl->server.protocol == P_RPOP)
1438                     printf(GT_("  RPOP id = \"%s\".\n"),
1439                            visbuf(ctl->password));
1440                 else
1441                     printf(GT_("  Password = \"%s\".\n"),
1442                                                         visbuf(ctl->password));
1443             }
1444         }
1445
1446         if (ctl->server.protocol == P_POP3 
1447 #if INET6_ENABLE
1448             && ctl->server.service && !strcmp(ctl->server.service, KPOP_PORT)
1449 #else /* INET6_ENABLE */
1450             && ctl->server.port == KPOP_PORT
1451 #endif /* INET6_ENABLE */
1452             && (ctl->server.authenticate == A_KERBEROS_V4 ||
1453                 ctl->server.authenticate == A_KERBEROS_V5))
1454             printf(GT_("  Protocol is KPOP with Kerberos %s authentication"),
1455                    ctl->server.authenticate == A_KERBEROS_V5 ? "V" : "IV");
1456         else
1457             printf(GT_("  Protocol is %s"), showproto(ctl->server.protocol));
1458 #if INET6_ENABLE
1459         if (ctl->server.service)
1460             printf(GT_(" (using service %s)"), ctl->server.service);
1461         if (ctl->server.netsec)
1462             printf(GT_(" (using network security options %s)"), ctl->server.netsec);
1463 #else /* INET6_ENABLE */
1464         if (ctl->server.port)
1465             printf(GT_(" (using port %d)"), ctl->server.port);
1466 #endif /* INET6_ENABLE */
1467         else if (outlevel >= O_VERBOSE)
1468             printf(GT_(" (using default port)"));
1469         if (ctl->server.uidl && MAILBOX_PROTOCOL(ctl))
1470             printf(GT_(" (forcing UIDL use)"));
1471         putchar('.');
1472         putchar('\n');
1473         switch (ctl->server.authenticate)
1474         {
1475         case A_ANY:
1476             printf(GT_("  All available authentication methods will be tried.\n"));
1477             break;
1478         case A_PASSWORD:
1479             printf(GT_("  Password authentication will be forced.\n"));
1480             break;
1481         case A_NTLM:
1482             printf(GT_("  NTLM authentication will be forced.\n"));
1483             break;
1484         case A_OTP:
1485             printf(GT_("  OTP authentication will be forced.\n"));
1486             break;
1487         case A_CRAM_MD5:
1488             printf(GT_("  CRAM-Md5 authentication will be forced.\n"));
1489             break;
1490         case A_GSSAPI:
1491             printf(GT_("  GSSAPI authentication will be forced.\n"));
1492             break;
1493         case A_KERBEROS_V4:
1494             printf(GT_("  Kerberos V4 authentication will be forced.\n"));
1495             break;
1496         case A_KERBEROS_V5:
1497             printf(GT_("  Kerberos V5 authentication will be forced.\n"));
1498             break;
1499         case A_SSH:
1500             printf(GT_("  End-to-end encryption assumed.\n"));
1501             break;
1502         }
1503         if (ctl->server.principal != (char *) NULL)
1504             printf(GT_("  Mail service principal is: %s\n"), ctl->server.principal);
1505 #ifdef  SSL_ENABLE
1506         if (ctl->use_ssl)
1507             printf(GT_("  SSL encrypted sessions enabled.\n"));
1508         if (ctl->sslcertck) {
1509             printf(GT_("  SSL server certificate checking enabled.\n"));
1510             if (ctl->sslcertpath != NULL)
1511                 printf(GT_("  SSL trusted certificate directory: %s\n"), ctl->sslcertpath);
1512         }
1513         if (ctl->sslfingerprint != NULL)
1514                 printf(GT_("  SSL key fingerprint (checked against the server key): %s\n"), ctl->sslfingerprint);
1515 #endif
1516         if (ctl->server.timeout > 0)
1517             printf(GT_("  Server nonresponse timeout is %d seconds"), ctl->server.timeout);
1518         if (ctl->server.timeout ==  CLIENT_TIMEOUT)
1519             printf(GT_(" (default).\n"));
1520         else
1521             printf(".\n");
1522
1523         if (MAILBOX_PROTOCOL(ctl)) 
1524         {
1525             if (!ctl->mailboxes->id)
1526                 printf(GT_("  Default mailbox selected.\n"));
1527             else
1528             {
1529                 struct idlist *idp;
1530
1531                 printf(GT_("  Selected mailboxes are:"));
1532                 for (idp = ctl->mailboxes; idp; idp = idp->next)
1533                     printf(" %s", idp->id);
1534                 printf("\n");
1535             }
1536             printf(GT_("  %s messages will be retrieved (--all %s).\n"),
1537                    ctl->fetchall ? GT_("All") : GT_("Only new"),
1538                    ctl->fetchall ? "on" : "off");
1539             printf(GT_("  Fetched messages %s be kept on the server (--keep %s).\n"),
1540                    ctl->keep ? GT_("will") : GT_("will not"),
1541                    ctl->keep ? "on" : "off");
1542             printf(GT_("  Old messages %s be flushed before message retrieval (--flush %s).\n"),
1543                    ctl->flush ? GT_("will") : GT_("will not"),
1544                    ctl->flush ? "on" : "off");
1545             printf(GT_("  Rewrite of server-local addresses is %s (--norewrite %s).\n"),
1546                    ctl->rewrite ? GT_("enabled") : GT_("disabled"),
1547                    ctl->rewrite ? "off" : "on");
1548             printf(GT_("  Carriage-return stripping is %s (stripcr %s).\n"),
1549                    ctl->stripcr ? GT_("enabled") : GT_("disabled"),
1550                    ctl->stripcr ? "on" : "off");
1551             printf(GT_("  Carriage-return forcing is %s (forcecr %s).\n"),
1552                    ctl->forcecr ? GT_("enabled") : GT_("disabled"),
1553                    ctl->forcecr ? "on" : "off");
1554             printf(GT_("  Interpretation of Content-Transfer-Encoding is %s (pass8bits %s).\n"),
1555                    ctl->pass8bits ? GT_("disabled") : GT_("enabled"),
1556                    ctl->pass8bits ? "on" : "off");
1557             printf(GT_("  MIME decoding is %s (mimedecode %s).\n"),
1558                    ctl->mimedecode ? GT_("enabled") : GT_("disabled"),
1559                    ctl->mimedecode ? "on" : "off");
1560             printf(GT_("  Idle after poll is %s (idle %s).\n"),
1561                    ctl->idle ? GT_("enabled") : GT_("disabled"),
1562                    ctl->idle ? "on" : "off");
1563             printf(GT_("  Nonempty Status lines will be %s (dropstatus %s)\n"),
1564                    ctl->dropstatus ? GT_("discarded") : GT_("kept"),
1565                    ctl->dropstatus ? "on" : "off");
1566             printf(GT_("  Delivered-To lines will be %s (dropdelivered %s)\n"),
1567                    ctl->dropdelivered ? GT_("discarded") : GT_("kept"),
1568                    ctl->dropdelivered ? "on" : "off");
1569             if (NUM_NONZERO(ctl->limit))
1570             {
1571                 if (NUM_NONZERO(ctl->limit))
1572                     printf(GT_("  Message size limit is %d octets (--limit %d).\n"), 
1573                            ctl->limit, ctl->limit);
1574                 else if (outlevel >= O_VERBOSE)
1575                     printf(GT_("  No message size limit (--limit 0).\n"));
1576                 if (run.poll_interval > 0)
1577                     printf(GT_("  Message size warning interval is %d seconds (--warnings %d).\n"), 
1578                            ctl->warnings, ctl->warnings);
1579                 else if (outlevel >= O_VERBOSE)
1580                     printf(GT_("  Size warnings on every poll (--warnings 0).\n"));
1581             }
1582             if (NUM_NONZERO(ctl->fetchlimit))
1583                 printf(GT_("  Received-message limit is %d (--fetchlimit %d).\n"),
1584                        ctl->fetchlimit, ctl->fetchlimit);
1585             else if (outlevel >= O_VERBOSE)
1586                 printf(GT_("  No received-message limit (--fetchlimit 0).\n"));
1587             if (NUM_NONZERO(ctl->batchlimit))
1588                 printf(GT_("  SMTP message batch limit is %d.\n"), ctl->batchlimit);
1589             else if (outlevel >= O_VERBOSE)
1590                 printf(GT_("  No SMTP message batch limit (--batchlimit 0).\n"));
1591             if (MAILBOX_PROTOCOL(ctl))
1592             {
1593                 if (NUM_NONZERO(ctl->expunge))
1594                     printf(GT_("  Deletion interval between expunges forced to %d (--expunge %d).\n"), ctl->expunge, ctl->expunge);
1595                 else if (outlevel >= O_VERBOSE)
1596                     printf(GT_("  No forced expunges (--expunge 0).\n"));
1597             }
1598         }
1599         else    /* ODMR or ETRN */
1600         {
1601             struct idlist *idp;
1602
1603             printf(GT_("  Domains for which mail will be fetched are:"));
1604             for (idp = ctl->domainlist; idp; idp = idp->next)
1605             {
1606                 printf(" %s", idp->id);
1607                 if (!idp->val.status.mark)
1608                     printf(GT_(" (default)"));
1609             }
1610             printf("\n");
1611         }
1612         if (ctl->bsmtp)
1613             printf(GT_("  Messages will be appended to %s as BSMTP\n"), visbuf(ctl->bsmtp));
1614         else if (ctl->mda && MAILBOX_PROTOCOL(ctl))
1615             printf(GT_("  Messages will be delivered with \"%s\".\n"), visbuf(ctl->mda));
1616         else
1617         {
1618             struct idlist *idp;
1619
1620             if (ctl->smtphunt)
1621             {
1622                 printf(GT_("  Messages will be %cMTP-forwarded to:"), 
1623                        ctl->listener);
1624                 for (idp = ctl->smtphunt; idp; idp = idp->next)
1625                 {
1626                     printf(" %s", idp->id);
1627                     if (!idp->val.status.mark)
1628                         printf(GT_(" (default)"));
1629                 }
1630                 printf("\n");
1631             }
1632             if (ctl->smtpaddress)
1633                 printf(GT_("  Host part of MAIL FROM line will be %s\n"),
1634                        ctl->smtpaddress);
1635             if (ctl->smtpname)
1636                 printf(GT_("  Address to be put in RCPT TO lines shipped to SMTP will be %s\n"),
1637                        ctl->smtpname);
1638         }
1639         if (MAILBOX_PROTOCOL(ctl))
1640         {
1641                 if (ctl->antispam != (struct idlist *)NULL)
1642                 {
1643                     struct idlist *idp;
1644
1645                     printf(GT_("  Recognized listener spam block responses are:"));
1646                     for (idp = ctl->antispam; idp; idp = idp->next)
1647                         printf(" %d", idp->val.status.num);
1648                     printf("\n");
1649                 }
1650                 else if (outlevel >= O_VERBOSE)
1651                     printf(GT_("  Spam-blocking disabled\n"));
1652         }
1653         if (ctl->preconnect)
1654             printf(GT_("  Server connection will be brought up with \"%s\".\n"),
1655                    visbuf(ctl->preconnect));
1656         else if (outlevel >= O_VERBOSE)
1657             printf(GT_("  No pre-connection command.\n"));
1658         if (ctl->postconnect)
1659             printf(GT_("  Server connection will be taken down with \"%s\".\n"),
1660                    visbuf(ctl->postconnect));
1661         else if (outlevel >= O_VERBOSE)
1662             printf(GT_("  No post-connection command.\n"));
1663         if (MAILBOX_PROTOCOL(ctl)) {
1664                 if (!ctl->localnames)
1665                     printf(GT_("  No localnames declared for this host.\n"));
1666                 else
1667                 {
1668                     struct idlist *idp;
1669                     int count = 0;
1670
1671                     for (idp = ctl->localnames; idp; idp = idp->next)
1672                         ++count;
1673
1674                     if (count > 1 || ctl->wildcard)
1675                         printf(GT_("  Multi-drop mode: "));
1676                     else
1677                         printf(GT_("  Single-drop mode: "));
1678
1679                     printf(GT_("%d local name(s) recognized.\n"), count);
1680                     if (outlevel >= O_VERBOSE)
1681                     {
1682                         for (idp = ctl->localnames; idp; idp = idp->next)
1683                             if (idp->val.id2)
1684                                 printf("\t%s -> %s\n", idp->id, idp->val.id2);
1685                             else
1686                                 printf("\t%s\n", idp->id);
1687                         if (ctl->wildcard)
1688                             fputs("\t*\n", stdout);
1689                     }
1690
1691                     if (count > 1 || ctl->wildcard)
1692                     {
1693                         printf(GT_("  DNS lookup for multidrop addresses is %s.\n"),
1694                                ctl->server.dns ? GT_("enabled") : GT_("disabled"));
1695                         if (ctl->server.dns)
1696                         {
1697                             printf(GT_("  Server aliases will be compared with multidrop addresses by "));
1698                             if (ctl->server.checkalias)
1699                                 printf(GT_("IP address.\n"));
1700                             else
1701                                 printf(GT_("name.\n"));
1702                         }
1703                         if (ctl->server.envelope == STRING_DISABLED)
1704                             printf(GT_("  Envelope-address routing is disabled\n"));
1705                         else
1706                         {
1707                             printf(GT_("  Envelope header is assumed to be: %s\n"),
1708                                    ctl->server.envelope ? ctl->server.envelope:GT_("Received"));
1709                             if (ctl->server.envskip > 1 || outlevel >= O_VERBOSE)
1710                                 printf(GT_("  Number of envelope header to be parsed: %d\n"),
1711                                        ctl->server.envskip);
1712                             if (ctl->server.qvirtual)
1713                                 printf(GT_("  Prefix %s will be removed from user id\n"),
1714                                        ctl->server.qvirtual);
1715                             else if (outlevel >= O_VERBOSE) 
1716                                 printf(GT_("  No prefix stripping\n"));
1717                         }
1718
1719                         if (ctl->server.akalist)
1720                         {
1721                             struct idlist *idp;
1722
1723                             printf(GT_("  Predeclared mailserver aliases:"));
1724                             for (idp = ctl->server.akalist; idp; idp = idp->next)
1725                                 printf(" %s", idp->id);
1726                             putchar('\n');
1727                         }
1728                         if (ctl->server.localdomains)
1729                         {
1730                             struct idlist *idp;
1731
1732                             printf(GT_("  Local domains:"));
1733                             for (idp = ctl->server.localdomains; idp; idp = idp->next)
1734                                 printf(" %s", idp->id);
1735                             putchar('\n');
1736                         }
1737                     }
1738                 }
1739         }
1740 #if defined(linux) || defined(__FreeBSD__)
1741         if (ctl->server.interface)
1742             printf(GT_("  Connection must be through interface %s.\n"), ctl->server.interface);
1743         else if (outlevel >= O_VERBOSE)
1744             printf(GT_("  No interface requirement specified.\n"));
1745         if (ctl->server.monitor)
1746             printf(GT_("  Polling loop will monitor %s.\n"), ctl->server.monitor);
1747         else if (outlevel >= O_VERBOSE)
1748             printf(GT_("  No monitor interface specified.\n"));
1749 #endif
1750
1751         if (ctl->server.plugin)
1752             printf(GT_("  Server connections will be made via plugin %s (--plugin %s).\n"), ctl->server.plugin, ctl->server.plugin);
1753         else if (outlevel >= O_VERBOSE)
1754             printf(GT_("  No plugin command specified.\n"));
1755         if (ctl->server.plugout)
1756             printf(GT_("  Listener connections will be made via plugout %s (--plugout %s).\n"), ctl->server.plugout, ctl->server.plugout);
1757         else if (outlevel >= O_VERBOSE)
1758             printf(GT_("  No plugout command specified.\n"));
1759
1760         if (ctl->server.protocol > P_POP2 && MAILBOX_PROTOCOL(ctl))
1761         {
1762             if (!ctl->oldsaved)
1763                 printf(GT_("  No UIDs saved from this host.\n"));
1764             else
1765             {
1766                 struct idlist *idp;
1767                 int count = 0;
1768
1769                 for (idp = ctl->oldsaved; idp; idp = idp->next)
1770                     ++count;
1771
1772                 printf(GT_("  %d UIDs saved.\n"), count);
1773                 if (outlevel >= O_VERBOSE)
1774                     for (idp = ctl->oldsaved; idp; idp = idp->next)
1775                         printf("\t%s\n", idp->id);
1776             }
1777         }
1778
1779         if (ctl->tracepolls)
1780             printf(GT_("  Poll trace information will be added to the Received header.\n"));
1781         else if (outlevel >= O_VERBOSE)
1782             printf(GT_("  No poll trace information will be added to the Received header.\n.\n"));
1783
1784         if (ctl->properties)
1785             printf(GT_("  Pass-through properties \"%s\".\n"),
1786                    visbuf(ctl->properties));
1787     }
1788 }
1789
1790 /* fetchmail.c ends here */