Hi,
First of all, I have been searching a lot about this error but haven't yet found a solution, that's why I'm posting to the list.

When I try to send a spam to [EMAIL PROTECTED] I get the error:

Jan 11 12:19:35 opty dspam[30714]: Signature retrieval for '1,45a61504302281497317132' failed Jan 11 12:19:35 opty dspam[30714]: Unable to find a valid signature. Aborting. Jan 11 12:19:35 opty dspam[30714]: process_message returned error -5. dropping message.

From MySQL query logs I see that dspam is running the following query:
select uid from dspam_virtual_uids where username = 'username'
when it SHOULD be
select uid from dspam_virtual_uids where username = '[EMAIL PROTECTED]'

Because that's how they show up in the table dspam_virtual_uids.

I have enabled domain-scale when I compiled dspam.

I'm running Exim as mailserver and have a dspam_addspam transport that's taking care of the part. The pipe command looks like this:

/usr/local/bin/dspam --user "[EMAIL PROTECTED]" --class=spam --source=error

So, why is dspam looking up just the username in the virtual_uids table and not [EMAIL PROTECTED]

Thanks,
Patrik

And finally, here's my dspam.conf:

Home /var/db/dspam
StorageDriver /usr/local/lib/libmysql_drv.so
TrustedDeliveryAgent "/usr/local/sbin/exim"
OnFail error
Trust root
Trust mail
Trust mailnull
Trust smmsp
Trust daemon
Trust mailman
Trust www
Trust exim
Debug *
DebugOpt process spam fp inoculation corpus
TrainingMode tum
TestConditionalTraining on
Feature whitelist
Algorithm graham burton
Tokenizer chain
PValue bcr
WebStats on
ImprobabilityDrive on
Preference "spamAction=quarantine"
AllowOverride trainingMode
AllowOverride spamAction spamSubject
AllowOverride statisticalSedation
AllowOverride enableBNR
AllowOverride enableWhitelist
AllowOverride signatureLocation
AllowOverride showFactors
AllowOverride optIn optOut
AllowOverride whitelistThreshold
MySQLServer             localhost
MySQLPort               3306
MySQLUser               dspam
MySQLPass               --------
MySQLDb                 dspam
MySQLCompress           true
MySQLConnectionCache    10
MySQLUIDInSignature    on
HashRecMax              98317
HashAutoExtend          on
HashMaxExtents          0
HashExtentSize          49157
HashPctIncrease 10
HashMaxSeek             10
HashConnectionCache     10
Notifications   on
LocalMX 127.0.0.1
SystemLog on
UserLog   on
Opt out
TrackSources spam
ParseToHeaders on
ChangeModeOnParse on
ChangeUserOnParse on
ServerPort              24
ServerQueueSize 32
ServerPID              /var/run/dspam.pid
ServerMode standard
ServerParameters        "--deliver=innocent"
ServerIdent             "localhost.localdomain"
ClientHost      127.0.0.1
ClientPort      24
ClientIdent     "[EMAIL PROTECTED]"
ProcessorURLContext on
ProcessorBias on

Reply via email to