Changeset 1193

Show
Ignore:
Timestamp:
11/19/03 08:40:20 (20 years ago)
Author:
jalet
Message:

Missing import statement.
Better documentation for mailto: external(...)

Location:
pykota/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/conf/pykota.conf.sample

    r1192 r1193  
    193193# If the value is not set, then the default BOTH applies. 
    194194# 
    195 #   For mailto: external(/usr/bin/mycommand) 
     195#   For mailto: external(/usr/bin/mycommand >/dev/null) 
    196196# 
    197197#   You can use : 
     
    207207#   Example : 
    208208# 
    209 #       mailto: external(/usr/bin/callpager %(username)s "Quota problem on %(printername)s") 
     209#       mailto: external(/usr/bin/callpager %(username)s "Quota problem on %(printername)s" >/dev/null) 
     210# 
     211#   NB : Don't forget to redirect your command's standard output somewhere  
     212#        (e.g. >/dev/null) so that there's no perturbation to the underlying 
     213#        layer (filter or backend) 
    210214# 
    211215mailto: both 
  • pykota/trunk/pykota/tool.py

    r1192 r1193  
    2222# 
    2323# $Log$ 
     24# Revision 1.56  2003/11/19 07:40:20  jalet 
     25# Missing import statement. 
     26# Better documentation for mailto: external(...) 
     27# 
    2428# Revision 1.55  2003/11/18 23:43:12  jalet 
    2529# Mailto can be any external command now, as usual. 
     
    220224 
    221225import sys 
     226import os 
    222227import fnmatch 
    223228import getopt