notify.1m
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:6k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. ." $Id: notify.1m,v 1.5 2007/03/13 04:03:06 faxguy Exp $
  2. ."
  3. ." HylaFAX Facsimile Software
  4. ."
  5. ." Copyright (c) 1993-1996 Sam Leffler
  6. ." Copyright (c) 1993-1996 Silicon Graphics, Inc.
  7. ." HylaFAX is a trademark of Silicon Graphics
  8. ." 
  9. ." Permission to use, copy, modify, distribute, and sell this software and 
  10. ." its documentation for any purpose is hereby granted without fee, provided
  11. ." that (i) the above copyright notices and this permission notice appear in
  12. ." all copies of the software and related documentation, and (ii) the names of
  13. ." Sam Leffler and Silicon Graphics may not be used in any advertising or
  14. ." publicity relating to the software without the specific, prior written
  15. ." permission of Sam Leffler and Silicon Graphics.
  16. ." 
  17. ." THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  18. ." EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  19. ." WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  20. ." 
  21. ." IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  22. ." ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  23. ." OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. ." WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  25. ." LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  26. ." OF THIS SOFTWARE.
  27. ."
  28. .if n .po 0
  29. .ds Fx fIHylas-1FAXs+1fP
  30. .ds Ps Ps-2OSTs+2Ss-2CRIPTs+2
  31. .TH NOTIFY ${MANNUM1_8} "May 8, 1996"
  32. .SH NAME
  33. notify - *(Fx user notification script
  34. .SH SYNOPSIS
  35. .B ${SPOOL}/bin/notify
  36. .I qfile
  37. .I why
  38. .I jobtime
  39. [
  40. .I nextTry
  41. ]
  42. .SH DESCRIPTION
  43. .B bin/notify
  44. is the command script invoked by the facsimile server to notify a
  45. user about the status of an outbound job.
  46. It is designed to be customizable by the
  47. administrator.  (Ideally this is done by creating a customized notify script
  48. in a different filename or by copying the default script to a different filename,
  49. customizing that new file, and then using
  50. .B NotifyCmd
  51. in the scheduler config file to point
  52. .IR faxq (${MANNUM1_8})
  53. at the customized script.  See
  54. .IR hylafax-config (${MANNUM4_5}).)
  55. .P
  56. The default notification script sends the user
  57. electronic mail describing the event or action.
  58. The arguments are:
  59. .TP 10
  60. .B qfile
  61. the pathname of the job description file.
  62. .TP
  63. .B why
  64. a string that specifies why the user is being notified; one of:
  65. .sp .5
  66. .nf
  67. .ta  +w'poll_no_document    'u +w'Notes    'u
  68. fBWhyfP fBNotesfP fBMeaningfP
  69. fIdonefP job was completed successfully
  70. fIfailedfP  鹿 job was not completed
  71. fIrejectedfP job was rejected for specified reasons
  72. fIblockedfP job is blocked by concurrent jobs
  73. fIrequeuedfP 鹿 job was not completed, but was requeued for retry
  74. fIremovedfP job was deleted from the queue
  75. fIkilledfP job was deleted from the queue
  76. fItimedoutfP job could not be sent before kill time expired
  77. fIformat_failedfP document conversion failed
  78. fIno_formatterfP the document conversion program was not found
  79. fIpoll_rejectedfP 鹿 a polling request was rejected by the remote side
  80. fIpoll_no_documentfP 鹿 a polling request failed because nothing was available
  81. fIpoll_failedfP 鹿 a polling request failed for an unknown reason
  82. .sp .5
  83. .fi
  84. .br
  85. 鹿 A transcript of the failed communication is returned
  86. to the sender.
  87. .TP
  88. .B jobtime
  89. the total transmission time of a successful job or the connect
  90. time of a failed request (passed as a string).
  91. .TP
  92. .B nextTry
  93. the time (passed as a string) at which the next attempt will be
  94. made to complete the job.
  95. This parameter is passed only if
  96. .B why
  97. is ``requeued''.
  98. .SH NOTES
  99. The behavior of
  100. .B notify
  101. is intended to be customizable via the
  102. .B etc/FaxNotify
  103. script, if present.  FaxNotify is sourced after the q-file is parsed and
  104. all default values are preset.  Useful settings for FaxNotify are:
  105. .TP
  106. .I WHY
  107. is identical to
  108. .B why
  109. mentioned above and can be useful in determining under what conditions
  110. various settings should take effect.  For example,
  111. .sp
  112. .nf
  113. .ft C
  114. if [ "$WHY" != "done" ]; then
  115.     RETURNFILETYPE=pdf;
  116. fi
  117. .ft R
  118. .fi
  119. .sp
  120. This would only set
  121. .B RETURNFILETYPE
  122. when the job did not complete successfully.
  123. .TP
  124. .I RETURNFILETYPE
  125. can be set to ``tif'', ``pdf'', ``ps'', or ``original''.  If set,
  126. this causes
  127. .B notify
  128. to return a copy of the submitted documents to the
  129. .B SENDER
  130. address along with the notification message.  The ``original'' setting
  131. uses the format type that was used in the submission.
  132. Multiple values may be specified by separating them with
  133. whitespace. In that case a separate attachment is created
  134. for each filetype.
  135. .TP
  136. .I RETURNTECHINFO
  137. defaults to ``yes'' and is used to indicate whether or not technical
  138. information such as the session parameters should be included with the notification
  139. message.  If set to anything other than ``yes'' this information will
  140. not be included.
  141. .TP
  142. .I RETURNTRANSCRIPT
  143. defaults to ``yes'' and is used to indicate whether or not the session transcript
  144. (log) should be returned with the notification message on the error conditions
  145. noted above.
  146. .TP
  147. .I NOTIFY_FAXMASTER
  148. is used to deliver a notification message to
  149. .B TOADDR
  150. (which defaults to ``FaxMaster'') that contains technical information
  151. about the job.  This is useful in allowing the administrator to be aware of
  152. any problems before those problems are reported by the users.
  153. Possible settings are ``yes'', ``always'', ``no'', ``never'', and ``errors''.
  154. If ``errors'' is used then the notification message is only sent to FaxMaster
  155. when the job experienced an error.  The default is ``no''.
  156. .TP
  157. .I LANG
  158. controls the localization of the text of the job notification messages.
  159. .SH FILES
  160. .nf
  161. .ta w'${SENDMAIL}    'u
  162. ${SPOOL} spooling area
  163. ${SENDMAIL} for delivering mail
  164. .fi
  165. .SH "SEE ALSO"
  166. .IR faxq (${MANNUM1_8}),
  167. .IR hylafax-server (${MANNUM4_5}),
  168. .IR sendq (${MANNUM4_5})