#------------------------------------------------------------------------------ # /etc/config.d/eisfax - configuration for eisfax services on EIS/FAIR # # Copyright (c) 2002-2005 Frank Meyer # # Creation: 30.03.2003 sk # Last Update: $Id$ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #------------------------------------------------------------------------------ START_EISFAX='no' # start eisfax server: yes or no #------------------------------------------------------------------------------ # global section #------------------------------------------------------------------------------ EISFAX_TYPE='analog' # fax type: 'analog' or 'isdn' EISFAX_ID='+49 12 3456 789' # Your Fax-ID (MSN) EISFAX_NAME='Fax-Station' # fax station name (fax header, journals) EISFAX_PORTSPEED='38400' # 19200, 38400 EISFAX_INITSTRING='ATZ' # modem initialisationstring EISFAX_REFRESH='60' # Seconds to refresh in webfrontend. 0=never #------------------------------------------------------------------------------ # receive configuration #------------------------------------------------------------------------------ EISFAX_RECEIVE='no' # start fax receive daemon: yes or no EISFAX_RECEIVE_DEVICE='ttyS1' # device (1st comport=ttyS0, 2nd=ttyS1 ...) EISFAX_RECEIVE_MSN='23' # MSN to listen on for EISFAX_TYPE='isdn' EISFAX_RECEIVE_LOGLEVEL='4' # debug level: 0-9 EISFAX_RECEIVE_AUTOMAIL='no' # mail received faxes? EISFAX_RECEIVE_AUTOMAIL_MAILADDR='' # Mailaddress to send received faxdocuments. EISFAX_RECEIVE_AUTOPRINT='no' # print received faxes: yes or no EISFAX_RECEIVE_PRINTERQUEUE='pr1' # printerqueue to print the faxes EISFAX_RECEIVE_PRINTERDRIVER='pcl3' # printerdriver for your printer - see doc #------------------------------------------------------------------------------ # send configuration #------------------------------------------------------------------------------ EISFAX_SEND='no' # start fax send daemon: yes or no EISFAX_SEND_DEVICE='ttyS0' # Device, if more than one use this: # 'ttyS0:ttyS1:ttyS2' EISFAX_SEND_MSN='27' # sender MSN for EISFAX_TYPE='isdn' EISFAX_SEND_SUPPRESS_MSN='no' # suppress MSN when sending: yes or no EISFAX_SEND_USE_ISDN_FAXSERVICE='no' # use isdn fax service indicator: yes or no EISFAX_SEND_DIALPREFIX='ATDT' # dial prefix e.g. ATDT EISFAX_SEND_DENY='' # list of usernames not allowed to fax # FUNCTION NOT YET IMPLEMENTED EISFAX_SEND_DEFAULTDELAY='18:00' # Time to send delayed faxes EISFAX_SEND_MAIL_ON_SUCCESS='yes' # controls whether a mail will be sent after # successful completion of the fax job EISFAX_SEND_MAIL_ON_FAILURE='yes' # controls whether a mail will be sent after # the fax job has failed more than the maximum # number of times EISFAX_SEND_MAIL_WITH_PDF='no' # attach faxed document as pdf to the mail EISFAX_SEND_MAXFAIL_COSTLY='5' # This specifies the number of times that a fax # may fail "fatally", that is, causing telephone # costs EISFAX_SEND_MAXFAIL_TOTAL='10' # This is the absolute maximum number of times # that eisfax will try to send any given fax. EISFAX_SEND_ACTION='nothing' # action after fax has been sent: # nothing, delete, archive EISFAX_SEND_ARCHIVE_PREFACE='yes' # Put a status preface on 1st page of archived PDF EISFAX_HEADER='@N@ @ID@ an @T@ Seite @P@ von @M@ / @DATE@' # fax header line # see documentation for meaning of tokens @X@ EISFAX_HEADER_DATE='+%d.%m.%Y %H:%M Uhr' # date format for fax header line # e.g. EISFAX_HEADER_DATE='+%d.%m.%Y %H:%M Uhr' # gives '23.01.2003 22:10 Uhr' EISFAX_HEADER_PERUSER='yes' # individual header line permitted? #------------------------------------------------------------------------------ # log handling # # Here you can specify how many logs should be saved and in what interval. # # Example: # EISFAX_LOG_COUNT='10' - save the last 10 log files # EISFAX_LOG_INTERVAL='daily' - save one log file per day #------------------------------------------------------------------------------ EISFAX_LOG_COUNT='10' # number of log files to save EISFAX_LOG_INTERVAL='monthly' # interval: daily, weekly, monthly #------------------------------------------------------------------------------ # End #------------------------------------------------------------------------------