]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - backend/ipp.c
Merge changes from 1.4svn-r7067.
[thirdparty/cups.git] / backend / ipp.c
index 468f69dd2f39161b05e960ca2c075f5225d43597..95e598252a67e8b2a4b3a66f8842ddae96eff1be 100644 (file)
@@ -1,32 +1,25 @@
 /*
- * "$Id: ipp.c 4926 2006-01-13 03:12:13Z mike $"
+ * "$Id: ipp.c 7018 2007-10-10 22:14:03Z mike $"
  *
  *   IPP backend for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 2007 by Apple Inc.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
  *   "LICENSE" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  *
  *   This file is subject to the Apple OS-Developed Software exception.
  *
  * Contents:
  *
  *   main()                 - Send a file to the printer or server.
+ *   cancel_job()           - Cancel a print job.
  *   check_printer_state()  - Check the printer state...
+ *   compress_files()       - Compress print files...
  *   password_cb()          - Disable the password prompt for
  *                            cupsDoFileRequest().
  *   report_printer_state() - Report the printer state.
 #include <cups/backend.h>
 #include <cups/cups.h>
 #include <cups/language.h>
+#include <cups/i18n.h>
 #include <cups/string.h>
 #include <signal.h>
 #include <sys/wait.h>
 
-
 /*
  * Globals...
  */
 
 static char    *password = NULL;       /* Password for device URI */
+static int     password_tries = 0;     /* Password tries */
 #ifdef __APPLE__
 static char    pstmpname[1024] = "";   /* Temporary PostScript file name */
 #endif /* __APPLE__ */
 static char    tmpfilename[1024] = ""; /* Temporary spool file name */
+static int     job_cancelled = 0;      /* Job cancelled? */
 
 
 /*
  * Local functions...
  */
 
-void           check_printer_state(http_t *http, const char *uri,
+static void    cancel_job(http_t *http, const char *uri, int id,
+                          const char *resource, const char *user, int version);
+static void    check_printer_state(http_t *http, const char *uri,
                                    const char *resource, const char *user,
-                                   int version);
-const char     *password_cb(const char *);
-int            report_printer_state(ipp_t *ipp);
+                                   int version, int job_id);
+#ifdef HAVE_LIBZ
+static void    compress_files(int num_files, char **files);
+#endif /* HAVE_LIBZ */
+static const char *password_cb(const char *);
+static int     report_printer_state(ipp_t *ipp, int job_id);
 
 #ifdef __APPLE__
-int            run_pictwps_filter(char **argv, const char *filename);
+static int     run_pictwps_filter(char **argv, const char *filename);
 #endif /* __APPLE__ */
 static void    sigterm_handler(int sig);
 
@@ -89,21 +89,25 @@ static void sigterm_handler(int sig);
  */
 
 int                                    /* O - Exit status */
-main(int  argc,                                /* I - Number of command-line arguments (6 or 7) */
+main(int  argc,                                /* I - Number of command-line args */
      char *argv[])                     /* I - Command-line arguments */
 {
   int          i;                      /* Looping var */
+  int          send_options;           /* Send job options? */
   int          num_options;            /* Number of printer options */
   cups_option_t        *options;               /* Printer options */
   char         method[255],            /* Method in URI */
                hostname[1024],         /* Hostname */
                username[255],          /* Username info */
                resource[1024],         /* Resource info (printer name) */
+               addrname[256],          /* Address name */
                *optptr,                /* Pointer to URI options */
-               name[255],              /* Name of option */
-               value[255],             /* Value of option */
-               *ptr;                   /* Pointer into name or value */
-  char         *filename;              /* File to print */
+               *name,                  /* Name of option */
+               *value,                 /* Value of option */
+               sep;                    /* Separator character */
+  int          num_files;              /* Number of files to print */
+  char         **files,                /* Files to print */
+               *filename;              /* Pointer to single filename */
   int          port;                   /* Port number (not used) */
   char         uri[HTTP_MAX_URI];      /* Updated URI without user/pass */
   ipp_status_t ipp_status;             /* Status of IPP request */
@@ -111,29 +115,36 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
   ipp_t                *request,               /* IPP request */
                *response,              /* IPP response */
                *supported;             /* get-printer-attributes response */
-  int          waitjob,                /* Wait for job complete? */
+  time_t       start_time;             /* Time of first connect */
+  int          recoverable;            /* Recoverable error shown? */
+  int          contimeout;             /* Connection timeout */
+  int          delay;                  /* Delay for retries... */
+  int          compression,            /* Do compression of the job data? */
+               waitjob,                /* Wait for job complete? */
                waitprinter;            /* Wait for printer ready? */
   ipp_attribute_t *job_id_attr;                /* job-id attribute */
   int          job_id;                 /* job-id value */
-  ipp_attribute_t *job_sheets;         /* job-media-sheets-completed attribute */
-  ipp_attribute_t *job_state;          /* job-state attribute */
-  ipp_attribute_t *copies_sup;         /* copies-supported attribute */
-  ipp_attribute_t *format_sup;         /* document-format-supported attribute */
+  ipp_attribute_t *job_sheets;         /* job-media-sheets-completed */
+  ipp_attribute_t *job_state;          /* job-state */
+  ipp_attribute_t *copies_sup;         /* copies-supported */
+  ipp_attribute_t *format_sup;         /* document-format-supported */
   ipp_attribute_t *printer_state;      /* printer-state attribute */
-  ipp_attribute_t *printer_accepting;  /* printer-is-accepting-jobs attribute */
-  int          copies;                 /* Number of copies remaining */
-  const char   *content_type;          /* CONTENT_TYPE environment variable */
+  ipp_attribute_t *printer_accepting;  /* printer-is-accepting-jobs */
+  int          copies,                 /* Number of copies for job */
+               copies_remaining;       /* Number of copies remaining */
+  const char   *content_type,          /* CONTENT_TYPE environment variable */
+               *final_content_type;    /* FINAL_CONTENT_TYPE environment var */
 #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
   struct sigaction action;             /* Actions for POSIX signals */
 #endif /* HAVE_SIGACTION && !HAVE_SIGSET */
   int          version;                /* IPP version */
-  int          reasons;                /* Number of printer-state-reasons shown */
   static const char * const pattrs[] =
                {                       /* Printer attributes we want */
                  "copies-supported",
                  "document-format-supported",
                  "printer-is-accepting-jobs",
                  "printer-state",
+                 "printer-state-message",
                  "printer-state-reasons",
                };
   static const char * const jattrs[] =
@@ -183,97 +194,65 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
     else
       s = argv[0];
 
-    printf("network %s \"Unknown\" \"Internet Printing Protocol (%s)\"\n", s, s);
+    printf("network %s \"Unknown\" \"Internet Printing Protocol (%s)\"\n",
+           s, s);
     return (CUPS_BACKEND_OK);
   }
-  else if (argc < 6 || argc > 7)
+  else if (argc < 6)
   {
-    fprintf(stderr, "Usage: %s job-id user title copies options [file]\n",
-            argv[0]);
+    _cupsLangPrintf(stderr,
+                    _("Usage: %s job-id user title copies options [file]\n"),
+                   argv[0]);
     return (CUPS_BACKEND_STOP);
   }
 
  /*
-  * Get the content type...
+  * Get the (final) content type...
   */
 
-  if (argc > 6)
-    content_type = getenv("CONTENT_TYPE");
-  else
-    content_type = "application/vnd.cups-raw";
-
-  if (content_type == NULL)
+  if ((content_type = getenv("CONTENT_TYPE")) == NULL)
     content_type = "application/octet-stream";
 
+  if ((final_content_type = getenv("FINAL_CONTENT_TYPE")) == NULL)
+  {
+    final_content_type = content_type;
+
+    if (!strncmp(final_content_type, "printer/", 8))
+      final_content_type = "application/vnd.cups-raw";
+  }
+
  /*
   * Extract the hostname and printer name from the URI...
   */
 
-  if (getenv("DEVICE_URI") != NULL)
-    /* authentication information is only available in the env var */
-    httpSeparateURI(getenv("DEVICE_URI"), method, sizeof(method),
-                    username, sizeof(username),
-                    hostname, sizeof(hostname), &port,
-                   resource, sizeof(resource));
-  else if (strchr(argv[0], ':') != NULL)
-    httpSeparateURI(argv[0], method, sizeof(method), username, sizeof(username),
-                    hostname, sizeof(hostname), &port,
-                   resource, sizeof(resource));
-  else
+  if (httpSeparateURI(HTTP_URI_CODING_ALL, cupsBackendDeviceURI(argv),
+                      method, sizeof(method), username, sizeof(username),
+                     hostname, sizeof(hostname), &port,
+                     resource, sizeof(resource)) < HTTP_URI_OK)
   {
-    fputs("ERROR: Missing device URI on command-line and no DEVICE_URI environment variable!\n",
-          stderr);
+    _cupsLangPuts(stderr,
+                  _("ERROR: Missing device URI on command-line and no "
+                   "DEVICE_URI environment variable!\n"));
     return (CUPS_BACKEND_STOP);
   }
 
+  if (!port)
+    port = IPP_PORT;                   /* Default to port 631 */
+
   if (!strcmp(method, "https"))
     cupsSetEncryption(HTTP_ENCRYPT_ALWAYS);
-
- /*
-  * If we have 7 arguments, print the file named on the command-line.
-  * Otherwise, copy stdin to a temporary file and print the temporary
-  * file.
-  */
-
-  if (argc == 6)
-  {
-   /*
-    * Copy stdin to a temporary file...
-    */
-
-    int  fd;           /* Temporary file */
-    char buffer[8192]; /* Buffer for copying */
-    int  bytes;                /* Number of bytes read */
-
-
-    if ((fd = cupsTempFd(tmpfilename, sizeof(tmpfilename))) < 0)
-    {
-      perror("ERROR: unable to create temporary file");
-      return (CUPS_BACKEND_FAILED);
-    }
-
-    while ((bytes = fread(buffer, 1, sizeof(buffer), stdin)) > 0)
-      if (write(fd, buffer, bytes) < bytes)
-      {
-        perror("ERROR: unable to write to temporary file");
-       close(fd);
-       unlink(tmpfilename);
-       return (CUPS_BACKEND_FAILED);
-      }
-
-    close(fd);
-    filename = tmpfilename;
-  }
   else
-    filename = argv[6];
+    cupsSetEncryption(HTTP_ENCRYPT_IF_REQUESTED);
 
  /*
   * See if there are any options...
   */
 
+  compression = 0;
   version     = 1;
   waitjob     = 1;
   waitprinter = 1;
+  contimeout  = 7 * 24 * 60 * 60;
 
   if ((optptr = strchr(resource, '?')) != NULL)
   {
@@ -294,29 +273,30 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
       * Get the name...
       */
 
-      for (ptr = name; *optptr && *optptr != '=';)
-        if (ptr < (name + sizeof(name) - 1))
-          *ptr++ = *optptr++;
-      *ptr = '\0';
+      name = optptr;
+
+      while (*optptr && *optptr != '=' && *optptr != '+' && *optptr != '&')
+        optptr ++;
+
+      if ((sep = *optptr) != '\0')
+        *optptr++ = '\0';
 
-      if (*optptr == '=')
+      if (sep == '=')
       {
        /*
         * Get the value...
        */
 
-        optptr ++;
-
-       for (ptr = value; *optptr && *optptr != '+' && *optptr != '&';)
-          if (ptr < (value + sizeof(value) - 1))
-            *ptr++ = *optptr++;
-       *ptr = '\0';
+        value = optptr;
 
-       if (*optptr == '+')
+       while (*optptr && *optptr != '+' && *optptr != '&')
          optptr ++;
+
+        if (*optptr)
+         *optptr++ = '\0';
       }
       else
-        value[0] = '\0';
+        value = (char *)"";
 
      /*
       * Process the option...
@@ -358,8 +338,9 @@ main(int  argc,                             /* I - Number of command-line arguments (6 or 7) */
          cupsSetEncryption(HTTP_ENCRYPT_IF_REQUESTED);
        else
        {
-         fprintf(stderr, "ERROR: Unknown encryption option value \"%s\"!\n",
-                 value);
+         _cupsLangPrintf(stderr,
+                         _("ERROR: Unknown encryption option value \"%s\"!\n"),
+                         value);
         }
       }
       else if (!strcasecmp(name, "version"))
@@ -370,22 +351,112 @@ main(int  argc,                          /* I - Number of command-line arguments (6 or 7) */
          version = 1;
        else
        {
-         fprintf(stderr, "ERROR: Unknown version option value \"%s\"!\n",
-                 value);
+         _cupsLangPrintf(stderr,
+                         _("ERROR: Unknown version option value \"%s\"!\n"),
+                         value);
        }
       }
+#ifdef HAVE_LIBZ
+      else if (!strcasecmp(name, "compression"))
+      {
+        compression = !strcasecmp(value, "true") ||
+                     !strcasecmp(value, "yes") ||
+                     !strcasecmp(value, "on") ||
+                     !strcasecmp(value, "gzip");
+      }
+#endif /* HAVE_LIBZ */
+      else if (!strcasecmp(name, "contimeout"))
+      {
+       /*
+        * Set the connection timeout...
+       */
+
+       if (atoi(value) > 0)
+         contimeout = atoi(value);
+      }
       else
       {
        /*
         * Unknown option...
        */
 
-       fprintf(stderr, "ERROR: Unknown option \"%s\" with value \"%s\"!\n",
-               name, value);
+       _cupsLangPrintf(stderr,
+                       _("ERROR: Unknown option \"%s\" with value \"%s\"!\n"),
+                       name, value);
       }
     }
   }
 
+ /*
+  * If we have 7 arguments, print the file named on the command-line.
+  * Otherwise, copy stdin to a temporary file and print the temporary
+  * file.
+  */
+
+  if (argc == 6)
+  {
+   /*
+    * Copy stdin to a temporary file...
+    */
+
+    int                fd;                     /* File descriptor */
+    cups_file_t        *fp;                    /* Temporary file */
+    char       buffer[8192];           /* Buffer for copying */
+    int                bytes;                  /* Number of bytes read */
+
+
+    if ((fd = cupsTempFd(tmpfilename, sizeof(tmpfilename))) < 0)
+    {
+      perror("ERROR: unable to create temporary file");
+      return (CUPS_BACKEND_FAILED);
+    }
+
+    if ((fp = cupsFileOpenFd(fd, compression ? "w9" : "w")) == NULL)
+    {
+      perror("ERROR: unable to open temporary file");
+      close(fd);
+      unlink(tmpfilename);
+      return (CUPS_BACKEND_FAILED);
+    }
+
+    while ((bytes = fread(buffer, 1, sizeof(buffer), stdin)) > 0)
+      if (cupsFileWrite(fp, buffer, bytes) < bytes)
+      {
+        perror("ERROR: unable to write to temporary file");
+       cupsFileClose(fp);
+       unlink(tmpfilename);
+       return (CUPS_BACKEND_FAILED);
+      }
+
+    cupsFileClose(fp);
+
+   /*
+    * Point to the single file from stdin...
+    */
+
+    filename     = tmpfilename;
+    num_files    = 1;
+    files        = &filename;
+    send_options = 0;
+  }
+  else
+  {
+   /*
+    * Point to the files on the command-line...
+    */
+
+    num_files    = argc - 6;
+    files        = argv + 6;
+    send_options = 1;
+
+#ifdef HAVE_LIBZ
+    if (compression)
+      compress_files(num_files, files);
+#endif /* HAVE_LIBZ */
+  }
+
+  fprintf(stderr, "DEBUG: %d files to send in job...\n", num_files);
+
  /*
   * Set the authentication info, if any...
   */
@@ -406,72 +477,37 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
   else if (!getuid())
   {
    /*
-    * Try loading authentication information from the a##### file.
+    * Try loading authentication information from the environment.
     */
 
-    const char *request_root;          /* CUPS_REQUESTROOT env var */
-    char       afilename[1024],        /* a##### filename */
-               aline[1024];            /* Line from file */
-    FILE       *fp;                    /* File pointer */
-
+    const char *ptr = getenv("AUTH_USERNAME");
 
-    if ((request_root = getenv("CUPS_REQUESTROOT")) != NULL)
-    {
-     /*
-      * Try opening authentication cache file...
-      */
-
-      snprintf(afilename, sizeof(afilename), "%s/a%05d", request_root,
-               atoi(argv[1]));
-      if ((fp = fopen(afilename, "r")) != NULL)
-      {
-       /*
-        * Read username...
-       */
-
-        if (fgets(aline, sizeof(aline), fp))
-       {
-        /*
-         * Decode username...
-         */
+    if (ptr)
+      cupsSetUser(ptr);
 
-          i = sizeof(username);
-         httpDecode64_2(username, &i, aline);
-
-         /*
-         * Read password...
-         */
-
-         if (fgets(aline, sizeof(aline), fp))
-         {
-          /*
-           * Decode password...
-           */
-
-           i = sizeof(password);
-           httpDecode64_2(password, &i, aline);
-         }
-       }
-
-       /*
-        * Close the file...
-       */
-
-        fclose(fp);
-      }
-    }
+    password = getenv("AUTH_PASSWORD");
   }
 
  /*
   * Try connecting to the remote server...
   */
 
+  delay       = 5;
+  recoverable = 0;
+  start_time  = time(NULL);
+
+  fputs("STATE: +connecting-to-device\n", stderr);
+
   do
   {
-    fprintf(stderr, "INFO: Connecting to %s on port %d...\n", hostname, port);
+    _cupsLangPrintf(stderr, _("INFO: Connecting to %s on port %d...\n"),
+                   hostname, port);
 
     if ((http = httpConnectEncrypt(hostname, port, cupsEncryption())) == NULL)
     {
+      if (job_cancelled)
+       break;
+
       if (getenv("CLASS") != NULL)
       {
        /*
@@ -481,8 +517,9 @@ main(int  argc,                             /* I - Number of command-line arguments (6 or 7) */
        * available printer in the class.
        */
 
-        fprintf(stderr, "INFO: Unable to connect to %s, queuing on next printer in class...\n",
-               hostname);
+        _cupsLangPuts(stderr,
+                     _("INFO: Unable to contact printer, queuing on next "
+                       "printer in class...\n"));
 
         if (argc == 6 || strcmp(filename, argv[6]))
          unlink(filename);
@@ -499,26 +536,69 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
       if (errno == ECONNREFUSED || errno == EHOSTDOWN ||
           errno == EHOSTUNREACH)
       {
-       fprintf(stderr, "INFO: Network host \'%s\' is busy; will retry in 30 seconds...\n",
-                hostname);
-       sleep(30);
+        if (contimeout && (time(NULL) - start_time) > contimeout)
+       {
+         _cupsLangPuts(stderr, _("ERROR: Printer not responding!\n"));
+         return (CUPS_BACKEND_FAILED);
+       }
+
+        recoverable = 1;
+
+       _cupsLangPrintf(stderr,
+                       _("WARNING: recoverable: Network host \'%s\' is busy; "
+                         "will retry in %d seconds...\n"),
+                       hostname, delay);
+
+       sleep(delay);
+
+       if (delay < 30)
+         delay += 5;
       }
       else if (h_errno)
       {
-        fprintf(stderr, "INFO: Unable to lookup host \'%s\' - %s\n",
-               hostname, hstrerror(h_errno));
-       sleep(30);
+       _cupsLangPrintf(stderr, _("ERROR: Unable to locate printer \'%s\'!\n"),
+                       hostname);
+       return (CUPS_BACKEND_STOP);
       }
       else
       {
-       perror("ERROR: Unable to connect to IPP host");
+        recoverable = 1;
+
+        fprintf(stderr, "DEBUG: Connection error: %s\n", strerror(errno));
+       _cupsLangPuts(stderr,
+                     _("ERROR: recoverable: Unable to connect to printer; will "
+                       "retry in 30 seconds...\n"));
        sleep(30);
       }
+
+      if (job_cancelled)
+       break;
     }
   }
   while (http == NULL);
 
-  fprintf(stderr, "INFO: Connected to %s...\n", hostname);
+  if (job_cancelled)
+  {
+    if (argc == 6 || strcmp(filename, argv[6]))
+      unlink(filename);
+
+    return (CUPS_BACKEND_FAILED);
+  }
+
+  fputs("STATE: -connecting-to-device\n", stderr);
+  _cupsLangPrintf(stderr, _("INFO: Connected to %s...\n"), hostname);
+
+#ifdef AF_INET6
+  if (http->hostaddr->addr.sa_family == AF_INET6)
+    fprintf(stderr, "DEBUG: Connected to [%s]:%d (IPv6)...\n",
+           httpAddrString(http->hostaddr, addrname, sizeof(addrname)),
+           ntohs(http->hostaddr->ipv6.sin6_port));
+  else
+#endif /* AF_INET6 */
+    if (http->hostaddr->addr.sa_family == AF_INET)
+      fprintf(stderr, "DEBUG: Connected to %s:%d (IPv4)...\n",
+             httpAddrString(http->hostaddr, addrname, sizeof(addrname)),
+             ntohs(http->hostaddr->ipv4.sin_port));
 
  /*
   * Build a URI for the printer and fill the standard IPP attributes for
@@ -570,9 +650,25 @@ main(int  argc,                            /* I - Number of command-line arguments (6 or 7) */
       if (ipp_status == IPP_PRINTER_BUSY ||
          ipp_status == IPP_SERVICE_UNAVAILABLE)
       {
-       fputs("INFO: Printer busy; will retry in 10 seconds...\n", stderr);
-        report_printer_state(supported);
-       sleep(10);
+        if (contimeout && (time(NULL) - start_time) > contimeout)
+       {
+         _cupsLangPuts(stderr, _("ERROR: Printer not responding!\n"));
+         return (CUPS_BACKEND_FAILED);
+       }
+
+        recoverable = 1;
+
+       _cupsLangPrintf(stderr,
+                       _("WARNING: recoverable: Network host \'%s\' is busy; "
+                         "will retry in %d seconds...\n"),
+                       hostname, delay);
+
+        report_printer_state(supported, 0);
+
+       sleep(delay);
+
+       if (delay < 30)
+         delay += 5;
       }
       else if ((ipp_status == IPP_BAD_REQUEST ||
                ipp_status == IPP_VERSION_NOT_SUPPORTED) && version == 1)
@@ -581,13 +677,15 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
        * Switch to IPP/1.0...
        */
 
-       fputs("INFO: Printer does not support IPP/1.1, trying IPP/1.0...\n", stderr);
+       _cupsLangPuts(stderr,
+                     _("INFO: Printer does not support IPP/1.1, trying "
+                       "IPP/1.0...\n"));
        version = 0;
        httpReconnect(http);
       }
       else if (ipp_status == IPP_NOT_FOUND)
       {
-        fputs("ERROR: Destination printer does not exist!\n", stderr);
+        _cupsLangPuts(stderr, _("ERROR: Destination printer does not exist!\n"));
 
        if (supported)
           ippDelete(supported);
@@ -596,8 +694,9 @@ main(int  argc,                             /* I - Number of command-line arguments (6 or 7) */
       }
       else
       {
-       fprintf(stderr, "ERROR: Unable to get printer status (%s)!\n",
-               ippErrorString(ipp_status));
+       _cupsLangPrintf(stderr,
+                       _("ERROR: Unable to get printer status (%s)!\n"),
+                       cupsLastErrorString());
         sleep(10);
       }
 
@@ -630,7 +729,7 @@ main(int  argc,                             /* I - Number of command-line arguments (6 or 7) */
                format_sup->values[i].string.text);
     }
 
-    report_printer_state(supported);
+    report_printer_state(supported, 0);
   }
   while (ipp_status > IPP_OK_CONFLICT);
 
@@ -647,7 +746,8 @@ main(int  argc,                             /* I - Number of command-line arguments (6 or 7) */
                                         IPP_TAG_BOOLEAN);
 
     if (printer_state == NULL ||
-       (printer_state->values[0].integer > IPP_PRINTER_PROCESSING && waitprinter) ||
+       (printer_state->values[0].integer > IPP_PRINTER_PROCESSING &&
+        waitprinter) ||
        printer_accepting == NULL ||
        !printer_accepting->values[0].boolean)
     {
@@ -658,8 +758,9 @@ main(int  argc,                             /* I - Number of command-line arguments (6 or 7) */
       * available printer in the class.
       */
 
-      fprintf(stderr, "INFO: Unable to queue job on %s, queuing on next printer in class...\n",
-             hostname);
+      _cupsLangPuts(stderr,
+                    _("INFO: Unable to contact printer, queuing on next "
+                     "printer in class...\n"));
 
       ippDelete(supported);
       httpClose(http);
@@ -677,28 +778,54 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
     }
   }
 
+  if (recoverable)
+  {
+   /*
+    * If we've shown a recoverable error make sure the printer proxies
+    * have a chance to see the recovered message. Not pretty but
+    * necessary for now...
+    */
+
+    fputs("INFO: recovered: \n", stderr);
+    sleep(5);
+  }
+
  /*
   * See if the printer supports multiple copies...
   */
 
+  copies = atoi(argv[4]);
+
   if (copies_sup || argc < 7)
-    copies = 1;
+  {
+    copies_remaining = 1;
+
+    if (argc < 7)
+      copies = 1;
+  }
   else
-    copies = atoi(argv[4]);
+    copies_remaining = copies;
 
  /*
   * Then issue the print-job request...
   */
 
-  reasons = 0;
+  job_id  = 0;
 
-  while (copies > 0)
+  while (copies_remaining > 0)
   {
    /*
     * Build the IPP request...
     */
 
-    request = ippNewRequest(IPP_PRINT_JOB);
+    if (job_cancelled)
+      break;
+
+    if (num_files > 1)
+      request = ippNewRequest(IPP_CREATE_JOB);
+    else
+      request = ippNewRequest(IPP_PRINT_JOB);
+
     request->request.op.version[1] = version;
 
     ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
@@ -712,12 +839,24 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
 
     fprintf(stderr, "DEBUG: requesting-user-name = \"%s\"\n", argv[2]);
 
-    if (argv[3][0])
+   /*
+    * Only add a "job-name" attribute if the remote server supports
+    * copy generation - some IPP implementations like HP's don't seem
+    * to like UTF-8 job names (STR #1837)...
+    */
+
+    if (argv[3][0] && copies_sup)
       ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "job-name", NULL,
                   argv[3]);
 
     fprintf(stderr, "DEBUG: job-name = \"%s\"\n", argv[3]);
 
+#ifdef HAVE_LIBZ
+    if (compression)
+      ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
+                   "compression", NULL, "gzip");
+#endif /* HAVE_LIBZ */
+
    /*
     * Handle options on the command-line...
     */
@@ -726,12 +865,12 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
     num_options = cupsParseOptions(argv[5], 0, &options);
 
 #ifdef __APPLE__
-    if (content_type != NULL && strcasecmp(content_type, "application/pictwps") == 0)
+    if (!strcasecmp(content_type, "application/pictwps") && num_files == 1)
     {
       if (format_sup != NULL)
       {
        for (i = 0; i < format_sup->num_values; i ++)
-         if (strcasecmp(content_type, format_sup->values[i].string.text) == 0)
+         if (!strcasecmp(content_type, format_sup->values[i].string.text))
            break;
       }
 
@@ -748,39 +887,44 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
         filename = pstmpname;
 
        /*
-       * Change the MIME type to application/postscript...
+       * Change the MIME type to application/postscript and change the
+       * number of copies to 1...
        */
 
-       content_type = "application/postscript";
+       final_content_type = "application/postscript";
+       copies             = 1;
+       copies_remaining   = 1;
+        send_options       = 0;
       }
     }
 #endif /* __APPLE__ */
 
-    if (content_type != NULL && format_sup != NULL)
+    if (format_sup != NULL)
     {
       for (i = 0; i < format_sup->num_values; i ++)
-        if (strcasecmp(content_type, format_sup->values[i].string.text) == 0)
+        if (!strcasecmp(final_content_type, format_sup->values[i].string.text))
           break;
 
       if (i < format_sup->num_values)
-        num_options = cupsAddOption("document-format", content_type,
-                                   num_options, &options);
+        ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_MIMETYPE,
+                    "document-format", NULL, final_content_type);
     }
 
-    if (copies_sup)
+    if (copies_sup && version > 0 && send_options)
     {
      /*
       * Only send options if the destination printer supports the copies
-      * attribute.  This is a hack for the HP JetDirect implementation of
-      * IPP, which does not accept extension attributes and incorrectly
-      * reports a client-error-bad-request error instead of the
-      * successful-ok-unsupported-attributes status.  In short, at least
-      * some HP implementations of IPP are non-compliant.
+      * attribute and IPP/1.1.  This is a hack for the HP and Lexmark
+      * implementations of IPP, which do not accept extension attributes
+      * and incorrectly report a client-error-bad-request error instead of
+      * the successful-ok-unsupported-attributes status.  In short, at least
+      * some HP and Lexmark implementations of IPP are non-compliant.
       */
 
       cupsEncodeOptions(request, num_options, options);
+
       ippAddInteger(request, IPP_TAG_JOB, IPP_TAG_INTEGER, "copies",
-                    atoi(argv[4]));
+                    copies);
     }
 
     cupsFreeOptions(num_options, options);
@@ -788,7 +932,7 @@ main(int  argc,                             /* I - Number of command-line arguments (6 or 7) */
    /*
     * If copies aren't supported, then we are likely dealing with an HP
     * JetDirect.  The HP IPP implementation seems to close the connection
-    * after every request (that is, it does *not* implement HTTP Keep-
+    * after every request that is, it does *not* implement HTTP Keep-
     * Alive, which is REQUIRED by HTTP/1.1...
     */
 
@@ -799,50 +943,111 @@ main(int  argc,                          /* I - Number of command-line arguments (6 or 7) */
     * Do the request...
     */
 
-    if ((response = cupsDoFileRequest(http, request, resource, filename)) == NULL)
-      ipp_status = cupsLastError();
+    if (num_files > 1)
+      response = cupsDoRequest(http, request, resource);
     else
-      ipp_status = response->request.status.status_code;
+      response = cupsDoFileRequest(http, request, resource, files[0]);
+
+    ipp_status = cupsLastError();
 
     if (ipp_status > IPP_OK_CONFLICT)
     {
       job_id = 0;
 
+      if (job_cancelled)
+        break;
+
       if (ipp_status == IPP_SERVICE_UNAVAILABLE ||
          ipp_status == IPP_PRINTER_BUSY)
       {
-       fputs("INFO: Printer is busy; retrying print job...\n", stderr);
+        _cupsLangPuts(stderr,
+                     _("INFO: Printer busy; will retry in 10 seconds...\n"));
        sleep(10);
       }
+      else if ((ipp_status == IPP_BAD_REQUEST ||
+               ipp_status == IPP_VERSION_NOT_SUPPORTED) && version == 1)
+      {
+       /*
+       * Switch to IPP/1.0...
+       */
+
+       _cupsLangPuts(stderr,
+                     _("INFO: Printer does not support IPP/1.1, trying "
+                       "IPP/1.0...\n"));
+       version = 0;
+       httpReconnect(http);
+      }
       else
-        fprintf(stderr, "ERROR: Print file was not accepted (%s)!\n",
-               ippErrorString(ipp_status));
+        _cupsLangPrintf(stderr, _("ERROR: Print file was not accepted (%s)!\n"),
+                       cupsLastErrorString());
     }
     else if ((job_id_attr = ippFindAttribute(response, "job-id",
                                              IPP_TAG_INTEGER)) == NULL)
     {
-      fputs("NOTICE: Print file accepted - job ID unknown.\n", stderr);
+      _cupsLangPuts(stderr,
+                    _("NOTICE: Print file accepted - job ID unknown.\n"));
       job_id = 0;
     }
     else
     {
       job_id = job_id_attr->values[0].integer;
-      fprintf(stderr, "NOTICE: Print file accepted - job ID %d.\n", job_id);
+      _cupsLangPrintf(stderr, _("NOTICE: Print file accepted - job ID %d.\n"),
+                      job_id);
     }
 
-    if (response)
-      ippDelete(response);
+    ippDelete(response);
+
+    if (job_cancelled)
+      break;
+
+    if (job_id && num_files > 1)
+    {
+      for (i = 0; i < num_files; i ++)
+      {
+       request = ippNewRequest(IPP_SEND_DOCUMENT);
+
+       request->request.op.version[1] = version;
+
+       ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
+                    NULL, uri);
+
+        ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id",
+                     job_id);
+
+       if (argv[2][0])
+         ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
+                       "requesting-user-name", NULL, argv[2]);
+
+        if ((i + 1) == num_files)
+         ippAddBoolean(request, IPP_TAG_OPERATION, "last-document", 1);
+
+        ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_MIMETYPE,
+                    "document-format", NULL, content_type);
+
+        ippDelete(cupsDoFileRequest(http, request, resource, files[i]));
+
+       if (cupsLastError() > IPP_OK_CONFLICT)
+       {
+         ipp_status = cupsLastError();
+
+         _cupsLangPrintf(stderr,
+                         _("ERROR: Unable to add file %d to job: %s\n"),
+                         job_id, cupsLastErrorString());
+         break;
+       }
+      }
+    }
 
     if (ipp_status <= IPP_OK_CONFLICT && argc > 6)
     {
       fprintf(stderr, "PAGE: 1 %d\n", copies_sup ? atoi(argv[4]) : 1);
-      copies --;
+      copies_remaining --;
     }
     else if (ipp_status == IPP_SERVICE_UNAVAILABLE ||
             ipp_status == IPP_PRINTER_BUSY)
       break;
     else
-      copies --;
+      copies_remaining --;
 
    /*
     * Wait for the job to complete...
@@ -851,9 +1056,9 @@ main(int  argc,                            /* I - Number of command-line arguments (6 or 7) */
     if (!job_id || !waitjob)
       continue;
 
-    fputs("INFO: Waiting for job to complete...\n", stderr);
+    _cupsLangPuts(stderr, _("INFO: Waiting for job to complete...\n"));
 
-    for (;;)
+    for (delay = 1; !job_cancelled;)
     {
      /*
       * Build an IPP_GET_JOB_ATTRIBUTES request...
@@ -883,10 +1088,8 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
       if (!copies_sup)
        httpReconnect(http);
 
-      if ((response = cupsDoRequest(http, request, resource)) == NULL)
-       ipp_status = cupsLastError();
-      else
-       ipp_status = response->request.status.status_code;
+      response   = cupsDoRequest(http, request, resource);
+      ipp_status = cupsLastError();
 
       if (ipp_status == IPP_NOT_FOUND)
       {
@@ -905,16 +1108,16 @@ main(int  argc,                          /* I - Number of command-line arguments (6 or 7) */
        if (ipp_status != IPP_SERVICE_UNAVAILABLE &&
            ipp_status != IPP_PRINTER_BUSY)
        {
-         if (response)
-           ippDelete(response);
+         ippDelete(response);
 
-          fprintf(stderr, "ERROR: Unable to get job %d attributes (%s)!\n",
-                 job_id, ippErrorString(ipp_status));
+          _cupsLangPrintf(stderr,
+                         _("ERROR: Unable to get job %d attributes (%s)!\n"),
+                         job_id, cupsLastErrorString());
           break;
        }
       }
 
-      if (response != NULL)
+      if (response)
       {
        if ((job_state = ippFindAttribute(response, "job-state",
                                          IPP_TAG_ENUM)) != NULL)
@@ -923,13 +1126,13 @@ main(int  argc,                          /* I - Number of command-line arguments (6 or 7) */
           * Stop polling if the job is finished or pending-held...
          */
 
-          if (job_state->values[0].integer > IPP_JOB_PROCESSING ||
-             job_state->values[0].integer == IPP_JOB_HELD)
+          if (job_state->values[0].integer > IPP_JOB_STOPPED)
          {
            if ((job_sheets = ippFindAttribute(response, 
                                               "job-media-sheets-completed",
                                               IPP_TAG_INTEGER)) != NULL)
-             fprintf(stderr, "PAGE: total %d\n", job_sheets->values[0].integer);
+             fprintf(stderr, "PAGE: total %d\n",
+                     job_sheets->values[0].integer);
 
            ippDelete(response);
            break;
@@ -937,31 +1140,38 @@ main(int  argc,                          /* I - Number of command-line arguments (6 or 7) */
        }
       }
 
-      if (response)
-       ippDelete(response);
+      ippDelete(response);
 
      /*
       * Check the printer state and report it if necessary...
       */
 
-      check_printer_state(http, uri, resource, argv[2], version);
+      check_printer_state(http, uri, resource, argv[2], version, job_id);
 
      /*
-      * Wait 10 seconds before polling again...
+      * Wait 1-10 seconds before polling again...
       */
 
-      sleep(10);
+      sleep(delay);
+
+      delay ++;
+      if (delay > 10)
+        delay = 1;
     }
   }
 
  /*
-  * Check the printer state and report it if necessary...
+  * Cancel the job as needed...
   */
 
-/*      if (!copies_sup)
-       httpReconnect(http);*/
+  if (job_cancelled && job_id)
+    cancel_job(http, uri, job_id, resource, argv[2], version);
+
+ /*
+  * Check the printer state and report it if necessary...
+  */
 
-  check_printer_state(http, uri, resource, argv[2], version);
+  check_printer_state(http, uri, resource, argv[2], version, job_id);
 
  /*
   * Free memory...
@@ -969,8 +1179,7 @@ main(int  argc,                            /* I - Number of command-line arguments (6 or 7) */
 
   httpClose(http);
 
-  if (supported)
-    ippDelete(supported);
+  ippDelete(supported);
 
  /*
   * Remove the temporary file(s) if necessary...
@@ -979,6 +1188,14 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
   if (tmpfilename[0])
     unlink(tmpfilename);
 
+#ifdef HAVE_LIBZ
+  if (compression)
+  {
+    for (i = 0; i < num_files; i ++)
+      unlink(files[i]);
+  }
+#endif /* HAVE_LIBZ */
+
 #ifdef __APPLE__
   if (pstmpname[0])
     unlink(pstmpname);
@@ -988,7 +1205,60 @@ main(int  argc,                           /* I - Number of command-line arguments (6 or 7) */
   * Return the queue status...
   */
 
-  return (ipp_status > IPP_OK_CONFLICT ? CUPS_BACKEND_FAILED : CUPS_BACKEND_OK);
+  if (ipp_status == IPP_NOT_AUTHORIZED)
+  {
+   /*
+    * Authorization failures here mean that we need Kerberos.  Username +
+    * password authentication is handled in the password_cb function.
+    */
+
+    fputs("ATTR: auth-info-required=negotiate\n", stderr);
+    return (CUPS_BACKEND_AUTH_REQUIRED);
+  }
+  else if (ipp_status > IPP_OK_CONFLICT)
+    return (CUPS_BACKEND_FAILED);
+  else
+    return (CUPS_BACKEND_OK);
+}
+
+
+/*
+ * 'cancel_job()' - Cancel a print job.
+ */
+
+static void
+cancel_job(http_t     *http,           /* I - HTTP connection */
+           const char *uri,            /* I - printer-uri */
+          int        id,               /* I - job-id */
+          const char *resource,        /* I - Resource path */
+          const char *user,            /* I - requesting-user-name */
+          int        version)          /* I - IPP version */
+{
+  ipp_t        *request;                       /* Cancel-Job request */
+
+
+  _cupsLangPuts(stderr, _("INFO: Canceling print job...\n"));
+
+  request = ippNewRequest(IPP_CANCEL_JOB);
+  request->request.op.version[1] = version;
+
+  ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
+               NULL, uri);
+  ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "job-id", id);
+
+  if (user && user[0])
+    ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
+                 "requesting-user-name", NULL, user);
+
+ /*
+  * Do the request...
+  */
+
+  ippDelete(cupsDoRequest(http, request, resource));
+
+  if (cupsLastError() > IPP_OK_CONFLICT)
+    _cupsLangPrintf(stderr, _("ERROR: Unable to cancel job %d: %s\n"), id,
+                   cupsLastErrorString());
 }
 
 
@@ -996,16 +1266,22 @@ main(int  argc,                          /* I - Number of command-line arguments (6 or 7) */
  * 'check_printer_state()' - Check the printer state...
  */
 
-void
+static void
 check_printer_state(
     http_t      *http,                 /* I - HTTP connection */
     const char  *uri,                  /* I - Printer URI */
     const char  *resource,             /* I - Resource path */
     const char  *user,                 /* I - Username, if any */
-    int         version)               /* I - IPP version */
+    int         version,               /* I - IPP version */
+    int         job_id)                        /* I - Current job ID */
 {
   ipp_t        *request,                       /* IPP request */
        *response;                      /* IPP response */
+  static const char * const attrs[] =  /* Attributes we want */
+  {
+    "printer-state-message",
+    "printer-state-reasons"
+  };
 
 
  /*
@@ -1022,8 +1298,9 @@ check_printer_state(
     ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
                  "requesting-user-name", NULL, user);
 
-  ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
-               "requested-attributes", NULL, "printer-state-reasons");
+  ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
+                "requested-attributes",
+               (int)(sizeof(attrs) / sizeof(attrs[0])), NULL, attrs);
 
  /*
   * Do the request...
@@ -1031,23 +1308,105 @@ check_printer_state(
 
   if ((response = cupsDoRequest(http, request, resource)) != NULL)
   {
-    report_printer_state(response);
+    report_printer_state(response, job_id);
     ippDelete(response);
   }
 }
 
 
+#ifdef HAVE_LIBZ
+/*
+ * 'compress_files()' - Compress print files...
+ */
+
+static void
+compress_files(int  num_files,         /* I - Number of files */
+               char **files)           /* I - Files */
+{
+  int          i,                      /* Looping var */
+               fd;                     /* Temporary file descriptor */
+  ssize_t      bytes;                  /* Bytes read/written */
+  size_t       total;                  /* Total bytes read */
+  cups_file_t  *in,                    /* Input file */
+               *out;                   /* Output file */
+  struct stat  outinfo;                /* Output file information */
+  char         filename[1024],         /* Temporary filename */
+               buffer[32768];          /* Copy buffer */
+
+
+  fprintf(stderr, "DEBUG: Compressing %d job files...\n", num_files);
+  for (i = 0; i < num_files; i ++)
+  {
+    if ((fd = cupsTempFd(filename, sizeof(filename))) < 0)
+    {
+      _cupsLangPrintf(stderr,
+                     _("ERROR: Unable to create temporary compressed print "
+                       "file: %s\n"), strerror(errno));
+      exit(CUPS_BACKEND_FAILED);
+    }
+
+    if ((out = cupsFileOpenFd(fd, "w9")) == NULL)
+    {
+      _cupsLangPrintf(stderr,
+                     _("ERROR: Unable to open temporary compressed print "
+                       "file: %s\n"), strerror(errno));
+      exit(CUPS_BACKEND_FAILED);
+    }
+
+    if ((in = cupsFileOpen(files[i], "r")) == NULL)
+    {
+      _cupsLangPrintf(stderr,
+                      _("ERROR: Unable to open print file \"%s\": %s\n"),
+                     files[i], strerror(errno));
+      cupsFileClose(out);
+      exit(CUPS_BACKEND_FAILED);
+    }
+
+    total = 0;
+    while ((bytes = cupsFileRead(in, buffer, sizeof(buffer))) > 0)
+      if (cupsFileWrite(out, buffer, bytes) < bytes)
+      {
+        _cupsLangPrintf(stderr,
+                       _("ERROR: Unable to write %d bytes to \"%s\": %s\n"),
+                       (int)bytes, filename, strerror(errno));
+        cupsFileClose(in);
+        cupsFileClose(out);
+       exit(CUPS_BACKEND_FAILED);
+      }
+      else
+        total += bytes;
+
+    cupsFileClose(out);
+    cupsFileClose(in);
+
+    files[i] = strdup(filename);
+
+    if (!stat(filename, &outinfo))
+      fprintf(stderr,
+              "DEBUG: File %d compressed to %.1f%% of original size, "
+             CUPS_LLFMT " bytes...\n",
+              i + 1, 100.0 * outinfo.st_size / total,
+             CUPS_LLCAST outinfo.st_size);
+  }
+}
+#endif /* HAVE_LIBZ */
+
+
 /*
  * 'password_cb()' - Disable the password prompt for cupsDoFileRequest().
  */
 
-const char *                           /* O - Password  */
+static const char *                    /* O - Password  */
 password_cb(const char *prompt)                /* I - Prompt (not used) */
 {
   (void)prompt;
 
-  if (password)
+  if (password && password_tries < 3)
+  {
+    password_tries ++;
+
     return (password);
+  }
   else
   {
    /*
@@ -1063,7 +1422,11 @@ password_cb(const char *prompt)          /* I - Prompt (not used) */
       unlink(pstmpname);
 #endif /* __APPLE__ */
 
+    fputs("ATTR: auth-info-required=username,password\n", stderr);
+
     exit(CUPS_BACKEND_AUTH_REQUIRED);
+
+    return (NULL);                     /* Eliminate compiler warning */
   }
 }
 
@@ -1072,103 +1435,115 @@ password_cb(const char *prompt)               /* I - Prompt (not used) */
  * 'report_printer_state()' - Report the printer state.
  */
 
-int                                    /* O - Number of reasons shown */
-report_printer_state(ipp_t *ipp)       /* I - IPP response */
+static int                             /* O - Number of reasons shown */
+report_printer_state(ipp_t *ipp,       /* I - IPP response */
+                     int   job_id)     /* I - Current job ID */
 {
   int                  i;              /* Looping var */
   int                  count;          /* Count of reasons shown... */
-  ipp_attribute_t      *reasons;       /* printer-state-reasons */
+  ipp_attribute_t      *psm,           /* pritner-state-message */
+                       *reasons;       /* printer-state-reasons */
   const char           *reason;        /* Current reason */
   const char           *message;       /* Message to show */
   char                 unknown[1024];  /* Unknown message string */
   const char           *prefix;        /* Prefix for STATE: line */
   char                 state[1024];    /* State string */
+  cups_lang_t          *language;      /* Current localization */
 
 
+  if ((psm = ippFindAttribute(ipp, "printer-state-message",
+                              IPP_TAG_TEXT)) != NULL)
+    fprintf(stderr, "INFO: %s\n", psm->values[0].string.text);
+
   if ((reasons = ippFindAttribute(ipp, "printer-state-reasons",
                                   IPP_TAG_KEYWORD)) == NULL)
     return (0);
 
   state[0] = '\0';
   prefix   = "STATE: ";
+  language = cupsLangDefault();
 
   for (i = 0, count = 0; i < reasons->num_values; i ++)
   {
     reason = reasons->values[i].string.text;
 
-    strlcat(state, prefix, sizeof(state));
-    strlcat(state, reason, sizeof(state));
+    if (job_id == 0 || strcmp(reason, "paused"))
+    {
+      strlcat(state, prefix, sizeof(state));
+      strlcat(state, reason, sizeof(state));
+
+      prefix  = ",";
+    }
 
-    prefix  = ",";
-    message = NULL;
+    message = "";
 
     if (!strncmp(reason, "media-needed", 12))
-      message = "Media tray needs to be filled.";
+      message = _("Media tray needs to be filled.");
     else if (!strncmp(reason, "media-jam", 9))
-      message = "Media jam!";
+      message = _("Media jam!");
     else if (!strncmp(reason, "moving-to-paused", 16) ||
              !strncmp(reason, "paused", 6) ||
             !strncmp(reason, "shutdown", 8))
-      message = "Printer off-line.";
+      message = _("Printer off-line.");
     else if (!strncmp(reason, "toner-low", 9))
-      message = "Toner low.";
+      message = _("Toner low.");
     else if (!strncmp(reason, "toner-empty", 11))
-      message = "Out of toner!";
+      message = _("Out of toner!");
     else if (!strncmp(reason, "cover-open", 10))
-      message = "Cover open.";
+      message = _("Cover open.");
     else if (!strncmp(reason, "interlock-open", 14))
-      message = "Interlock open.";
+      message = _("Interlock open.");
     else if (!strncmp(reason, "door-open", 9))
-      message = "Door open.";
+      message = _("Door open.");
     else if (!strncmp(reason, "input-tray-missing", 18))
-      message = "Media tray missing!";
+      message = _("Media tray missing!");
     else if (!strncmp(reason, "media-low", 9))
-      message = "Media tray almost empty.";
+      message = _("Media tray almost empty.");
     else if (!strncmp(reason, "media-empty", 11))
-      message = "Media tray empty!";
+      message = _("Media tray empty!");
     else if (!strncmp(reason, "output-tray-missing", 19))
-      message = "Output tray missing!";
+      message = _("Output tray missing!");
     else if (!strncmp(reason, "output-area-almost-full", 23))
-      message = "Output bin almost full.";
+      message = _("Output bin almost full.");
     else if (!strncmp(reason, "output-area-full", 16))
-      message = "Output bin full!";
+      message = _("Output bin full!");
     else if (!strncmp(reason, "marker-supply-low", 17))
-      message = "Ink/toner almost empty.";
+      message = _("Ink/toner almost empty.");
     else if (!strncmp(reason, "marker-supply-empty", 19))
-      message = "Ink/toner empty!";
+      message = _("Ink/toner empty!");
     else if (!strncmp(reason, "marker-waste-almost-full", 24))
-      message = "Ink/toner waste bin almost full.";
+      message = _("Ink/toner waste bin almost full.");
     else if (!strncmp(reason, "marker-waste-full", 17))
-      message = "Ink/toner waste bin full!";
+      message = _("Ink/toner waste bin full!");
     else if (!strncmp(reason, "fuser-over-temp", 15))
-      message = "Fuser temperature high!";
+      message = _("Fuser temperature high!");
     else if (!strncmp(reason, "fuser-under-temp", 16))
-      message = "Fuser temperature low!";
+      message = _("Fuser temperature low!");
     else if (!strncmp(reason, "opc-near-eol", 12))
-      message = "OPC almost at end-of-life.";
+      message = _("OPC almost at end-of-life.");
     else if (!strncmp(reason, "opc-life-over", 13))
-      message = "OPC at end-of-life!";
+      message = _("OPC at end-of-life!");
     else if (!strncmp(reason, "developer-low", 13))
-      message = "Developer almost empty.";
+      message = _("Developer almost empty.");
     else if (!strncmp(reason, "developer-empty", 15))
-      message = "Developer empty!";
+      message = _("Developer empty!");
     else if (strstr(reason, "error") != NULL)
     {
       message = unknown;
 
-      snprintf(unknown, sizeof(unknown), "Unknown printer error (%s)!",
+      snprintf(unknown, sizeof(unknown), _("Unknown printer error (%s)!"),
                reason);
     }
 
-    if (message)
+    if (message[0])
     {
       count ++;
       if (strstr(reasons->values[i].string.text, "error"))
-        fprintf(stderr, "ERROR: %s\n", message);
+        fprintf(stderr, "ERROR: %s\n", _cupsLangString(language, message));
       else if (strstr(reasons->values[i].string.text, "warning"))
-        fprintf(stderr, "WARNING: %s\n", message);
+        fprintf(stderr, "WARNING: %s\n", _cupsLangString(language, message));
       else
-        fprintf(stderr, "INFO: %s\n", message);
+        fprintf(stderr, "INFO: %s\n", _cupsLangString(language, message));
     }
   }
 
@@ -1190,7 +1565,7 @@ report_printer_state(ipp_t *ipp)  /* I - IPP response */
  * PostScript file for printing...
  */
 
-int                                    /* O - Exit status of filter */
+static int                             /* O - Exit status of filter */
 run_pictwps_filter(char       **argv,  /* I - Command-line arguments */
                    const char *filename)/* I - Filename */
 {
@@ -1210,15 +1585,16 @@ run_pictwps_filter(char       **argv,   /* I - Command-line arguments */
   printer = getenv("PRINTER");
   if (!printer)
   {
-    fputs("ERROR: PRINTER environment variable not defined!\n", stderr);
+    _cupsLangPuts(stderr,
+                  _("ERROR: PRINTER environment variable not defined!\n"));
     return (-1);
   }
 
   if ((ppdfile = cupsGetPPD(printer)) == NULL)
   {
-    fprintf(stderr, "ERROR: Unable to get PPD file for printer \"%s\" - %s.\n",
-            printer, ippErrorString(cupsLastError()));
-    /*return (-1);*/
+    _cupsLangPrintf(stderr,
+                   _("ERROR: Unable to get PPD file for printer \"%s\" - "
+                     "%s.\n"), printer, cupsLastErrorString());
   }
   else
   {
@@ -1232,8 +1608,8 @@ run_pictwps_filter(char       **argv,     /* I - Command-line arguments */
 
   if ((fd = cupsTempFd(pstmpname, sizeof(pstmpname))) < 0)
   {
-    fprintf(stderr, "ERROR: Unable to create temporary file - %s.\n",
-            strerror(errno));
+    _cupsLangPrintf(stderr, _("ERROR: Unable to create temporary file - %s.\n"),
+                   strerror(errno));
     if (ppdfile)
       unlink(ppdfile);
     return (-1);
@@ -1289,7 +1665,8 @@ run_pictwps_filter(char       **argv,     /* I - Command-line arguments */
 
     execlp("pictwpstops", printer, argv[1], argv[2], argv[3], argv[4], argv[5],
            filename, NULL);
-    perror("ERROR: Unable to exec pictwpstops");
+    _cupsLangPrintf(stderr, _("ERROR: Unable to exec pictwpstops: %s\n"),
+                   strerror(errno));
     return (errno);
   }
 
@@ -1301,7 +1678,8 @@ run_pictwps_filter(char       **argv,     /* I - Command-line arguments */
     * Error!
     */
 
-    perror("ERROR: Unable to fork pictwpstops");
+    _cupsLangPrintf(stderr, _("ERROR: Unable to fork pictwpstops: %s\n"),
+                   strerror(errno));
     unlink(filename);
     if (ppdfile)
       unlink(ppdfile);
@@ -1314,7 +1692,8 @@ run_pictwps_filter(char       **argv,     /* I - Command-line arguments */
 
   if (wait(&status) < 0)
   {
-    perror("ERROR: Unable to wait for pictwpstops");
+    _cupsLangPrintf(stderr, _("ERROR: Unable to wait for pictwpstops: %s\n"),
+                   strerror(errno));
     close(fd);
     unlink(filename);
     if (ppdfile)
@@ -1330,11 +1709,11 @@ run_pictwps_filter(char       **argv,   /* I - Command-line arguments */
   if (status)
   {
     if (status >= 256)
-      fprintf(stderr, "ERROR: pictwpstops exited with status %d!\n",
-              status / 256);
+      _cupsLangPrintf(stderr, _("ERROR: pictwpstops exited with status %d!\n"),
+                     status / 256);
     else
-      fprintf(stderr, "ERROR: pictwpstops exited on signal %d!\n",
-              status);
+      _cupsLangPrintf(stderr, _("ERROR: pictwpstops exited on signal %d!\n"),
+                     status);
 
     unlink(filename);
     return (status);
@@ -1358,8 +1737,19 @@ sigterm_handler(int sig)         /* I - Signal */
 {
   (void)sig;   /* remove compiler warnings... */
 
+  if (!job_cancelled)
+  {
+   /*
+    * Flag that the job should be cancelled...
+    */
+
+    job_cancelled = 1;
+    return;
+  }
+
  /*
-  * Remove the temporary file(s) if necessary...
+  * The scheduler already tried to cancel us once, now just terminate
+  * after removing our temp files!
   */
 
   if (tmpfilename[0])
@@ -1375,5 +1765,5 @@ sigterm_handler(int sig)          /* I - Signal */
 
 
 /*
- * End of "$Id: ipp.c 4926 2006-01-13 03:12:13Z mike $".
+ * End of "$Id: ipp.c 7018 2007-10-10 22:14:03Z mike $".
  */