renamed gpgpy-ezmlm to crypto-ezmlm
This commit is contained in:
parent
e4d82256e7
commit
ee170fc7da
11 changed files with 1397 additions and 0 deletions
18
crypto-ezmlm/trunk/bin/qmail-queue-dummy
Executable file
18
crypto-ezmlm/trunk/bin/qmail-queue-dummy
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python
|
||||
#
|
||||
# this simple script is a dummy implementation of qmail-queue
|
||||
#
|
||||
# it simply prints the incoming mail from file descriptor 0
|
||||
# and the incoming envelope information from file descriptor 1
|
||||
#
|
||||
|
||||
import sys, os
|
||||
|
||||
|
||||
infile = os.fdopen(1, "r")
|
||||
content = infile.read()
|
||||
|
||||
sys.stderr.write("Envelope: %s\n" % content)
|
||||
sys.stderr.write("\n")
|
||||
sys.stderr.write(sys.stdin.read())
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue