/* * uuxdummy.c: Dummy version of uux * * Stephen Trier * March 27, 1990 * * This program, trivial as it may be, is in the public domain. */ /* * Compile this version and use it as a replacement for the * normal uux if you want all outgoing mail rejected. You * should do this if one of the following cases applies: * 1) You're feeling unfriendly * 2) You are testing the mailer */ #include main() { fprintf(stderr, "Mail forwarding not permitted.\n"); fprintf(stderr, "Please hang up and try your call again.\n"); return 1; }