Skip to content

Commit

Permalink
fixed minor bug using filterargs for local deliveries
Browse files Browse the repository at this point in the history
  • Loading branch information
sagredo-dev committed Feb 11, 2024
1 parent 4ac5922 commit 2550509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spawn-filter.c
Expand Up @@ -256,7 +256,7 @@ main(int argc, char **argv)
ptr++;
ptr += 6;
if (*ptr == 'l') { /*- qmail-local Filter */
if (!str_diff(argv[1], "-n") || !str_diff(argv[1], "-N")) {
if (!str_diff(argv[1], "-n") || !str_diff(argv[1], "-N") || !str_diff(argv[1], "--")) {
i = 8;
ext = argv[6];
} else {
Expand Down

0 comments on commit 2550509

Please sign in to comment.