Koozali.org: home of the SME Server
Obsolete Releases => SME Server 7.x => Topic started by: Seeker on February 20, 2006, 07:36:11 PM
-
Can anyone tell me which config qpsmtpd uses
I need to modify the plugins file to use rbls
-
To view the defaults:
# config show qpsmtpd
qpsmtpd=service
Bcc=disabled
BccUser=maillog
DNSBL=disabled
LogLevel=6
MaxScannerSize=25000000
RBLList=sbl-xbl.spamhaus.org,whois.rfc-ignorant.org,dnsbl.njabl.org,relays.ordb.org
RHSBL=disabled
RequireResolvableFromHost=no
SBLList=dsn.rfc-ignorant.org
access=public
status=enabled
To enable both available lists:
# config setprop qpsmtpd DNSBL enabled RHSBL enabled
# signal-event email-update
Darrell
-
:-D BIG thanks!
-
Darrell, thank you for sharing your knowledge. Still struggling with the database... Would you kindly provide guidance with the commands for modifying the RBL and SBL lists. At the moment, we have:
RBLList=sbl-xbl.spamhaus.org,whois.rfc-ignorant.org,dnsbl.njabl.org,relays.ordb.org
SBLList=dsn.rfc-ignorant.org
How to remove from/add to these lists?
Many thanks. chris
-
Darrell, thank you for sharing your knowledge. Still struggling with the database... Would you kindly provide guidance with the commands for modifying the RBL and SBL lists....
# /sbin/e-smith/db --help
usage:
/sbin/e-smith/db dbfile keys
/sbin/e-smith/db dbfile print [key]
/sbin/e-smith/db dbfile show [key]
/sbin/e-smith/db dbfile get key
/sbin/e-smith/db dbfile set key type [prop1 val1] [prop2 val2] ...
/sbin/e-smith/db dbfile setdefault key type [prop1 val1] [prop2 val2] ...
/sbin/e-smith/db dbfile delete key
/sbin/e-smith/db dbfile printtype [key]
/sbin/e-smith/db dbfile gettype key
/sbin/e-smith/db dbfile settype key type
/sbin/e-smith/db dbfile printprop key [prop1] [prop2] [prop3] ...
/sbin/e-smith/db dbfile getprop key prop
/sbin/e-smith/db dbfile setprop key prop1 val1 [prop2 val2] [prop3 val3] ...
/sbin/e-smith/db dbfile delprop key prop1 [prop2] [prop3] ...
Being verbose you would do:
# /sbin/e-smith/db /home/e-smith/db/configuration setprop qpsmtpd RBLList blah,blah,blah
# /sbin/e-smith/db /home/e-smith/db/configuration setprop qpsmtpd SBLList blah,blah,blah
# /sbin/e-smith/signal-event email-update
In shorthand you could do:
# config setprop qpsmtpd RBLList blah,blah,blah SBLList blah,blah,blah
# signal-event email-update
My recommendations. Learn verbose. For quick command-line entries, shorthand method is faster for us lazy typists. However, when you move into writing scripts, see the Development documentation, use perl and the provided perl db interfaces found here:
/usr/lib/perl5/site_perl/esmith
Darrell
-
Many thanks Darrell.