]> Pileus Git - ~andy/fetchmail/blob - fetchmail.c
via localhost is gone.
[~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     /*
980      * DNS support is required for some protocols.  We used to
981      * do this unconditionally, but it made fetchmail excessively
982      * vulnerable to misconfigured DNS setups.
983      *
984      * If we're using ETRN or ODMR, the smtp hunt list is the
985      * list of systems we're polling on behalf of; these have
986      * to be fully-qualified domain names.  The default for
987      * this list should be the FQDN of localhost.
988      *
989      * If we're using Kerberos for authentication, we need 
990      * the FQDN in order to generate capability keys.
991      */
992     if (strcmp(fetchmailhost, "localhost") == 0)
993         for (ctl = querylist; ctl; ctl = ctl->next)
994             if (ctl->active && 
995                 (ctl->server.protocol==P_ETRN || ctl->server.protocol==P_ODMR
996                  || ctl->server.authenticate == A_KERBEROS_V4
997                  || ctl->server.authenticate == A_KERBEROS_V5))
998             {
999                 fetchmailhost = host_fqdn();
1000                 break;
1001             }
1002
1003     /* merge in wired defaults, do sanity checks and prepare internal fields */
1004     for (ctl = querylist; ctl; ctl = ctl->next)
1005     {
1006         ctl->wedged = FALSE;
1007
1008         if (configdump || ctl->active )
1009         {
1010             /* merge in defaults */
1011             optmerge(ctl, &def_opts, FALSE);
1012
1013             /* force command-line options */
1014             optmerge(ctl, &cmd_opts, TRUE);
1015
1016             /* this code enables flags to be turned off */
1017 #define DEFAULT(flag, dflt)     if (flag == FLAG_TRUE)\
1018                                         flag = TRUE;\
1019                                 else if (flag == FLAG_FALSE)\
1020                                         flag = FALSE;\
1021                                 else\
1022                                         flag = (dflt)
1023             DEFAULT(ctl->keep, FALSE);
1024             DEFAULT(ctl->fetchall, FALSE);
1025             DEFAULT(ctl->flush, FALSE);
1026             DEFAULT(ctl->rewrite, TRUE);
1027             DEFAULT(ctl->stripcr, (ctl->mda != (char *)NULL)); 
1028             DEFAULT(ctl->forcecr, FALSE);
1029             DEFAULT(ctl->pass8bits, FALSE);
1030             DEFAULT(ctl->dropstatus, FALSE);
1031             DEFAULT(ctl->dropdelivered, FALSE);
1032             DEFAULT(ctl->mimedecode, FALSE);
1033             DEFAULT(ctl->idle, FALSE);
1034             DEFAULT(ctl->server.dns, TRUE);
1035             DEFAULT(ctl->server.uidl, FALSE);
1036 #ifdef  SSL_ENABLE
1037             DEFAULT(ctl->use_ssl, FALSE);
1038 #endif
1039             DEFAULT(ctl->server.checkalias, FALSE);
1040 #undef DEFAULT
1041
1042             /*
1043              * Make sure we have a nonempty host list to forward to.
1044              */
1045             if (!ctl->smtphunt)
1046                 save_str(&ctl->smtphunt, fetchmailhost, FALSE);
1047
1048             /* if `user' doesn't name a real local user, try to run as root */
1049             if ((pw = getpwnam(user)) == (struct passwd *)NULL)
1050                 ctl->uid = 0;
1051             else
1052                 ctl->uid = pw->pw_uid;  /* for local delivery via MDA */
1053             if (!ctl->localnames)       /* for local delivery via SMTP */
1054                 save_str_pair(&ctl->localnames, user, NULL);
1055
1056 #if !defined(HAVE_GETHOSTBYNAME) || !defined(HAVE_RES_SEARCH)
1057             /* can't handle multidrop mailboxes unless we can do DNS lookups */
1058             if (ctl->localnames && ctl->localnames->next && ctl->server.dns)
1059             {
1060                 ctl->server.dns = FALSE;
1061                 report(stderr, _("fetchmail: warning: no DNS available to check multidrop fetches from %s\n"), ctl->server.pollname);
1062             }
1063 #endif /* !HAVE_GETHOSTBYNAME || !HAVE_RES_SEARCH */
1064
1065             if (ctl->server.via) 
1066                 ctl->server.queryname = xstrdup(ctl->server.via);
1067             else
1068                 ctl->server.queryname = xstrdup(ctl->server.pollname);
1069
1070 #ifdef HESIOD
1071         /* If either the pollname or vianame are "hesiod" we want to
1072            lookup the user's hesiod pobox host */
1073
1074         if (!strcasecmp(ctl->server.queryname, "hesiod")) {
1075             struct hes_postoffice *hes_p;
1076             hes_p = hes_getmailhost(ctl->remotename);
1077             if (hes_p != NULL && strcmp(hes_p->po_type, "POP") == 0) {
1078                  free(ctl->server.queryname);
1079                  ctl->server.queryname = xstrdup(hes_p->po_host);
1080                  if (ctl->server.via)
1081                      free(ctl->server.via);
1082                  ctl->server.via = xstrdup(hes_p->po_host);
1083             } else {
1084                  report(stderr,
1085                         _("couldn't find HESIOD pobox for %s\n"),
1086                         ctl->remotename);
1087             }
1088         }
1089 #endif /* HESIOD */
1090
1091             /*
1092              * We may have to canonicalize the server truename for later use.
1093              * Do this just once for each lead server, if necessary, in order
1094              * to minimize DNS round trips.
1095              */
1096             if (ctl->server.lead_server)
1097             {
1098                 char    *leadname = ctl->server.lead_server->truename;
1099
1100                 /* prevent core dump from ill-formed or duplicate entry */
1101                 if (!leadname)
1102                 {
1103                     report(stderr, _("Lead server has no name.\n"));
1104                     exit(PS_SYNTAX);
1105                 }
1106
1107                 ctl->server.truename = xstrdup(leadname);
1108             }
1109 #ifdef HAVE_GETHOSTBYNAME
1110             else if (ctl->active && !configdump)
1111             {
1112                 if (ctl->server.authenticate==A_KERBEROS_V4 ||
1113                       ctl->server.authenticate==A_KERBEROS_V5 ||
1114                     (ctl->server.dns && MULTIDROP(ctl)))
1115                 {
1116                     struct hostent      *namerec;
1117
1118                     /* compute the canonical name of the host */
1119                     errno = 0;
1120                     namerec = gethostbyname(ctl->server.queryname);
1121                     if (namerec == (struct hostent *)NULL)
1122                     {
1123                         report(stderr,
1124                                _("couldn't find canonical DNS name of %s\n"),
1125                                ctl->server.pollname);
1126                         ctl->server.truename = xstrdup(ctl->server.queryname);
1127                         ctl->server.trueaddr = NULL;
1128                     }
1129                     else
1130                         ctl->server.truename=xstrdup((char *)namerec->h_name);
1131                 }
1132 #endif /* HAVE_GETHOSTBYNAME */
1133                 else if (ctl->active)
1134                 {
1135 #ifdef HAVE_GETHOSTBYNAME
1136                     struct hostent      *namerec;
1137                     
1138                     /* 
1139                      * Get the host's IP, so we can report it like this:
1140                      *
1141                      * Received: from hostname [10.0.0.1]
1142                      *
1143                      * For ultra-efficiency, we should find the IP later, when
1144                      * we are actually resolving the hostname for a connection.
1145                      * Problem is this would have to be done inside SockOpen
1146                      * and there's no way to do that that wouldn't both (a)
1147                      * be horribly complicated, and (b) blow a couple of
1148                      * layers of modularity all to hell.
1149                      */
1150                     errno = 0;
1151                     namerec = gethostbyname(ctl->server.queryname);
1152                     if (namerec == (struct hostent *)NULL)
1153                     {
1154                         report(stderr,
1155                                _("couldn't find canonical DNS name of %s\n"),
1156                                ctl->server.pollname);
1157                         exit(PS_DNS);
1158                     }
1159                     else {
1160                         ctl->server.truename=xstrdup((char *)namerec->h_name);
1161                         ctl->server.trueaddr=xmalloc(namerec->h_length);
1162                         memcpy(ctl->server.trueaddr, 
1163                                namerec->h_addr_list[0],
1164                                namerec->h_length);
1165                     }
1166 #else
1167                     ctl->server.truename = xstrdup(ctl->server.queryname);
1168 #endif /* HAVE_GETHOSTBYNAME */
1169                 }
1170             }
1171             else
1172                 /*
1173                  * This is a kluge.  It enables users to edit their
1174                  * configurations when DNS isn't available.
1175                  */
1176                 ctl->server.truename = xstrdup(ctl->server.queryname);
1177
1178             /* if no folders were specified, set up the null one as default */
1179             if (!ctl->mailboxes)
1180                 save_str(&ctl->mailboxes, (char *)NULL, 0);
1181
1182             /* maybe user overrode timeout on command line? */
1183             if (ctl->server.timeout == -1)      
1184                 ctl->server.timeout = CLIENT_TIMEOUT;
1185
1186 #if !INET6_ENABLE
1187             /* sanity checks */
1188             if (ctl->server.port < 0)
1189             {
1190                 (void) fprintf(stderr,
1191                                _("%s configuration invalid, port number cannot be negative\n"),
1192                                ctl->server.pollname);
1193                 exit(PS_SYNTAX);
1194             }
1195             if (ctl->server.protocol == P_RPOP && ctl->server.port >= 1024)
1196             {
1197                 (void) fprintf(stderr,
1198                                _("%s configuration invalid, RPOP requires a privileged port\n"),
1199                                ctl->server.pollname);
1200                 exit(PS_SYNTAX);
1201             }
1202             if (ctl->listener == LMTP_MODE)
1203             {
1204                 struct idlist   *idp;
1205
1206                 for (idp = ctl->smtphunt; idp; idp = idp->next)
1207                 {
1208                     char        *cp;
1209
1210                     if (!(cp = strrchr(idp->id, '/')) ||
1211                                 (atoi(++cp) == SMTP_PORT))
1212                     {
1213                         (void) fprintf(stderr,
1214                                        _("%s configuration invalid, LMTP can't use default SMTP port\n"),
1215                                        ctl->server.pollname);
1216                         exit(PS_SYNTAX);
1217                     }
1218                 }
1219             }
1220 #endif /* !INET6_ENABLE */
1221
1222             /*
1223              * "I beg to you, have mercy on the week minds like myself."
1224              * wrote Pehr Anderson.  Your petition is granted.
1225              */
1226             if (ctl->fetchall && ctl->keep && run.poll_interval && !nodetach)
1227             {
1228                 (void) fprintf(stderr,
1229                                _("Both fetchall and keep on in daemon mode is a mistake!\n"));
1230                 exit(PS_SYNTAX);
1231             }
1232         }
1233     }
1234
1235 #ifdef POP3_ENABLE
1236     /* initialize UID handling */
1237     if (!versioninfo && (st = prc_filecheck(run.idfile, !versioninfo)) != 0)
1238         exit(st);
1239     else
1240         initialize_saved_lists(querylist, run.idfile);
1241 #endif /* POP3_ENABLE */
1242
1243     /*
1244      * If the user didn't set a last-resort user to get misaddressed
1245      * multidrop mail, set an appropriate default here.
1246      */
1247     if (!run.postmaster)
1248     {
1249         if (getuid())                           /* ordinary user */
1250             run.postmaster = user;
1251         else                                    /* root */
1252             run.postmaster = "postmaster";
1253     }
1254
1255     return(implicitmode);
1256 }
1257
1258 static void terminate_poll(int sig)
1259 /* to be executed at the end of a poll cycle */
1260 {
1261     /*
1262      * Close all SMTP delivery sockets.  For optimum performance
1263      * we'd like to hold them open til end of run, but (1) this
1264      * loses if our poll interval is longer than the MTA's inactivity
1265      * timeout, and (2) some MTAs (like smail) don't deliver after
1266      * each message, but rather queue up mail and wait to actually
1267      * deliver it until the input socket is closed. 
1268      *
1269      * Sending SMTP QUIT on signal is theoretically nice, but led to a 
1270      * subtle bug.  If fetchmail was terminated by signal while it was 
1271      * shipping message text, it would hang forever waiting for a
1272      * command acknowledge.  In theory we could enable the QUIT
1273      * only outside of the message send.  In practice, we don't
1274      * care.  All mailservers hang up on a dropped TCP/IP connection
1275      * anyway.
1276      */
1277
1278     if (sig != 0)
1279         report(stdout, _("terminated with signal %d\n"), sig);
1280     else
1281     {
1282         struct query *ctl;
1283
1284         /* terminate all SMTP connections cleanly */
1285         for (ctl = querylist; ctl; ctl = ctl->next)
1286             if (ctl->smtp_socket != -1)
1287             {
1288                 SMTP_quit(ctl->smtp_socket);
1289                 SockClose(ctl->smtp_socket);
1290                 ctl->smtp_socket = -1;
1291             }
1292     }
1293
1294 #ifdef POP3_ENABLE
1295     /*
1296      * Update UID information at end of each poll, rather than at end
1297      * of run, because that way we don't lose all UIDL information since
1298      * the beginning of time if fetchmail crashes.
1299      */
1300     if (!check_only)
1301         write_saved_lists(querylist, run.idfile);
1302 #endif /* POP3_ENABLE */
1303 }
1304
1305 static void terminate_run(int sig)
1306 /* to be executed on normal or signal-induced termination */
1307 {
1308     struct query        *ctl;
1309
1310     terminate_poll(sig);
1311
1312     /* 
1313      * Craig Metz, the RFC1938 one-time-password guy, points out:
1314      * "Remember that most kernels don't zero pages before handing them to the
1315      * next process and many kernels share pages between user and kernel space.
1316      * You'd be very surprised what you can find from a short program to do a
1317      * malloc() and then dump the contents of the pages you got. By zeroing
1318      * the secrets at end of run (earlier if you can), you make sure the next
1319      * guy can't get the password/pass phrase."
1320      *
1321      * Right you are, Craig!
1322      */
1323     for (ctl = querylist; ctl; ctl = ctl->next)
1324         if (ctl->password)
1325           memset(ctl->password, '\0', strlen(ctl->password));
1326
1327 #if !defined(HAVE_ATEXIT) && !defined(HAVE_ON_EXIT)
1328     lock_release();
1329 #endif
1330
1331     if (activecount == 0)
1332         exit(PS_NOMAIL);
1333     else
1334         exit(successes ? PS_SUCCESS : querystatus);
1335 }
1336
1337 /*
1338  * Sequence of protocols to try when autoprobing, most capable to least.
1339  */
1340 static const int autoprobe[] = 
1341 {
1342 #ifdef IMAP_ENABLE
1343     P_IMAP,
1344 #endif /* IMAP_ENABLE */
1345 #ifdef POP3_ENABLE
1346     P_POP3,
1347 #endif /* POP3_ENABLE */
1348 #ifdef POP2_ENABLE
1349     P_POP2
1350 #endif /* POP2_ENABLE */
1351 };
1352
1353 static int query_host(struct query *ctl)
1354 /* perform fetch transaction with single host */
1355 {
1356     int i, st;
1357
1358     /*
1359      * If we're syslogging the progress messages are automatically timestamped.
1360      * Force timestamping if we're going to a logfile.
1361      */
1362     if (outlevel >= O_VERBOSE || (run.logfile && outlevel > O_SILENT))
1363     {
1364         report(stdout, _("%s querying %s (protocol %s) at %s\n"),
1365                VERSION,
1366                ctl->server.pollname,
1367                showproto(ctl->server.protocol),
1368                timestamp());
1369     }
1370     switch (ctl->server.protocol) {
1371     case P_AUTO:
1372         for (i = 0; i < sizeof(autoprobe)/sizeof(autoprobe[0]); i++)
1373         {
1374             ctl->server.protocol = autoprobe[i];
1375             if ((st = query_host(ctl)) == PS_SUCCESS || st == PS_NOMAIL || st == PS_AUTHFAIL || st == PS_LOCKBUSY || st == PS_SMTP)
1376                 break;
1377         }
1378         ctl->server.protocol = P_AUTO;
1379         return(st);
1380     case P_POP2:
1381 #ifdef POP2_ENABLE
1382         return(doPOP2(ctl));
1383 #else
1384         report(stderr, _("POP2 support is not configured.\n"));
1385         return(PS_PROTOCOL);
1386 #endif /* POP2_ENABLE */
1387         break;
1388     case P_POP3:
1389     case P_APOP:
1390     case P_RPOP:
1391 #ifdef POP3_ENABLE
1392         return(doPOP3(ctl));
1393 #else
1394         report(stderr, _("POP3 support is not configured.\n"));
1395         return(PS_PROTOCOL);
1396 #endif /* POP3_ENABLE */
1397         break;
1398     case P_IMAP:
1399 #ifdef IMAP_ENABLE
1400         return(doIMAP(ctl));
1401 #else
1402         report(stderr, _("IMAP support is not configured.\n"));
1403         return(PS_PROTOCOL);
1404 #endif /* IMAP_ENABLE */
1405     case P_ETRN:
1406 #ifndef ETRN_ENABLE
1407         report(stderr, _("ETRN support is not configured.\n"));
1408         return(PS_PROTOCOL);
1409 #else
1410 #ifdef HAVE_GETHOSTBYNAME
1411         return(doETRN(ctl));
1412 #else
1413         report(stderr, _("Cannot support ETRN without gethostbyname(2).\n"));
1414         return(PS_PROTOCOL);
1415 #endif /* HAVE_GETHOSTBYNAME */
1416 #endif /* ETRN_ENABLE */
1417     case P_ODMR:
1418 #ifndef ODMR_ENABLE
1419         report(stderr, _("ODMR support is not configured.\n"));
1420         return(PS_PROTOCOL);
1421 #else
1422 #ifdef HAVE_GETHOSTBYNAME
1423         return(doODMR(ctl));
1424 #else
1425         report(stderr, _("Cannot support ODMR without gethostbyname(2).\n"));
1426         return(PS_PROTOCOL);
1427 #endif /* HAVE_GETHOSTBYNAME */
1428 #endif /* ODMR_ENABLE */
1429     default:
1430         report(stderr, _("unsupported protocol selected.\n"));
1431         return(PS_PROTOCOL);
1432     }
1433 }
1434
1435 static void dump_params (struct runctl *runp,
1436                          struct query *querylist, flag implicit)
1437 /* display query parameters in English */
1438 {
1439     struct query *ctl;
1440
1441     if (runp->poll_interval)
1442         printf(_("Poll interval is %d seconds\n"), runp->poll_interval);
1443     if (runp->logfile)
1444         printf(_("Logfile is %s\n"), runp->logfile);
1445     if (strcmp(runp->idfile, IDFILE_NAME))
1446         printf(_("Idfile is %s\n"), runp->idfile);
1447 #if defined(HAVE_SYSLOG)
1448     if (runp->use_syslog)
1449         printf(_("Progress messages will be logged via syslog\n"));
1450 #endif
1451     if (runp->invisible)
1452         printf(_("Fetchmail will masquerade and will not generate Received\n"));
1453     if (runp->showdots)
1454         printf(_("Fetchmail will show progress dots even in logfiles.\n"));
1455     if (runp->postmaster)
1456         printf(_("Fetchmail will forward misaddressed multidrop messages to %s.\n"),
1457                runp->postmaster);
1458
1459     if (!runp->bouncemail)
1460         printf(_("Fetchmail will direct error mail to the postmaster.\n"));
1461     else if (outlevel >= O_VERBOSE)
1462         printf(_("Fetchmail will direct error mail to the sender.\n"));
1463
1464     for (ctl = querylist; ctl; ctl = ctl->next)
1465     {
1466         if (!ctl->active || (implicit && ctl->server.skip))
1467             continue;
1468
1469         printf(_("Options for retrieving from %s@%s:\n"),
1470                ctl->remotename, visbuf(ctl->server.pollname));
1471
1472         if (ctl->server.via && MAILBOX_PROTOCOL(ctl))
1473             printf(_("  Mail will be retrieved via %s\n"), ctl->server.via);
1474
1475         if (ctl->server.interval)
1476             printf(_("  Poll of this server will occur every %d intervals.\n"),
1477                    ctl->server.interval);
1478         if (ctl->server.truename)
1479             printf(_("  True name of server is %s.\n"), ctl->server.truename);
1480         if (ctl->server.skip || outlevel >= O_VERBOSE)
1481             printf(_("  This host %s be queried when no host is specified.\n"),
1482                    ctl->server.skip ? _("will not") : _("will"));
1483         if (!NO_PASSWORD(ctl))
1484         {
1485             if (!ctl->password)
1486                 printf(_("  Password will be prompted for.\n"));
1487             else if (outlevel >= O_VERBOSE)
1488             {
1489                 if (ctl->server.protocol == P_APOP)
1490                     printf(_("  APOP secret = \"%s\".\n"),
1491                            visbuf(ctl->password));
1492                 else if (ctl->server.protocol == P_RPOP)
1493                     printf(_("  RPOP id = \"%s\".\n"),
1494                            visbuf(ctl->password));
1495                 else
1496                     printf(_("  Password = \"%s\".\n"),
1497                                                         visbuf(ctl->password));
1498             }
1499         }
1500
1501         if (ctl->server.protocol == P_POP3 
1502 #if INET6_ENABLE
1503             && ctl->server.service && !strcmp(ctl->server.service, KPOP_PORT)
1504 #else /* INET6_ENABLE */
1505             && ctl->server.port == KPOP_PORT
1506 #endif /* INET6_ENABLE */
1507             && (ctl->server.authenticate == A_KERBEROS_V4 ||
1508                 ctl->server.authenticate == A_KERBEROS_V5))
1509             printf(_("  Protocol is KPOP with Kerberos %s authentication"),
1510                    ctl->server.authenticate == A_KERBEROS_V5 ? "V" : "IV");
1511         else
1512             printf(_("  Protocol is %s"), showproto(ctl->server.protocol));
1513 #if INET6_ENABLE
1514         if (ctl->server.service)
1515             printf(_(" (using service %s)"), ctl->server.service);
1516         if (ctl->server.netsec)
1517             printf(_(" (using network security options %s)"), ctl->server.netsec);
1518 #else /* INET6_ENABLE */
1519         if (ctl->server.port)
1520             printf(_(" (using port %d)"), ctl->server.port);
1521 #endif /* INET6_ENABLE */
1522         else if (outlevel >= O_VERBOSE)
1523             printf(_(" (using default port)"));
1524         if (ctl->server.uidl && MAILBOX_PROTOCOL(ctl))
1525             printf(_(" (forcing UIDL use)"));
1526         putchar('.');
1527         putchar('\n');
1528         switch (ctl->server.authenticate)
1529         {
1530         case A_ANY:
1531             printf(_("  All available authentication methods will be tried.\n"));
1532             break;
1533         case A_PASSWORD:
1534             printf(_("  Password authentication will be forced.\n"));
1535             break;
1536         case A_NTLM:
1537             printf(_("  NTLM authentication will be forced.\n"));
1538             break;
1539         case A_OTP:
1540             printf(_("  OTP authentication will be forced.\n"));
1541             break;
1542         case A_CRAM_MD5:
1543             printf(_("  CRAM-Md5 authentication will be forced.\n"));
1544             break;
1545         case A_GSSAPI:
1546             printf(_("  GSSAPI authentication will be forced.\n"));
1547             break;
1548         case A_KERBEROS_V4:
1549             printf(_("  Kerberos V4 authentication will be forced.\n"));
1550             break;
1551         case A_KERBEROS_V5:
1552             printf(_("  Kerberos V5 authentication will be forced.\n"));
1553             break;
1554         case A_SSH:
1555             printf(_("  End-to-end encryption assumed.\n"));
1556             break;
1557         }
1558         if (ctl->server.principal != (char *) NULL)
1559             printf(_("  Mail service principal is: %s\n"), ctl->server.principal);
1560 #ifdef  SSL_ENABLE
1561         if (ctl->use_ssl)
1562             printf("  SSL encrypted sessions enabled.\n");
1563 #endif
1564         if (ctl->server.timeout > 0)
1565             printf(_("  Server nonresponse timeout is %d seconds"), ctl->server.timeout);
1566         if (ctl->server.timeout ==  CLIENT_TIMEOUT)
1567             printf(_(" (default).\n"));
1568         else
1569             printf(".\n");
1570
1571         if (MAILBOX_PROTOCOL(ctl)) {
1572                 if (!ctl->mailboxes->id)
1573                     printf(_("  Default mailbox selected.\n"));
1574                 else
1575                 {
1576                     struct idlist *idp;
1577
1578                     printf(_("  Selected mailboxes are:"));
1579                     for (idp = ctl->mailboxes; idp; idp = idp->next)
1580                         printf(" %s", idp->id);
1581                     printf("\n");
1582                 }
1583                 printf(_("  %s messages will be retrieved (--all %s).\n"),
1584                        ctl->fetchall ? _("All") : _("Only new"),
1585                        ctl->fetchall ? "on" : "off");
1586                 printf(_("  Fetched messages %s be kept on the server (--keep %s).\n"),
1587                        ctl->keep ? _("will") : _("will not"),
1588                        ctl->keep ? "on" : "off");
1589                 printf(_("  Old messages %s be flushed before message retrieval (--flush %s).\n"),
1590                        ctl->flush ? _("will") : _("will not"),
1591                        ctl->flush ? "on" : "off");
1592                 printf(_("  Rewrite of server-local addresses is %s (--norewrite %s).\n"),
1593                        ctl->rewrite ? _("enabled") : _("disabled"),
1594                        ctl->rewrite ? "off" : "on");
1595                 printf(_("  Carriage-return stripping is %s (stripcr %s).\n"),
1596                        ctl->stripcr ? _("enabled") : _("disabled"),
1597                        ctl->stripcr ? "on" : "off");
1598                 printf(_("  Carriage-return forcing is %s (forcecr %s).\n"),
1599                        ctl->forcecr ? _("enabled") : _("disabled"),
1600                        ctl->forcecr ? "on" : "off");
1601                 printf(_("  Interpretation of Content-Transfer-Encoding is %s (pass8bits %s).\n"),
1602                        ctl->pass8bits ? _("disabled") : _("enabled"),
1603                        ctl->pass8bits ? "on" : "off");
1604                 printf(_("  MIME decoding is %s (mimedecode %s).\n"),
1605                        ctl->mimedecode ? _("enabled") : _("disabled"),
1606                        ctl->mimedecode ? "on" : "off");
1607                 printf(_("  Idle after poll is %s (idle %s).\n"),
1608                        ctl->idle ? _("enabled") : _("disabled"),
1609                        ctl->idle ? "on" : "off");
1610                 printf(_("  Nonempty Status lines will be %s (dropstatus %s)\n"),
1611                        ctl->dropstatus ? _("discarded") : _("kept"),
1612                        ctl->dropstatus ? "on" : "off");
1613                 printf(_("  Delivered-To lines will be %s (dropdelivered %s)\n"),
1614                        ctl->dropdelivered ? _("discarded") : _("kept"),
1615                        ctl->dropdelivered ? "on" : "off");
1616                 if (NUM_NONZERO(ctl->limit))
1617                 {
1618                     if (NUM_NONZERO(ctl->limit))
1619                         printf(_("  Message size limit is %d octets (--limit %d).\n"), 
1620                                ctl->limit, ctl->limit);
1621                     else if (outlevel >= O_VERBOSE)
1622                         printf(_("  No message size limit (--limit 0).\n"));
1623                     if (run.poll_interval > 0)
1624                         printf(_("  Message size warning interval is %d seconds (--warnings %d).\n"), 
1625                                ctl->warnings, ctl->warnings);
1626                     else if (outlevel >= O_VERBOSE)
1627                         printf(_("  Size warnings on every poll (--warnings 0).\n"));
1628                 }
1629                 if (NUM_NONZERO(ctl->fetchlimit))
1630                     printf(_("  Received-message limit is %d (--fetchlimit %d).\n"),
1631                            ctl->fetchlimit, ctl->fetchlimit);
1632                 else if (outlevel >= O_VERBOSE)
1633                     printf(_("  No received-message limit (--fetchlimit 0).\n"));
1634                 if (NUM_NONZERO(ctl->batchlimit))
1635                     printf(_("  SMTP message batch limit is %d.\n"), ctl->batchlimit);
1636                 else if (outlevel >= O_VERBOSE)
1637                     printf(_("  No SMTP message batch limit (--batchlimit 0).\n"));
1638                 if (MAILBOX_PROTOCOL(ctl))
1639                 {
1640                     if (NUM_NONZERO(ctl->expunge))
1641                         printf(_("  Deletion interval between expunges forced to %d (--expunge %d).\n"), ctl->expunge, ctl->expunge);
1642                     else if (outlevel >= O_VERBOSE)
1643                         printf(_("  No forced expunges (--expunge 0).\n"));
1644                 }
1645         }
1646         if (ctl->bsmtp)
1647             printf(_("  Messages will be appended to %s as BSMTP\n"), visbuf(ctl->bsmtp));
1648         else if (ctl->mda && MAILBOX_PROTOCOL(ctl))
1649             printf(_("  Messages will be delivered with \"%s\".\n"), visbuf(ctl->mda));
1650         else
1651         {
1652             struct idlist *idp;
1653
1654             printf(_("  Messages will be %cMTP-forwarded to:"), ctl->listener);
1655             for (idp = ctl->smtphunt; idp; idp = idp->next)
1656             {
1657                 printf(" %s", idp->id);
1658                 if (!idp->val.status.mark)
1659                     printf(_(" (default)"));
1660             }
1661             printf("\n");
1662             if (ctl->smtpaddress)
1663                 printf(_("  Host part of MAIL FROM line will be %s\n"),
1664                        ctl->smtpaddress);
1665             if (ctl->smtpname)
1666                 printf(_("  Address to be put in RCPT TO lines shipped to SMTP will be %s\n"),
1667                        ctl->smtpname);
1668         }
1669         if (MAILBOX_PROTOCOL(ctl))
1670         {
1671                 if (ctl->antispam != (struct idlist *)NULL)
1672                 {
1673                     struct idlist *idp;
1674
1675                     printf(_("  Recognized listener spam block responses are:"));
1676                     for (idp = ctl->antispam; idp; idp = idp->next)
1677                         printf(" %d", idp->val.status.num);
1678                     printf("\n");
1679                 }
1680                 else if (outlevel >= O_VERBOSE)
1681                     printf(_("  Spam-blocking disabled\n"));
1682         }
1683         if (ctl->preconnect)
1684             printf(_("  Server connection will be brought up with \"%s\".\n"),
1685                    visbuf(ctl->preconnect));
1686         else if (outlevel >= O_VERBOSE)
1687             printf(_("  No pre-connection command.\n"));
1688         if (ctl->postconnect)
1689             printf(_("  Server connection will be taken down with \"%s\".\n"),
1690                    visbuf(ctl->postconnect));
1691         else if (outlevel >= O_VERBOSE)
1692             printf(_("  No post-connection command.\n"));
1693         if (MAILBOX_PROTOCOL(ctl)) {
1694                 if (!ctl->localnames)
1695                     printf(_("  No localnames declared for this host.\n"));
1696                 else
1697                 {
1698                     struct idlist *idp;
1699                     int count = 0;
1700
1701                     for (idp = ctl->localnames; idp; idp = idp->next)
1702                         ++count;
1703
1704                     if (count > 1 || ctl->wildcard)
1705                         printf(_("  Multi-drop mode: "));
1706                     else
1707                         printf(_("  Single-drop mode: "));
1708
1709                     printf(_("%d local name(s) recognized.\n"), count);
1710                     if (outlevel >= O_VERBOSE)
1711                     {
1712                         for (idp = ctl->localnames; idp; idp = idp->next)
1713                             if (idp->val.id2)
1714                                 printf("\t%s -> %s\n", idp->id, idp->val.id2);
1715                             else
1716                                 printf("\t%s\n", idp->id);
1717                         if (ctl->wildcard)
1718                             fputs("\t*\n", stdout);
1719                     }
1720
1721                     if (count > 1 || ctl->wildcard)
1722                     {
1723                         printf(_("  DNS lookup for multidrop addresses is %s.\n"),
1724                                ctl->server.dns ? _("enabled") : _("disabled"));
1725                         if (ctl->server.dns)
1726                         {
1727                             printf(_("  Server aliases will be compared with multidrop addresses by "));
1728                             if (ctl->server.checkalias)
1729                                 printf(_("IP address.\n"));
1730                             else
1731                                 printf(_("name.\n"));
1732                         }
1733                         if (ctl->server.envelope == STRING_DISABLED)
1734                             printf(_("  Envelope-address routing is disabled\n"));
1735                         else
1736                         {
1737                             printf(_("  Envelope header is assumed to be: %s\n"),
1738                                    ctl->server.envelope ? ctl->server.envelope:_("Received"));
1739                             if (ctl->server.envskip > 1 || outlevel >= O_VERBOSE)
1740                                 printf(_("  Number of envelope header to be parsed: %d\n"),
1741                                        ctl->server.envskip);
1742                             if (ctl->server.qvirtual)
1743                                 printf(_("  Prefix %s will be removed from user id\n"),
1744                                        ctl->server.qvirtual);
1745                             else if (outlevel >= O_VERBOSE) 
1746                                 printf(_("  No prefix stripping\n"));
1747                         }
1748
1749                         if (ctl->server.akalist)
1750                         {
1751                             struct idlist *idp;
1752
1753                             printf(_("  Predeclared mailserver aliases:"));
1754                             for (idp = ctl->server.akalist; idp; idp = idp->next)
1755                                 printf(" %s", idp->id);
1756                             putchar('\n');
1757                         }
1758                         if (ctl->server.localdomains)
1759                         {
1760                             struct idlist *idp;
1761
1762                             printf(_("  Local domains:"));
1763                             for (idp = ctl->server.localdomains; idp; idp = idp->next)
1764                                 printf(" %s", idp->id);
1765                             putchar('\n');
1766                         }
1767                     }
1768                 }
1769         }
1770 #if defined(linux) || defined(__FreeBSD__)
1771         if (ctl->server.interface)
1772             printf(_("  Connection must be through interface %s.\n"), ctl->server.interface);
1773         else if (outlevel >= O_VERBOSE)
1774             printf(_("  No interface requirement specified.\n"));
1775         if (ctl->server.monitor)
1776             printf(_("  Polling loop will monitor %s.\n"), ctl->server.monitor);
1777         else if (outlevel >= O_VERBOSE)
1778             printf(_("  No monitor interface specified.\n"));
1779 #endif
1780
1781         if (ctl->server.plugin)
1782             printf(_("  Server connections will be made via plugin %s (--plugin %s).\n"), ctl->server.plugin, ctl->server.plugin);
1783         else if (outlevel >= O_VERBOSE)
1784             printf(_("  No plugin command specified.\n"));
1785         if (ctl->server.plugout)
1786             printf(_("  Listener connections will be made via plugout %s (--plugout %s).\n"), ctl->server.plugout, ctl->server.plugout);
1787         else if (outlevel >= O_VERBOSE)
1788             printf(_("  No plugout command specified.\n"));
1789
1790         if (ctl->server.protocol > P_POP2 && MAILBOX_PROTOCOL(ctl))
1791         {
1792             if (!ctl->oldsaved)
1793                 printf(_("  No UIDs saved from this host.\n"));
1794             else
1795             {
1796                 struct idlist *idp;
1797                 int count = 0;
1798
1799                 for (idp = ctl->oldsaved; idp; idp = idp->next)
1800                     ++count;
1801
1802                 printf(_("  %d UIDs saved.\n"), count);
1803                 if (outlevel >= O_VERBOSE)
1804                     for (idp = ctl->oldsaved; idp; idp = idp->next)
1805                         printf("\t%s\n", idp->id);
1806             }
1807         }
1808
1809         if (ctl->properties)
1810             printf(_("  Pass-through properties \"%s\".\n"),
1811                    visbuf(ctl->properties));
1812     }
1813 }
1814
1815 /* fetchmail.c ends here */