Rob Tanner:
> The local aliases file and I was afraid of that. Since the only thing
> going through this Postfix instance is the FAX stuff which needs to be
> delivered to the program, is there some way to force all delivery to the
> program unconditionally?
A transport map entry:
/etc/postfix/main.cf:
transport_maps = hash:/etc/postfix/transport
/etc/postfix/transport:
example.com fax:
/etc/postfix/master.cf:
fax unix - n n - - pipe
user=xxx argv=/some/where/command -- ${sender} ${recipient}
Keep in mind that ${recipient} expands into multiple arguments
unless you specify
/etc/postfix/main.cf:
fax_destination-recipient_limit=1
Wietse