diff options
Diffstat (limited to 'qmail-showctl.c')
| -rw-r--r-- | qmail-showctl.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/qmail-showctl.c b/qmail-showctl.c index a24aa63..bbaa2bc 100644 --- a/qmail-showctl.c +++ b/qmail-showctl.c | |||
| @@ -214,7 +214,11 @@ void main() | |||
| 214 | _exit(111); | 214 | _exit(111); |
| 215 | } | 215 | } |
| 216 | 216 | ||
| 217 | do_lst("badmailfrom","Any MAIL FROM is allowed.",""," not accepted in MAIL FROM."); | 217 | do_lst("badhelo","Any HELO host name is allowed.",""," HELO host name denied if it matches this pattern."); |
| 218 | do_lst("badmailfrom","Any MAIL FROM is allowed.",""," MAIL FROM denied if it matches this pattern."); | ||
| 219 | do_lst("badmailfromnorelay","Any MAIL FROM is allowed.",""," MAIL FROM denied if it matches this pattern and RELAYCLIENT is not set."); | ||
| 220 | do_lst("badmailto","No RCPT TO are specifically denied.",""," RCPT TO denied if it matches this pattern."); | ||
| 221 | do_lst("badmailtonorelay","No RCPT TO are specifically denied.",""," RCPT TO denied if it matches this pattern and RELAYCLIENT is not set."); | ||
| 218 | do_str("bouncefrom",0,"MAILER-DAEMON","Bounce user name is "); | 222 | do_str("bouncefrom",0,"MAILER-DAEMON","Bounce user name is "); |
| 219 | do_str("bouncehost",1,"bouncehost","Bounce host name is "); | 223 | do_str("bouncehost",1,"bouncehost","Bounce host name is "); |
| 220 | do_int("concurrencylocal","10","Local concurrency is ",""); | 224 | do_int("concurrencylocal","10","Local concurrency is ",""); |
| @@ -267,7 +271,11 @@ void main() | |||
| 267 | if (str_equal(d->d_name,"..")) continue; | 271 | if (str_equal(d->d_name,"..")) continue; |
| 268 | if (str_equal(d->d_name,"bouncefrom")) continue; | 272 | if (str_equal(d->d_name,"bouncefrom")) continue; |
| 269 | if (str_equal(d->d_name,"bouncehost")) continue; | 273 | if (str_equal(d->d_name,"bouncehost")) continue; |
| 274 | if (str_equal(d->d_name,"badhelo")) continue; | ||
| 270 | if (str_equal(d->d_name,"badmailfrom")) continue; | 275 | if (str_equal(d->d_name,"badmailfrom")) continue; |
| 276 | if (str_equal(d->d_name,"badmailfromnorelay")) continue; | ||
| 277 | if (str_equal(d->d_name,"badmailto")) continue; | ||
| 278 | if (str_equal(d->d_name,"badmailtonorelay")) continue; | ||
| 271 | if (str_equal(d->d_name,"bouncefrom")) continue; | 279 | if (str_equal(d->d_name,"bouncefrom")) continue; |
| 272 | if (str_equal(d->d_name,"bouncehost")) continue; | 280 | if (str_equal(d->d_name,"bouncehost")) continue; |
| 273 | if (str_equal(d->d_name,"concurrencylocal")) continue; | 281 | if (str_equal(d->d_name,"concurrencylocal")) continue; |
