Never mind about that error message. tmda-cgi was trying to get the DELIVERY path from the global tmdarc file, but I was setting that on a per-user basis.
To fix the problem, I added the following snippet to my /etc/tmdarc:
...
try:
# ... procmail will set the LOGNAME environment variable...
DELIVERY = "/var/spool/mail/%s" % (os.environ['LOGNAME'])
except KeyError, ke:
# ... and tmda-cgi will set the USER environment variable...
DELIVERY = "/var/spool/mail/%s" % (os.environ['USER'])
If this is crazy-talk, and there's a better way to do it, please let me know. Thanks.
_____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
