]> Pileus Git - ~andy/fetchmail/blobdiff - options.c
Miscellaneous bug fixes.
[~andy/fetchmail] / options.c
index b4966e3c8fa33bb94587b3b22e218685cb29afc9..d9e5aa14855d084029736edaf17e5ac6cf10f7ed 100644 (file)
--- a/options.c
+++ b/options.c
 #define LA_RCFILE      13
 #define LA_IDFILE      14
 #define LA_POSTMASTER  15
-#define LA_PROTOCOL    16
-#define LA_UIDL                17
-#define LA_PORT                18
-#define LA_AUTHENTICATE        19
-#define LA_TIMEOUT     20
-#define LA_ENVELOPE    21
-#define LA_QVIRTUAL     22
-#define LA_USERNAME    23
-#define LA_ALL          24
-#define LA_NOKEEP      25
-#define        LA_KEEP         26
-#define LA_FLUSH        27
-#define LA_NOREWRITE   28
-#define LA_LIMIT       29
-#define LA_WARNINGS    30
-#define LA_FOLDER      31
-#define LA_SMTPHOST    32
-#define LA_SMTPADDR     33
-#define LA_ANTISPAM    34
-#define LA_BATCHLIMIT  35
-#define LA_FETCHLIMIT  36
-#define LA_EXPUNGE     37
-#define LA_MDA         38
-#define LA_BSMTP       39
-#define LA_LMTP                40
-#define LA_PLUGIN      41
-#define LA_PLUGOUT     42
-#define LA_NETSEC      43
-#define LA_INTERFACE    44
-#define LA_MONITOR      45
-#define LA_CONFIGDUMP  46
-#define LA_YYDEBUG     47
+#define LA_NOBOUNCE    16
+#define LA_PROTOCOL    17
+#define LA_UIDL                18
+#define LA_PORT                19
+#define LA_AUTH        20
+#define LA_TIMEOUT     21
+#define LA_ENVELOPE    22
+#define LA_QVIRTUAL     23
+#define LA_USERNAME    24
+#define LA_ALL          25
+#define LA_NOKEEP      26
+#define        LA_KEEP         27
+#define LA_FLUSH        28
+#define LA_NOREWRITE   29
+#define LA_LIMIT       30
+#define LA_WARNINGS    31
+#define LA_FOLDER      32
+#define LA_SMTPHOST    33
+#define LA_SMTPADDR     34
+#define LA_ANTISPAM    35
+#define LA_BATCHLIMIT  36
+#define LA_FETCHLIMIT  37
+#define LA_EXPUNGE     38
+#define LA_MDA         39
+#define LA_BSMTP       40
+#define LA_LMTP                41
+#define LA_PLUGIN      42
+#define LA_PLUGOUT     43
+#define LA_NETSEC      44
+#define LA_INTERFACE    45
+#define LA_MONITOR      46
+#define LA_CONFIGDUMP  47
+#define LA_YYDEBUG     48
+#define LA_SMTPNAME     49
+
+#ifdef SSL_ENABLE
+#define LA_SSL         50
+#define LA_SSLKEY      51
+#define LA_SSLCERT     52
+#define LA_SSLPROTO 53
+#define LA_SSLCERTCK   54
+#define LA_SSLCERTPATH 55
+#define LA_SSLFINGERPRINT      56
+#endif
+
+#define LA_SHOWDOTS    57
+#define LA_PRINCIPAL   58
+
+#define LA_TRACEPOLLS  59
 
 /* options still left: CDgGhHjJoORwWxXYz */
 static const char *shortoptions = 
@@ -86,17 +103,19 @@ static const struct option longoptions[] = {
   {"quit",     no_argument,       (int *) 0, LA_QUIT        },
   {"logfile",  required_argument, (int *) 0, LA_LOGFILE     },
   {"invisible",        no_argument,       (int *) 0, LA_INVISIBLE   },
+  {"showdots", no_argument,       (int *) 0, LA_SHOWDOTS    },
   {"syslog",   no_argument,       (int *) 0, LA_SYSLOG      },
   {"nosyslog", no_argument,       (int *) 0, LA_NOSYSLOG    },
   {"fetchmailrc",required_argument,(int *) 0, LA_RCFILE      },
   {"idfile",   required_argument, (int *) 0, LA_IDFILE      },
   {"postmaster",required_argument, (int *) 0, LA_POSTMASTER  },
+  {"nobounce",  no_argument,       (int *) 0, LA_NOBOUNCE    },
 
   {"protocol", required_argument, (int *) 0, LA_PROTOCOL    },
   {"proto",    required_argument, (int *) 0, LA_PROTOCOL    },
   {"uidl",     no_argument,       (int *) 0, LA_UIDL        },
   {"port",     required_argument, (int *) 0, LA_PORT        },
-  {"auth",     required_argument, (int *) 0, LA_AUTHENTICATE},
+  {"auth",     required_argument, (int *) 0, LA_AUTH},
   {"timeout",  required_argument, (int *) 0, LA_TIMEOUT     },
   {"envelope", required_argument, (int *) 0, LA_ENVELOPE    },
   {"qvirtual", required_argument, (int *) 0, LA_QVIRTUAL    },
@@ -115,6 +134,7 @@ static const struct option longoptions[] = {
   {"folder",   required_argument, (int *) 0, LA_FOLDER      },
   {"smtphost", required_argument, (int *) 0, LA_SMTPHOST    },
   {"smtpaddress", required_argument, (int *) 0, LA_SMTPADDR  },
+  {"smtpname",  required_argument, (int *) 0, LA_SMTPNAME    },
   {"antispam", required_argument, (int *) 0, LA_ANTISPAM    },
   
   {"batchlimit",required_argument, (int *) 0, LA_BATCHLIMIT  },
@@ -124,14 +144,26 @@ static const struct option longoptions[] = {
   {"bsmtp",    required_argument, (int *) 0, LA_BSMTP       },
   {"lmtp",     no_argument,       (int *) 0, LA_LMTP        },
 
-#ifdef INET6
+#ifdef INET6_ENABLE
   {"netsec",   required_argument, (int *) 0, LA_NETSEC      },
-#endif /* INET6 */
+#endif /* INET6_ENABLE */
+
+#ifdef SSL_ENABLE
+  {"ssl",       no_argument,       (int *) 0, LA_SSL        },
+  {"sslkey",    required_argument, (int *) 0, LA_SSLKEY     },
+  {"sslcert",   required_argument, (int *) 0, LA_SSLCERT    },
+  {"sslproto",   required_argument, (int *) 0, LA_SSLPROTO    },
+  {"sslcertck", no_argument,       (int *) 0, LA_SSLCERTCK  },
+  {"sslcertpath",   required_argument, (int *) 0, LA_SSLCERTPATH },
+  {"sslfingerprint",   required_argument, (int *) 0, LA_SSLFINGERPRINT },
+#endif
 
-#if defined(linux) && !INET6
+  {"principal", required_argument, (int *) 0, LA_PRINCIPAL },
+
+#if (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__)
   {"interface",        required_argument, (int *) 0, LA_INTERFACE   },
   {"monitor",  required_argument, (int *) 0, LA_MONITOR     },
-#endif /* defined(linux) && !INET6 */
+#endif /* (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__) */
   {"plugin",   required_argument, (int *) 0, LA_PLUGIN      },
   {"plugout",  required_argument, (int *) 0, LA_PLUGOUT     },
 
@@ -139,6 +171,8 @@ static const struct option longoptions[] = {
 
   {"yydebug",  no_argument,       (int *) 0, LA_YYDEBUG     },
 
+  {"tracepolls",no_argument,       (int *) 0, LA_TRACEPOLLS  },
+
   {(char *) 0,  no_argument,       (int *) 0, 0              }
 };
 
@@ -229,8 +263,9 @@ struct query *ctl;  /* option record to be initialized */
      */
 
     int c;
-    int ocount = 0;     /* count of destinations specified */
-    int errflag = 0;   /* TRUE when a syntax error is detected */
+    int ocount = 0;    /* count of destinations specified */
+    int errflag = 0;   /* TRUE when a syntax error is detected */
+    int helpflag = 0;  /* TRUE when option help was explicitly requested */
     int option_index;
     char *buf, *cp;
 
@@ -282,19 +317,22 @@ struct query *ctl;        /* option record to be initialized */
        case LA_INVISIBLE:
            rctl->invisible = TRUE;
            break;
+       case LA_SHOWDOTS:
+           rctl->showdots = TRUE;
+           break;
        case 'f':
        case LA_RCFILE:
-           rcfile = (char *) xmalloc(strlen(optarg)+1);
-           strcpy(rcfile,optarg);
+           rcfile = (char *) xstrdup(optarg);
            break;
        case 'i':
        case LA_IDFILE:
-           rctl->idfile = (char *) xmalloc(strlen(optarg)+1);
-           strcpy(rctl->idfile,optarg);
+           rctl->idfile = (char *) xstrdup(optarg);
            break;
        case LA_POSTMASTER:
-           rctl->postmaster = (char *) xmalloc(strlen(optarg)+1);
-           strcpy(rctl->postmaster,optarg);
+           rctl->postmaster = (char *) xstrdup(optarg);
+           break;
+       case LA_NOBOUNCE:
+           run.bouncemail = FALSE;
            break;
        case 'p':
        case LA_PROTOCOL:
@@ -319,29 +357,23 @@ struct query *ctl;        /* option record to be initialized */
            else if (strcasecmp(optarg,"kpop") == 0)
            {
                ctl->server.protocol = P_POP3;
-#if INET6
+#if INET6_ENABLE
                ctl->server.service = KPOP_PORT;
-#else /* INET6 */
+#else /* INET6_ENABLE */
                ctl->server.port = KPOP_PORT;
-#endif /* INET6 */
+#endif /* INET6_ENABLE */
 #ifdef KERBEROS_V5
-               ctl->server.preauthenticate =  A_KERBEROS_V5;
+               ctl->server.authenticate =  A_KERBEROS_V5;
 #else
-               ctl->server.preauthenticate =  A_KERBEROS_V4;
+               ctl->server.authenticate =  A_KERBEROS_V4;
 #endif /* KERBEROS_V5 */
            }
            else if (strcasecmp(optarg,"imap") == 0)
                ctl->server.protocol = P_IMAP;
-#ifdef KERBEROS_V4
-           else if (strcasecmp(optarg,"imap-k4") == 0)
-               ctl->server.protocol = P_IMAP_K4;
-#endif /* KERBEROS_V4 */
-#ifdef GSSAPI
-           else if (strcasecmp(optarg, "imap-gss") == 0)
-                ctl->server.protocol = P_IMAP_GSS;
-#endif /* GSSAPI */
            else if (strcasecmp(optarg,"etrn") == 0)
                ctl->server.protocol = P_ETRN;
+           else if (strcasecmp(optarg,"odmr") == 0)
+               ctl->server.protocol = P_ODMR;
            else {
                fprintf(stderr,_("Invalid protocol `%s' specified.\n"), optarg);
                errflag++;
@@ -353,28 +385,41 @@ struct query *ctl;        /* option record to be initialized */
            break;
        case 'P':
        case LA_PORT:
-#if INET6
+#if INET6_ENABLE
            ctl->server.service = optarg;
-#else /* INET6 */
+#else /* INET6_ENABLE */
            ctl->server.port = xatoi(optarg, &errflag);
-#endif /* INET6 */
+#endif /* INET6_ENABLE */
            break;
-       case 'A':
-       case LA_AUTHENTICATE:
+       case LA_AUTH:
            if (strcmp(optarg, "password") == 0)
-               ctl->server.preauthenticate = A_PASSWORD;
+               ctl->server.authenticate = A_PASSWORD;
            else if (strcmp(optarg, "kerberos") == 0)
 #ifdef KERBEROS_V5
-               ctl->server.preauthenticate = A_KERBEROS_V5;
+               ctl->server.authenticate = A_KERBEROS_V5;
 #else
-               ctl->server.preauthenticate = A_KERBEROS_V4;
+               ctl->server.authenticate = A_KERBEROS_V4;
 #endif /* KERBEROS_V5 */
            else if (strcmp(optarg, "kerberos_v5") == 0)
-               ctl->server.preauthenticate = A_KERBEROS_V5;
+               ctl->server.authenticate = A_KERBEROS_V5;
            else if (strcmp(optarg, "kerberos_v4") == 0)
-               ctl->server.preauthenticate = A_KERBEROS_V4;
+               ctl->server.authenticate = A_KERBEROS_V4;
+           else if (strcmp(optarg, "ssh") == 0)
+               ctl->server.authenticate = A_SSH;
+           else if (strcmp(optarg, "otp") == 0)
+               ctl->server.authenticate = A_OTP;
+           else if (strcmp(optarg, "ntlm") == 0)
+               ctl->server.authenticate = A_NTLM;
+           else if (strcmp(optarg, "cram") == 0)
+               ctl->server.authenticate = A_CRAM_MD5;
+           else if (strcmp(optarg, "cram-md5") == 0)
+               ctl->server.authenticate = A_CRAM_MD5;
+           else if (strcmp(optarg, "gssapi") == 0)
+               ctl->server.authenticate = A_GSSAPI;
+           else if (strcmp(optarg, "any") == 0)
+               ctl->server.authenticate = A_ANY;
            else {
-               fprintf(stderr,_("Invalid preauthentication `%s' specified.\n"), optarg);
+               fprintf(stderr,_("Invalid authentication `%s' specified.\n"), optarg);
                errflag++;
            }
            break;
@@ -420,11 +465,11 @@ struct query *ctl;        /* option record to be initialized */
        case 'l':
        case LA_LIMIT:
            c = xatoi(optarg, &errflag);
-           ctl->limit = NUM_VALUE(c);
+           ctl->limit = NUM_VALUE_IN(c);
            break;
        case 'r':
        case LA_FOLDER:
-           xalloca(buf, char *, strlen(optarg));
+           xalloca(buf, char *, strlen(optarg) + 1);
            strcpy(buf, optarg);
            cp = strtok(buf, ",");
            do {
@@ -434,7 +479,7 @@ struct query *ctl;  /* option record to be initialized */
            break;
        case 'S':
        case LA_SMTPHOST:
-           xalloca(buf, char *, strlen(optarg));
+           xalloca(buf, char *, strlen(optarg) + 1);
            strcpy(buf, optarg);
            cp = strtok(buf, ",");
            do {
@@ -447,32 +492,35 @@ struct query *ctl;        /* option record to be initialized */
        case LA_SMTPADDR:
            ctl->smtpaddress = xstrdup(optarg);
            break;
+       case LA_SMTPNAME:
+         ctl->smtpname = xstrdup(optarg);
+         break;
        case 'Z':
        case LA_ANTISPAM:
-           xalloca(buf, char *, strlen(optarg));
+           xalloca(buf, char *, strlen(optarg) + 1);
            strcpy(buf, optarg);
            cp = strtok(buf, ",");
            do {
                struct idlist   *idp = save_str(&ctl->antispam, NULL, 0);;
 
-               idp->val.status.num = atoi(cp);
+               idp->val.status.num = xatoi(cp, &errflag);
            } while
                ((cp = strtok((char *)NULL, ",")));
            break;
        case 'b':
        case LA_BATCHLIMIT:
            c = xatoi(optarg, &errflag);
-           ctl->batchlimit = NUM_VALUE(c);
+           ctl->batchlimit = NUM_VALUE_IN(c);
            break;
        case 'B':
        case LA_FETCHLIMIT:
            c = xatoi(optarg, &errflag);
-           ctl->fetchlimit = NUM_VALUE(c);
+           ctl->fetchlimit = NUM_VALUE_IN(c);
            break;
        case 'e':
        case LA_EXPUNGE:
            c = xatoi(optarg, &errflag);
-           ctl->expunge = NUM_VALUE(c);
+           ctl->expunge = NUM_VALUE_IN(c);
            break;
        case 'm':
        case LA_MDA:
@@ -497,7 +545,7 @@ struct query *ctl;  /* option record to be initialized */
 #endif /* NET_SECURITY */
            break;
 
-#if defined(linux) && !INET6
+#if (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__)
        case 'I':
        case LA_INTERFACE:
            interface_parse(optarg, &ctl->server);
@@ -506,7 +554,7 @@ struct query *ctl;  /* option record to be initialized */
        case LA_MONITOR:
            ctl->server.monitor = xstrdup(optarg);
            break;
-#endif /* defined(linux) && !INET6 */
+#endif /* (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__) */
        case LA_PLUGIN:
            ctl->server.plugin = xstrdup(optarg);
            break;
@@ -514,6 +562,40 @@ struct query *ctl; /* option record to be initialized */
            ctl->server.plugout = xstrdup(optarg);
            break;
 
+#ifdef SSL_ENABLE
+       case LA_SSL:
+           ctl->use_ssl = FLAG_TRUE;
+           break;
+
+       case LA_SSLKEY:
+           ctl->sslkey = xstrdup(optarg);
+           break;
+
+       case LA_SSLCERT:
+           ctl->sslcert = xstrdup(optarg);
+           break;
+
+       case LA_SSLPROTO:
+           ctl->sslproto = xstrdup(optarg);
+           break;
+
+       case LA_SSLCERTCK:
+           ctl->sslcertck = FLAG_TRUE;
+           break;
+
+       case LA_SSLCERTPATH:
+           ctl->sslcertpath = xstrdup(optarg);
+           break;
+
+       case LA_SSLFINGERPRINT:
+           ctl->sslfingerprint = xstrdup(optarg);
+           break;
+#endif
+
+       case LA_PRINCIPAL:
+           ctl->server.principal = xstrdup(optarg);
+           break;
+
        case 'y':
        case LA_YYDEBUG:
            yydebug = TRUE;
@@ -522,7 +604,7 @@ struct query *ctl;  /* option record to be initialized */
        case 'w':
        case LA_WARNINGS:
            c = xatoi(optarg, &errflag);
-           ctl->warnings = NUM_VALUE(c);
+           ctl->warnings = NUM_VALUE_IN(c);
            break;
 
        case LA_CONFIGDUMP:
@@ -537,16 +619,20 @@ struct query *ctl;        /* option record to be initialized */
            rctl->use_syslog = FLAG_FALSE;
            break;
 
+        case LA_TRACEPOLLS:
+            ctl->tracepolls = FLAG_TRUE;
+            break;
+
        case '?':
        case LA_HELP:
        default:
-           errflag++;
+           helpflag++;
        }
     }
 
-    if (errflag || ocount > 1) {
+    if (errflag || ocount > 1 || helpflag) {
        /* squawk if syntax errors were detected */
-#define P(s)   fputs(s, stderr)
+#define P(s)   fputs(s, helpflag ? stdout : stderr)
        P(_("usage:  fetchmail [options] [server ...]\n"));
        P(_("  Options are as follows:\n"));
        P(_("  -?, --help        display this option help\n"));
@@ -564,9 +650,16 @@ struct query *ctl; /* option record to be initialized */
        P(_("  -f, --fetchmailrc specify alternate run control file\n"));
        P(_("  -i, --idfile      specify alternate UIDs file\n"));
        P(_("      --postmaster  specify recipient of last resort\n"));
-#if defined(linux) && !INET6
+       P(_("      --nobounce    redirect bounces from user to postmaster.\n"));
+#if (defined(linux) && !INET6_ENABLE) || defined(__FreeBSD__)
        P(_("  -I, --interface   interface required specification\n"));
        P(_("  -M, --monitor     monitor interface for activity\n"));
+#endif
+#if defined( SSL_ENABLE )
+       P(_("      --ssl         enable ssl encrypted session\n"));
+       P(_("      --sslkey      ssl private key file\n"));
+       P(_("      --sslcert     ssl client certificate\n"));
+       P(_("      --sslproto    force ssl protocol (ssl2/ssl3/tls1)\n"));
 #endif
        P(_("      --plugin      specify external command to open connection\n"));
        P(_("      --plugout     specify external command to open smtp connection\n"));
@@ -574,10 +667,12 @@ struct query *ctl;        /* option record to be initialized */
        P(_("  -p, --protocol    specify retrieval protocol (see man page)\n"));
        P(_("  -U, --uidl        force the use of UIDLs (pop3 only)\n"));
        P(_("  -P, --port        TCP/IP service port to connect to\n"));
-       P(_("  -A, --auth        authentication type (password or kerberos)\n"));
+       P(_("      --auth        authentication type (password/kerberos/ssh)\n"));
        P(_("  -t, --timeout     server nonresponse timeout\n"));
        P(_("  -E, --envelope    envelope address header\n"));
        P(_("  -Q, --qvirtual    prefix to remove from local user id\n"));
+       P(_("      --principal   mail service principal\n"));
+        P(_("      --tracepolls  add poll-tracing information to Received header\n"));
 
        P(_("  -u, --username    specify users's login on server\n"));
        P(_("  -a, --all         retrieve old and new messages\n"));
@@ -586,23 +681,29 @@ struct query *ctl;        /* option record to be initialized */
        P(_("  -F, --flush       delete old messages from server\n"));
        P(_("  -n, --norewrite   don't rewrite header addresses\n"));
        P(_("  -l, --limit       don't fetch messages over given size\n"));
-       P(_("  -w, --warnings   interval between warning mail notification\n"));
+       P(_("  -w, --warnings    interval between warning mail notification\n"));
 
 #if NET_SECURITY
        P(_("  -T, --netsec      set IP security request\n"));
 #endif /* NET_SECURITY */
        P(_("  -S, --smtphost    set SMTP forwarding host\n"));
        P(_("  -D, --smtpaddress set SMTP delivery domain to use\n"));
+       P(_("      --smtpname    set SMTP full name username@domain\n"));
        P(_("  -Z, --antispam,   set antispam response values\n"));
        P(_("  -b, --batchlimit  set batch limit for SMTP connections\n"));
        P(_("  -B, --fetchlimit  set fetch limit for server connections\n"));
        P(_("  -e, --expunge     set max deletions between expunges\n"));
-        P(_("      --mda         set MDA to use for forwarding\n"));
+        P(_("  -m, --mda         set MDA to use for forwarding\n"));
         P(_("      --bsmtp       set output BSMTP file\n"));
         P(_("      --lmtp        use LMTP (RFC2033) for delivery\n"));
        P(_("  -r, --folder      specify remote folder name\n"));
+       P(_("      --showdots    show progress dots even in logfiles\n"));
 #undef P
-       return(-1);
+
+       if (helpflag)
+           exit(PS_SUCCESS);
+       else
+           exit(PS_SYNTAX);
     }
 
     return(optind);