hi, i have my userpref in SQL db (postgres) on a remote machine am using SA 3.1.8. the defination for userpref is: Table "public.userpref" Column | Type | Modifiers -------------+--------------------------+----------------------------------------------------------- prefid | bigint | not null default nextval('userpref_prefid_seq'::regclass) username | character varying(100) | not null preference| character varying(30) | not null value | character varying(100) | not null Indexes: "userpref_pkey" PRIMARY KEY, btree (prefid) "userpref_username_idx" btree (username)
i am using qmail as my MTA and mails are scanned using qmail-scanner-queue.pl. how can i test that my setup is working correctly and spamassassin is checking userpref while scaning mails. I have whitelisted "[EMAIL PROTECTED]" for any mails coming for "llca.net" here is the entry for that prefid | username | preference | value --------+------------------+--------------------+------------------------ 4 | %llca.net | whitelist_from | [EMAIL PROTECTED] are the entries correct ? how can i test that this is working, spamassassin -D does not show any use of userprefs, it does created a user_pref file in the spamd home directory if it does not exists SPAMDOPTIONS="-x -u spamd -H /home/spamd -d -q" thanks Sandeep