Browse Source

spamd_grey=YES should really be spamd_black=NO

as disscussed with jmc and millert.
ok millert@
OPENBSD_4_1
beck 18 years ago
parent
commit
25cbdb48ee
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/etc/rc
  2. +2
    -2
      src/etc/rc.conf

+ 2
- 2
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.299 2007/02/27 02:10:58 beck Exp $
# $OpenBSD: rc,v 1.300 2007/02/27 16:21:29 beck Exp $
# System startup script run by init on autoboot # System startup script run by init on autoboot
# or after single-user. # or after single-user.
@ -668,7 +668,7 @@ if [ X"${sshd_flags}" != X"NO" ]; then
fi fi
if [ X"${spamd_flags}" != X"NO" ]; then if [ X"${spamd_flags}" != X"NO" ]; then
if [ X"${spamd_grey}" = X"NO" ]; then
if [ X"${spamd_black}" != X"NO" ]; then
spamd_flags="${spamd_flags} -b" spamd_flags="${spamd_flags} -b"
fi fi
echo -n ' spamd'; eval /usr/libexec/spamd ${spamd_flags} echo -n ' spamd'; eval /usr/libexec/spamd ${spamd_flags}


+ 2
- 2
src/etc/rc.conf View File

@ -1,6 +1,6 @@
#!/bin/sh - #!/bin/sh -
# #
# $OpenBSD: rc.conf,v 1.122 2007/02/24 19:30:59 millert Exp $
# $OpenBSD: rc.conf,v 1.123 2007/02/27 16:21:29 beck Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags # set these to "NO" to turn them off. otherwise, they're used as flags
routed_flags=NO # for normal use: "-q" routed_flags=NO # for normal use: "-q"
@ -46,7 +46,7 @@ httpd_flags=NO # for normal use: "" (or "-DSSL" after reading ssl(8))
# For normal use: "-L sm-mta -bd -q30m", and note there is a cron job # For normal use: "-L sm-mta -bd -q30m", and note there is a cron job
sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m" sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
spamd_flags=NO # for normal use: "" and see spamd-setup(8) spamd_flags=NO # for normal use: "" and see spamd-setup(8)
spamd_grey=YES # set to NO to run spamd in non-greylisting mode
spamd_black=NO # set to YES to run spamd without greylisting
spamlogd_flags="" # use eg. "-i interface" and see spamlogd(8) spamlogd_flags="" # use eg. "-i interface" and see spamlogd(8)
# Set to NO if ftpd is running out of inetd # Set to NO if ftpd is running out of inetd


Loading…
Cancel
Save