"Todd A. Jacobs" <[EMAIL PROTECTED]> writes: > I'm trying to test bounces to myself: > > # filters/incoming > from <> ok > to tjacobs-bounce*@* bounce > > # config > DELIVERY = "|procmail -f $SENDER ~/.procmail-tmda" > > > > by sending mail to tjacobs-bounce, but the bounce message is not being > delivered. In fact, it's not even making it to .procmail-tmda processing. > What am I doing wrong?
Try this: DELIVERY = "|/usr/local/bin/procmail -f $SENDER /home/<user>/.procmail-tmda" In other words, fully specify both paths. I don't think the '~' gets expanded when TMDA runs the command, although I'm not entirely sure. Also, if procmail isn't in the PATH when TMDA is run, it won't be found. Better safe than sorry. Finally, do you have LOGFILE_INCOMING and LOGFILE_DEBUG enabled? They're the best way to figure out what's going on with a particular message. Tim _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
