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