]> Pileus Git - ~andy/fetchmail/blobdiff - fetchmail.c
Merge Sunil Shetye's --limitflush patch.
[~andy/fetchmail] / fetchmail.c
index 2901bb67dd2cc0c3023aca2dd7cbe37f732be643..11ea28b95187c02b4f5123321a8401bdff992689 100644 (file)
 #include <errno.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <sys/time.h>  /* needed for Sun 4.1.2 */
 #ifdef HAVE_SETRLIMIT
 #include <sys/resource.h>
 #endif /* HAVE_SETRLIMIT */
-#include <sys/utsname.h>
+
+#ifdef HAVE_SOCKS
+#include <socks.h> /* SOCKSinit() */
+#endif /* HAVE_SOCKS */
+
+#ifdef HAVE_LANGINFO_H
+#include <langinfo.h>
+#endif
 
 #include "fetchmail.h"
 #include "socket.h"
@@ -63,11 +69,6 @@ char *program_name;      /* the name to prefix error messages with */
 flag configdump;           /* dump control blocks for configurator */
 char *fetchmailhost;       /* either `localhost' or the host's FQDN */
 
-#if NET_SECURITY
-void *request = NULL;
-int requestlen = 0;
-#endif /* NET_SECURITY */
-
 static int querystatus;                /* status of query */
 static int successes;          /* count number of successful polls */
 static int activecount;                /* count number of active entries */
@@ -99,12 +100,13 @@ static void dropprivs(void)
 #endif
 
 #if defined(HAVE_SETLOCALE) && defined(ENABLE_NLS) && defined(HAVE_STRFTIME)
-#include <time.h>
 #include <locale.h>
+/** returns timestamp in current locale,
+ * and resets LC_TIME locale to POSIX. */
 static char *timestamp (void)
 {
     time_t      now;
-    static char buf[60];
+    static char buf[60]; /* RATS: ignore */
 
     time (&now);
     setlocale (LC_TIME, "");
@@ -118,15 +120,16 @@ static char *timestamp (void)
 
 static RETSIGTYPE donothing(int sig) 
 {
-    extern volatile int lastsig;       /* declared in idle.c */
     set_signal_handler(sig, donothing);
     lastsig = sig;
 }
 
+const char *iana_charset;
+
 int main(int argc, char **argv)
 {
     int bkgd = FALSE;
-    int parsestatus, implicitmode = FALSE;
+    int implicitmode = FALSE;
     struct query *ctl;
     netrc_entry *netrc_list;
     char *netrc_file, *tmpbuf;
@@ -142,8 +145,17 @@ int main(int argc, char **argv)
     setlocale (LC_ALL, "");
     bindtextdomain(PACKAGE, LOCALEDIR);
     textdomain(PACKAGE);
+    iana_charset = norm_charmap(nl_langinfo(CODESET)); /* normalize local
+                                                         charset to
+                                                         IANA charset. */
+#else
+    iana_charset = "US-ASCII";
 #endif
 
+    if (getuid() == 0) {
+       report(stderr, GT_("WARNING: Running as root is discouraged.\n"));
+    }
+
     /*
      * Note: because we can't initialize reporting before we  know whether
      * syslog is supposed to be on, this message will go to stdout and
@@ -182,58 +194,57 @@ int main(int argc, char **argv)
     }
 #endif
 
-    if ((parsestatus = parsecmdline(argc,argv, &cmd_run, &cmd_opts)) < 0)
+    if ((parsecmdline(argc,argv, &cmd_run, &cmd_opts)) < 0)
        exit(PS_SYNTAX);
 
     if (versioninfo)
     {
-       printf(GT_("This is fetchmail release %s"), VERSION);
+       const char *features = 
 #ifdef POP2_ENABLE
-       printf("+POP2");
+       "+POP2"
 #endif /* POP2_ENABLE */
 #ifndef POP3_ENABLE
-       printf("-POP3");
+       "-POP3"
 #endif /* POP3_ENABLE */
 #ifndef IMAP_ENABLE
-       printf("-IMAP");
+       "-IMAP"
 #endif /* IMAP_ENABLE */
 #ifdef GSSAPI
-       printf("+IMAP-GSS");
+       "+IMAP-GSS"
 #endif /* GSSAPI */
 #ifdef RPA_ENABLE
-       printf("+RPA");
+       "+RPA"
 #endif /* RPA_ENABLE */
 #ifdef NTLM_ENABLE
-       printf("+NTLM");
+       "+NTLM"
 #endif /* NTLM_ENABLE */
 #ifdef SDPS_ENABLE
-       printf("+SDPS");
+       "+SDPS"
 #endif /* SDPS_ENABLE */
 #ifndef ETRN_ENABLE
-       printf("-ETRN");
+       "-ETRN"
 #endif /* ETRN_ENABLE */
 #ifndef ODMR_ENABLE
-       printf("-ODMR");
+       "-ODMR"
 #endif /* ODMR_ENABLE */
 #ifdef SSL_ENABLE
-       printf("+SSL");
+       "+SSL"
 #endif
-#if OPIE_ENABLE
-       printf("+OPIE");
+#ifdef OPIE_ENABLE
+       "+OPIE"
 #endif /* OPIE_ENABLE */
-#if INET6_ENABLE
-       printf("+INET6");
-#endif /* INET6_ENABLE */
-#if NET_SECURITY
-       printf("+NETSEC");
-#endif /* NET_SECURITY */
+#ifdef HAVE_PKG_hesiod
+       "+HESIOD"
+#endif
 #ifdef HAVE_SOCKS
-       printf("+SOCKS");
+       "+SOCKS"
 #endif /* HAVE_SOCKS */
-#if ENABLE_NLS
-       printf("+NLS");
+#ifdef ENABLE_NLS
+       "+NLS"
 #endif /* ENABLE_NLS */
-       putchar('\n');
+       "\n";
+       printf(GT_("This is fetchmail release %s"), VERSION);
+       fputs(features, stdout);
        fputs("Fallback MDA: ", stdout);
 #ifdef FALLBACK_MDA
        fputs(FALLBACK_MDA, stdout);
@@ -289,6 +300,7 @@ int main(int argc, char **argv)
     /* parse the ~/.netrc file (if present) for future password lookups. */
     netrc_file = prependdir (NETRC_FILE, home);
     netrc_list = parse_netrc(netrc_file);
+    free(netrc_file);
 #undef NETRC_FILE
 
     /* pick up passwords where we can */ 
@@ -387,7 +399,7 @@ int main(int argc, char **argv)
        {
            fprintf(stderr,GT_("fetchmail: %s fetchmail at %d killed.\n"),
                    bkgd ? GT_("background") : GT_("foreground"), pid);
-           lock_release();
+           fm_lock_release();
            if (argc == 2)
                exit(0);
            else
@@ -460,17 +472,15 @@ int main(int argc, char **argv)
                        GT_("fetchmail: can't find a password for %s@%s.\n"),
                        ctl->remotename, ctl->server.pollname);
                return(PS_AUTHFAIL);
-           }
-           else
-           {
-               char* password_prompt = GT_("Enter password for %s@%s: ");
+           } else {
+               const char* password_prompt = GT_("Enter password for %s@%s: ");
+               size_t pplen = strlen(password_prompt) + strlen(ctl->remotename) + strlen(ctl->server.pollname) + 1;
 
-               xalloca(tmpbuf, char *, strlen(password_prompt) +
-                       strlen(ctl->remotename) +
-                       strlen(ctl->server.pollname) + 1);
-               (void) sprintf(tmpbuf, password_prompt,
-                              ctl->remotename, ctl->server.pollname);
+               tmpbuf = xmalloc(pplen);
+               snprintf(tmpbuf, pplen, password_prompt,
+                       ctl->remotename, ctl->server.pollname);
                ctl->password = xstrdup((char *)fm_getpassword(tmpbuf));
+               free(tmpbuf);
            }
        }
     }
@@ -515,9 +525,7 @@ int main(int argc, char **argv)
        }
     }
 
-#ifdef linux
     interface_init();
-#endif /* linux */
 
     /* beyond here we don't want more than one fetchmail running per user */
     umask(0077);
@@ -632,14 +640,14 @@ int main(int argc, char **argv)
                        }
                    }
 
-#if (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__)
+#ifdef CAN_MONITOR
                    /*
                     * Don't do monitoring if we were woken by a signal.
                     * Note that interface_approve() does its own error logging.
                     */
                    if (!interface_approve(&ctl->server, !lastsig))
                        continue;
-#endif /* (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__) */
+#endif /* CAN_MONITOR */
 
                    dofastuidl = 0; /* this is reset in the driver if required */
 
@@ -696,7 +704,7 @@ int main(int argc, char **argv)
                            break;
                        }
 
-#if (defined(linux) && !INET6_ENABLE) || defined (__FreeBSD__)
+#ifdef CAN_MONITOR
                    if (ctl->server.monitor)
                    {
                        /*
@@ -707,7 +715,7 @@ int main(int argc, char **argv)
                        sleep(3);
                        interface_note_activity(&ctl->server);
                    }
-#endif /* (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__) */
+#endif /* CAN_MONITOR */
                }
            }
 
@@ -827,12 +835,7 @@ static void optmerge(struct query *h2, struct query *h1, int force)
 #define FLAG_MERGE(fld) if (force ? !!h1->fld : !h2->fld) h2->fld = h1->fld
     FLAG_MERGE(server.via);
     FLAG_MERGE(server.protocol);
-#if INET6_ENABLE
     FLAG_MERGE(server.service);
-    FLAG_MERGE(server.netsec);
-#else /* INET6_ENABLE */
-    FLAG_MERGE(server.port);
-#endif /* INET6_ENABLE */
     FLAG_MERGE(server.interval);
     FLAG_MERGE(server.authenticate);
     FLAG_MERGE(server.timeout);
@@ -845,14 +848,15 @@ static void optmerge(struct query *h2, struct query *h1, int force)
     FLAG_MERGE(server.uidl);
     FLAG_MERGE(server.principal);
 
-#if defined(linux) || defined(__FreeBSD__)
+#ifdef CAN_MONITOR
     FLAG_MERGE(server.interface);
-    FLAG_MERGE(server.monitor);
     FLAG_MERGE(server.interface_pair);
-#endif /* linux || defined(__FreeBSD__) */
+    FLAG_MERGE(server.monitor);
+#endif
 
     FLAG_MERGE(server.plugin);
     FLAG_MERGE(server.plugout);
+    FLAG_MERGE(server.tracepolls);
 
     FLAG_MERGE(wildcard);
     FLAG_MERGE(remotename);
@@ -867,6 +871,7 @@ static void optmerge(struct query *h2, struct query *h1, int force)
 
     FLAG_MERGE(keep);
     FLAG_MERGE(flush);
+    FLAG_MERGE(limitflush);
     FLAG_MERGE(fetchall);
     FLAG_MERGE(rewrite);
     FLAG_MERGE(forcecr);
@@ -893,7 +898,6 @@ static void optmerge(struct query *h2, struct query *h1, int force)
 #endif
     FLAG_MERGE(expunge);
 
-    FLAG_MERGE(tracepolls);
     FLAG_MERGE(properties);
 #undef FLAG_MERGE
 }
@@ -927,7 +931,7 @@ static int load_params(int argc, char **argv, int optind)
     p = strrchr (rcfile, '/');
     if (p && (p - rcfile) < sizeof (rcfiledir)) {
        *p = 0;                 /* replace '/' by '0' */
-       strcpy (rcfiledir, rcfile);
+       strlcpy (rcfiledir, rcfile, sizeof(rcfiledir));
        *p = '/';               /* restore '/' */
        if (!rcfiledir[0])      /* "/.fetchmailrc" case */
            strcpy (rcfiledir, "/");
@@ -1045,16 +1049,25 @@ static int load_params(int argc, char **argv, int optind)
      * If we're using Kerberos for authentication, we need 
      * the FQDN in order to generate capability keys.
      */
-    if (strcmp(fetchmailhost, "localhost") == 0)
-       for (ctl = querylist; ctl; ctl = ctl->next)
-           if (ctl->active && 
+    for (ctl = querylist; ctl; ctl = ctl->next)
+       if (ctl->active && 
                (ctl->server.protocol==P_ETRN || ctl->server.protocol==P_ODMR
                 || ctl->server.authenticate == A_KERBEROS_V4
                 || ctl->server.authenticate == A_KERBEROS_V5))
-           {
-               fetchmailhost = host_fqdn();
-               break;
-           }
+       {
+           fetchmailhost = host_fqdn();
+           break;
+       }
+
+    /* this code enables flags to be turned off */
+#define DEFAULT(flag, dflt)    if (flag == FLAG_TRUE)\
+                                       flag = TRUE;\
+                               else if (flag == FLAG_FALSE)\
+                                       flag = FALSE;\
+                               else\
+                                       flag = (dflt)
+    /* one global gets treated specially */
+    DEFAULT(run.showdots, run.poll_interval==0 || nodetach);
 
     /* merge in wired defaults, do sanity checks and prepare internal fields */
     for (ctl = querylist; ctl; ctl = ctl->next)
@@ -1085,16 +1098,10 @@ static int load_params(int argc, char **argv, int optind)
 
        if (configdump || ctl->active )
        {
-           /* this code enables flags to be turned off */
-#define DEFAULT(flag, dflt)    if (flag == FLAG_TRUE)\
-                                       flag = TRUE;\
-                               else if (flag == FLAG_FALSE)\
-                                       flag = FALSE;\
-                               else\
-                                       flag = (dflt)
            DEFAULT(ctl->keep, FALSE);
            DEFAULT(ctl->fetchall, FALSE);
            DEFAULT(ctl->flush, FALSE);
+           DEFAULT(ctl->limitflush, FALSE);
            DEFAULT(ctl->rewrite, TRUE);
            DEFAULT(ctl->stripcr, (ctl->mda != (char *)NULL)); 
            DEFAULT(ctl->forcecr, FALSE);
@@ -1105,20 +1112,20 @@ static int load_params(int argc, char **argv, int optind)
            DEFAULT(ctl->idle, FALSE);
            DEFAULT(ctl->server.dns, TRUE);
            DEFAULT(ctl->server.uidl, FALSE);
-#ifdef SSL_ENABLE
            DEFAULT(ctl->use_ssl, FALSE);
            DEFAULT(ctl->sslcertck, FALSE);
-#endif
            DEFAULT(ctl->server.checkalias, FALSE);
 #ifndef SSL_ENABLE
+           /*
+            * XXX FIXME: do we need this check or can we rely on the .y
+            * parser handling this?
+            */
            if (ctl->use_ssl) 
            {
                report(stderr, GT_("SSL support is not compiled in.\n"));
                exit(PS_SYNTAX);
            }
 #endif /* SSL_ENABLE */
-           /* one global gets treated specially */
-           DEFAULT(run.showdots, run.poll_interval==0 || nodetach);
 #undef DEFAULT
 
            /*
@@ -1141,38 +1148,51 @@ static int load_params(int argc, char **argv, int optind)
            if (!ctl->localnames)       /* for local delivery via SMTP */
                save_str_pair(&ctl->localnames, user, NULL);
 
-#if !defined(HAVE_GETHOSTBYNAME) || !defined(HAVE_RES_SEARCH)
+#ifndef HAVE_RES_SEARCH
            /* can't handle multidrop mailboxes unless we can do DNS lookups */
-           if (ctl->localnames && ctl->localnames->next && ctl->server.dns)
+           if (MULTIDROP(ctl) && ctl->server.dns)
            {
                ctl->server.dns = FALSE;
                report(stderr, GT_("fetchmail: warning: no DNS available to check multidrop fetches from %s\n"), ctl->server.pollname);
            }
-#endif /* !HAVE_GETHOSTBYNAME || !HAVE_RES_SEARCH */
+#endif /* !HAVE_RES_SEARCH */
+
+           /*
+            * can't handle multidrop mailboxes without "envelope"
+            * option, this causes truckloads full of support complaints
+            * "all mail forwarded to postmaster"
+            */
+           if (MULTIDROP(ctl) && !ctl->server.envelope)
+           {
+               report(stderr, GT_("warning: multidrop for %s requires envelope option!\n"), ctl->server.pollname);
+               report(stderr, GT_("warning: Do not ask for support if all mail goes to postmaster!\n"));
+           }
 
            /* if no folders were specified, set up the null one as default */
            if (!ctl->mailboxes)
                save_str(&ctl->mailboxes, (char *)NULL, 0);
 
            /* maybe user overrode timeout on command line? */
-           if (ctl->server.timeout == -1)      
+           if (ctl->server.timeout == -1)
                ctl->server.timeout = CLIENT_TIMEOUT;
 
-#if !INET6_ENABLE
            /* sanity checks */
-           if (ctl->server.port < 0)
-           {
-               (void) fprintf(stderr,
-                              GT_("%s configuration invalid, port number cannot be negative\n"),
-                              ctl->server.pollname);
-               exit(PS_SYNTAX);
-           }
-           if (ctl->server.protocol == P_RPOP && ctl->server.port >= 1024)
-           {
-               (void) fprintf(stderr,
-                              GT_("%s configuration invalid, RPOP requires a privileged port\n"),
-                              ctl->server.pollname);
-               exit(PS_SYNTAX);
+           if (ctl->server.service) {
+               int port = servport(ctl->server.service);
+               if (port < 0)
+               {
+                   (void) fprintf(stderr,
+                                  GT_("%s configuration invalid, port number cannot be negative\n"),
+                                  ctl->server.pollname);
+                   exit(PS_SYNTAX);
+               }
+               if (ctl->server.protocol == P_RPOP && port >= 1024)
+               {
+                   (void) fprintf(stderr,
+                                  GT_("%s configuration invalid, RPOP requires a privileged port\n"),
+                                  ctl->server.pollname);
+                   exit(PS_SYNTAX);
+               }
            }
            if (ctl->listener == LMTP_MODE)
            {
@@ -1183,7 +1203,8 @@ static int load_params(int argc, char **argv, int optind)
                    char        *cp;
 
                    if (!(cp = strrchr(idp->id, '/')) ||
-                               (atoi(++cp) == SMTP_PORT))
+                           ++cp, (0 == strcmp(cp, SMTP_PORT))
+                               || servport(cp) == SMTP_PORT_NUM)
                    {
                        (void) fprintf(stderr,
                                       GT_("%s configuration invalid, LMTP can't use default SMTP port\n"),
@@ -1192,10 +1213,9 @@ static int load_params(int argc, char **argv, int optind)
                    }
                }
            }
-#endif /* !INET6_ENABLE */
 
            /*
-            * "I beg to you, have mercy on the week minds like myself."
+            * "I beg to you, have mercy on the we[a]k minds like myself."
             * wrote Pehr Anderson.  Your petition is granted.
             */
            if (ctl->fetchall && ctl->keep && run.poll_interval && !nodetach)
@@ -1300,7 +1320,7 @@ static RETSIGTYPE terminate_run(int sig)
          memset(ctl->password, '\0', strlen(ctl->password));
 
 #if !defined(HAVE_ATEXIT) && !defined(HAVE_ON_EXIT)
-    lock_release();
+    fm_lock_release();
 #endif
 
     if (activecount == 0)
@@ -1392,12 +1412,7 @@ static int query_host(struct query *ctl)
        report(stderr, GT_("ETRN support is not configured.\n"));
        st = PS_PROTOCOL;
 #else
-#ifdef HAVE_GETHOSTBYNAME
        st = doETRN(ctl);
-#else
-       report(stderr, GT_("Cannot support ETRN without gethostbyname(2).\n"));
-       st = PS_PROTOCOL;
-#endif /* HAVE_GETHOSTBYNAME */
        break;
 #endif /* ETRN_ENABLE */
     case P_ODMR:
@@ -1405,12 +1420,7 @@ static int query_host(struct query *ctl)
        report(stderr, GT_("ODMR support is not configured.\n"));
        st = PS_PROTOCOL;
 #else
-#ifdef HAVE_GETHOSTBYNAME
        st = doODMR(ctl);
-#else
-       report(stderr, GT_("Cannot support ODMR without gethostbyname(2).\n"));
-       st = PS_PROTOCOL;
-#endif /* HAVE_GETHOSTBYNAME */
 #endif /* ODMR_ENABLE */
        break;
     default:
@@ -1475,13 +1485,15 @@ static void dump_params (struct runctl *runp,
            printf(GT_("  Mail will be retrieved via %s\n"), ctl->server.via);
 
        if (ctl->server.interval)
-           printf(GT_("  Poll of this server will occur every %d intervals.\n"),
-                  ctl->server.interval);
+           printf(ngettext("  Poll of this server will occur every %d interval.\n",
+                           "  Poll of this server will occur every %d intervals.\n",
+                           ctl->server.interval), ctl->server.interval);
        if (ctl->server.truename)
            printf(GT_("  True name of server is %s.\n"), ctl->server.truename);
        if (ctl->server.skip || outlevel >= O_VERBOSE)
-           printf(GT_("  This host %s be queried when no host is specified.\n"),
-                  ctl->server.skip ? GT_("will not") : GT_("will"));
+           printf(ctl->server.skip
+                  ? GT_("  This host will not be queried when no host is specified.\n")
+                  : GT_("  This host will be queried when no host is specified.\n"));
        if (!NO_PASSWORD(ctl))
        {
            if (!ctl->password)
@@ -1501,26 +1513,15 @@ static void dump_params (struct runctl *runp,
        }
 
        if (ctl->server.protocol == P_POP3 
-#if INET6_ENABLE
            && ctl->server.service && !strcmp(ctl->server.service, KPOP_PORT)
-#else /* INET6_ENABLE */
-           && ctl->server.port == KPOP_PORT
-#endif /* INET6_ENABLE */
            && (ctl->server.authenticate == A_KERBEROS_V4 ||
                ctl->server.authenticate == A_KERBEROS_V5))
            printf(GT_("  Protocol is KPOP with Kerberos %s authentication"),
                   ctl->server.authenticate == A_KERBEROS_V5 ? "V" : "IV");
        else
            printf(GT_("  Protocol is %s"), showproto(ctl->server.protocol));
-#if INET6_ENABLE
        if (ctl->server.service)
            printf(GT_(" (using service %s)"), ctl->server.service);
-       if (ctl->server.netsec)
-           printf(GT_(" (using network security options %s)"), ctl->server.netsec);
-#else /* INET6_ENABLE */
-       if (ctl->server.port)
-           printf(GT_(" (using port %d)"), ctl->server.port);
-#endif /* INET6_ENABLE */
        else if (outlevel >= O_VERBOSE)
            printf(GT_(" (using default port)"));
        if (ctl->server.uidl && MAILBOX_PROTOCOL(ctl))
@@ -1589,42 +1590,45 @@ static void dump_params (struct runctl *runp,
 
                printf(GT_("  Selected mailboxes are:"));
                for (idp = ctl->mailboxes; idp; idp = idp->next)
-                   printf(" %s", idp->id);
+                   printf(" %s", (char *)idp->id);
                printf("\n");
            }
-           printf(GT_("  %s messages will be retrieved (--all %s).\n"),
-                  ctl->fetchall ? GT_("All") : GT_("Only new"),
-                  ctl->fetchall ? "on" : "off");
-           printf(GT_("  Fetched messages %s be kept on the server (--keep %s).\n"),
-                  ctl->keep ? GT_("will") : GT_("will not"),
-                  ctl->keep ? "on" : "off");
-           printf(GT_("  Old messages %s be flushed before message retrieval (--flush %s).\n"),
-                  ctl->flush ? GT_("will") : GT_("will not"),
-                  ctl->flush ? "on" : "off");
-           printf(GT_("  Rewrite of server-local addresses is %s (--norewrite %s).\n"),
-                  ctl->rewrite ? GT_("enabled") : GT_("disabled"),
-                  ctl->rewrite ? "off" : "on");
-           printf(GT_("  Carriage-return stripping is %s (stripcr %s).\n"),
-                  ctl->stripcr ? GT_("enabled") : GT_("disabled"),
-                  ctl->stripcr ? "on" : "off");
-           printf(GT_("  Carriage-return forcing is %s (forcecr %s).\n"),
-                  ctl->forcecr ? GT_("enabled") : GT_("disabled"),
-                  ctl->forcecr ? "on" : "off");
-           printf(GT_("  Interpretation of Content-Transfer-Encoding is %s (pass8bits %s).\n"),
-                  ctl->pass8bits ? GT_("disabled") : GT_("enabled"),
-                  ctl->pass8bits ? "on" : "off");
-           printf(GT_("  MIME decoding is %s (mimedecode %s).\n"),
-                  ctl->mimedecode ? GT_("enabled") : GT_("disabled"),
-                  ctl->mimedecode ? "on" : "off");
-           printf(GT_("  Idle after poll is %s (idle %s).\n"),
-                  ctl->idle ? GT_("enabled") : GT_("disabled"),
-                  ctl->idle ? "on" : "off");
-           printf(GT_("  Nonempty Status lines will be %s (dropstatus %s)\n"),
-                  ctl->dropstatus ? GT_("discarded") : GT_("kept"),
-                  ctl->dropstatus ? "on" : "off");
-           printf(GT_("  Delivered-To lines will be %s (dropdelivered %s)\n"),
-                  ctl->dropdelivered ? GT_("discarded") : GT_("kept"),
-                  ctl->dropdelivered ? "on" : "off");
+           printf(ctl->fetchall
+                  ? GT_("  All messages will be retrieved (--all on).\n")
+                  : GT_("  Only new messages will be retrieved (--all off).\n"));
+           printf(ctl->keep
+                  ? GT_("  Fetched messages will be kept on the server (--keep on).\n")
+                  : GT_("  Fetched messages will not be kept on the server (--keep off).\n"));
+           printf(ctl->flush
+                  ? GT_("  Old messages will be flushed before message retrieval (--flush on).\n")
+                  : GT_("  Old messages will not be flushed before message retrieval (--flush off).\n"));
+           printf(ctl->limitflush
+                  ? GT_("  Oversized messages will be flushed before message retrieval (--limitflush on).\n")
+                  : GT_("  Oversized messages will not be flushed before message retrieval (--limitflush off).\n"));
+           printf(ctl->rewrite
+                  ? GT_("  Rewrite of server-local addresses is enabled (--norewrite off).\n")
+                  : GT_("  Rewrite of server-local addresses is disabled (--norewrite on).\n"));
+           printf(ctl->stripcr
+                  ? GT_("  Carriage-return stripping is enabled (stripcr on).\n")
+                  : GT_("  Carriage-return stripping is disabled (stripcr off).\n"));
+           printf(ctl->forcecr
+                  ? GT_("  Carriage-return forcing is enabled (forcecr on).\n")
+                  : GT_("  Carriage-return forcing is disabled (forcecr off).\n"));
+           printf(ctl->pass8bits
+                  ? GT_("  Interpretation of Content-Transfer-Encoding is disabled (pass8bits on).\n")
+                  : GT_("  Interpretation of Content-Transfer-Encoding is enabled (pass8bits off).\n"));
+           printf(ctl->mimedecode
+                  ? GT_("  MIME decoding is enabled (mimedecode on).\n")
+                  : GT_("  MIME decoding is disabled (mimedecode off).\n"));
+           printf(ctl->idle
+                  ? GT_("  Idle after poll is enabled (idle on).\n")
+                  : GT_("  Idle after poll is disabled (idle off).\n"));
+           printf(ctl->dropstatus
+                  ? GT_("  Nonempty Status lines will be discarded (dropstatus on)\n")
+                  : GT_("  Nonempty Status lines will be kept (dropstatus off)\n"));
+           printf(ctl->dropdelivered
+                  ? GT_("  Delivered-To lines will be discarded (dropdelivered on)\n")
+                  : GT_("  Delivered-To lines will be kept (dropdelivered off)\n"));
            if (NUM_NONZERO(ctl->limit))
            {
                if (NUM_NONZERO(ctl->limit))
@@ -1676,7 +1680,7 @@ static void dump_params (struct runctl *runp,
            printf(GT_("  Domains for which mail will be fetched are:"));
            for (idp = ctl->domainlist; idp; idp = idp->next)
            {
-               printf(" %s", idp->id);
+               printf(" %s", (char *)idp->id);
                if (!idp->val.status.mark)
                    printf(GT_(" (default)"));
            }
@@ -1696,7 +1700,7 @@ static void dump_params (struct runctl *runp,
                       ctl->listener);
                for (idp = ctl->smtphunt; idp; idp = idp->next)
                {
-                   printf(" %s", idp->id);
+                   printf(" %s", (char *)idp->id);
                    if (!idp->val.status.mark)
                        printf(GT_(" (default)"));
                }
@@ -1749,29 +1753,29 @@ static void dump_params (struct runctl *runp,
                    else
                        printf(GT_("  Single-drop mode: "));
 
-                   printf(GT_("%d local name(s) recognized.\n"), count);
+                   printf(ngettext("%d local name recognized.\n", "%d local names recognized.\n", count), count);
                    if (outlevel >= O_VERBOSE)
                    {
                        for (idp = ctl->localnames; idp; idp = idp->next)
                            if (idp->val.id2)
-                               printf("\t%s -> %s\n", idp->id, idp->val.id2);
+                               printf("\t%s -> %s\n", (char *)idp->id, (char *)idp->val.id2);
                            else
-                               printf("\t%s\n", idp->id);
+                               printf("\t%s\n", (char *)idp->id);
                        if (ctl->wildcard)
                            fputs("\t*\n", stdout);
                    }
 
                    if (count > 1 || ctl->wildcard)
                    {
-                       printf(GT_("  DNS lookup for multidrop addresses is %s.\n"),
-                              ctl->server.dns ? GT_("enabled") : GT_("disabled"));
+                       printf(ctl->server.dns
+                              ? GT_("  DNS lookup for multidrop addresses is enabled.\n")
+                              : GT_("  DNS lookup for multidrop addresses is disabled.\n"));
                        if (ctl->server.dns)
                        {
-                           printf(GT_("  Server aliases will be compared with multidrop addresses by "));
                            if (ctl->server.checkalias)
-                               printf(GT_("IP address.\n"));
+                               printf(GT_("  Server aliases will be compared with multidrop addresses by IP address.\n"));
                            else
-                               printf(GT_("name.\n"));
+                               printf(GT_("  Server aliases will be compared with multidrop addresses by name.\n"));
                        }
                        if (ctl->server.envelope == STRING_DISABLED)
                            printf(GT_("  Envelope-address routing is disabled\n"));
@@ -1795,7 +1799,7 @@ static void dump_params (struct runctl *runp,
 
                            printf(GT_("  Predeclared mailserver aliases:"));
                            for (idp = ctl->server.akalist; idp; idp = idp->next)
-                               printf(" %s", idp->id);
+                               printf(" %s", (char *)idp->id);
                            putchar('\n');
                        }
                        if (ctl->server.localdomains)
@@ -1804,13 +1808,13 @@ static void dump_params (struct runctl *runp,
 
                            printf(GT_("  Local domains:"));
                            for (idp = ctl->server.localdomains; idp; idp = idp->next)
-                               printf(" %s", idp->id);
+                               printf(" %s", (char *)idp->id);
                            putchar('\n');
                        }
                    }
                }
        }
-#if defined(linux) || defined(__FreeBSD__)
+#ifdef CAN_MONITOR
        if (ctl->server.interface)
            printf(GT_("  Connection must be through interface %s.\n"), ctl->server.interface);
        else if (outlevel >= O_VERBOSE)
@@ -1845,11 +1849,11 @@ static void dump_params (struct runctl *runp,
                printf(GT_("  %d UIDs saved.\n"), count);
                if (outlevel >= O_VERBOSE)
                    for (idp = ctl->oldsaved; idp; idp = idp->next)
-                       printf("\t%s\n", idp->id);
+                       printf("\t%s\n", (char *)idp->id);
            }
        }
 
-        if (ctl->tracepolls)
+        if (ctl->server.tracepolls)
             printf(GT_("  Poll trace information will be added to the Received header.\n"));
         else if (outlevel >= O_VERBOSE)
             printf(GT_("  No poll trace information will be added to the Received header.\n.\n"));