File: comm-reply-file.rc

package info (click to toggle)
procmail-lib 1%3A2002.01.02-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 1,216 kB
  • ctags: 365
  • sloc: perl: 213; makefile: 126; sh: 6
file content (66 lines) | stat: -rw-r--r-- 1,867 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# comm-reply-file.rc			-*- text -*-
#
# procmail rc file to filter a reply message body with a given file,
# or report an error.
#
# $Id: comm-reply-file.rc,v 1.1 2002/01/01 22:25:33 jaalto Exp $
#
#    Copyright (C) 1995  Alan K. Stebbens <aks@sgi.com>
#
#    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.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program; if not, write to the Free Software
#    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
# Usage:
#
#	REPLYFILE=file-to-be-sent
#	REPLYERR="error message if file doesn't exist"
#

:0
* ! REPLYFILE ?? .
{    LOG="comm-send-file.rc: REPLYFILE not defined!
"
}

# REPLYFILE is defined
:0 E
{

  # On the assumption that the message body has been prepared,
  # filter it and append the requested file.
  :0 fbw
  * ? test -f $REPLYFILE
  | cat - $REPLYFILE

  # The file wasn't available, generate an error message
  :0 E
  {
    # Provide for a default error message if $REPLYERR isn't set
    :0
    * ! REPLYERR ?? .
    {   
      # get the basename of the file (don't show any path)
      :0
      * ! REPLYFILE ?? .*/\/[^/]+$
      * ! REPLYFILE ?? \/^.*$
      { REPLYERR="Sorry, the file you requested is not currently available." }
      :0 E
      { REPLYERR="Sorry, the file '$MATCH' is not currently available." }
    }
  
    :0 fbw
    | cat - ; echo "$REPLYERR"
  }
}