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