summaryrefslogtreecommitdiff
path: root/femtomail.c
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2013-07-09 12:14:32 +0200
committerPeter Wu <lekensteyn@gmail.com>2013-07-09 12:14:32 +0200
commit3edbde6581b7905a721139ed682f2d4e6a30239f (patch)
treef5bdf980102143e268d37f2ff4cd820e2304fc7e /femtomail.c
parent3f72b80acb9c8b4220ab2775547333fad06755b5 (diff)
downloadfemtomail-3edbde6581b7905a721139ed682f2d4e6a30239f.tar.gz
sendmail compat: Exit in modes other than `-bm`
Diffstat (limited to 'femtomail.c')
-rw-r--r--femtomail.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/femtomail.c b/femtomail.c
index 916bf23..1cbc4e7 100644
--- a/femtomail.c
+++ b/femtomail.c
@@ -211,6 +211,12 @@ main(int argc, char **argv) {
case 'f':
from_address = xstrdup(optarg);
break;
+ case 'b':
+ if (*optarg != 'm') {
+ /* ignore modes other than "read mail from stdin" */
+ return (EXIT_SUCCESS);
+ }
+ break;
case '?': /* unrecognized argument */
return (EXIT_FAILURE);
default: