home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / fax-3.2.1 / cmd / fax / fax.c next >
Encoding:
C/C++ Source or Header  |  1992-07-31  |  2.6 KB  |  98 lines

  1. /*
  2.   This file is part of the NetFax system.
  3.  
  4.   (c) Copyright 1989 by David M. Siegel and Sundar Narasimhan.
  5.       All rights reserved.
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation.
  10.  
  11.     This program is distributed in the hope that it will be useful, 
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of 
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20.  
  21. #include <stdio.h>
  22.  
  23. #include "../../include/conf.h"
  24.  
  25. main(argc, argv)
  26.      int argc;
  27.      char *argv[];
  28. {
  29.     int c;
  30.     int errflg = 0;
  31.     extern char *optarg;
  32.     extern int optind;
  33.     
  34.     char cmd[2048];
  35.     char args[2048];
  36.     char *font = "Courier-Bold12";
  37.  
  38.     while ((c = getopt(argc, argv, "cp:r:s:S:mu:h:f:")) != -1)
  39.       switch (c) {
  40.     case 'c':
  41.     case 'm':
  42.       sprintf(&args[strlen(args)], "-%c ", c);
  43.       break;
  44.     case 'p':
  45.     case 'r':
  46.     case 's':
  47.     case 'S':
  48.     case 'u':
  49.     case 'h':
  50.       sprintf(&args[strlen(args)], "-%c \"%s\" ", c, optarg);
  51.       break;
  52.     case 'f':
  53.       font = optarg;
  54.       break;
  55.     case '?':
  56.       errflg++;;
  57.       break;
  58.       }
  59.  
  60.     if (errflg || argc < 2) {
  61.     fprintf(stderr, "usage: %s -p phone [filenames]\n", argv[0]);
  62.     fprintf(stderr, "\tone or more -p argument may be given\n");
  63.     fprintf(stderr, "\tif no filenames are given, input is from stdin\n");
  64.     fprintf(stderr, "optional args:\n");
  65.     fprintf(stderr, "\t-m will send email notification on delivery\n");
  66.     fprintf(stderr, "\t-h <host> uses the spooler on the given host\n");
  67.     fprintf(stderr, "\t-u <user> spools job with the given user name\n");
  68.     fprintf(stderr, "\t-c generates a coverpage\n");
  69.     fprintf(stderr, "\t-s <name> specifies the coverpage sender\n");
  70.     fprintf(stderr, "\t-S <phone> specifies the coverpage return fax\n");
  71.     fprintf(stderr, "\t-r <name> specifies the coverpage recipient\n");
  72.     exit(1);
  73.     }
  74.  
  75.     if (optind == argc) {
  76.     /*
  77.      * Text from standard in.
  78.      */
  79.     chdir("/tmp");
  80.     sprintf(cmd, "/usr/local/bin/enscript -f%s -p - | %s %s", 
  81.         font, FAX_PS_PROG, args);
  82.     } else {
  83.     /*
  84.      * Text from some files.
  85.      */
  86.     char files[2048];
  87.     strcpy(files, "");
  88.     for (; optind < argc; optind++) {
  89.         strcat(files, argv[optind]);
  90.         strcat(files, " ");
  91.     }
  92.     sprintf(cmd, "/usr/local/bin/enscript -f%s -p - %s | %s %s", 
  93.         font, files, FAX_PS_PROG, args);
  94.     }
  95.  
  96.     exit(system(cmd));
  97. }
  98.