Guest User

Untitled

a guest
May 4th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. # --- MySQL ---
  2.  
  3. #
  4. # Storage driver settings: Specific to a particular storage driver. Uncomment
  5. # the configuration specific to your installation, if applicable.
  6. #
  7. MySQLServer /var/run/mysqld/mysqld.sock
  8. #MySQLPort 3306
  9. MySQLUser XXXXX
  10. MySQLPass XXXXX
  11. MySQLDb dspam
  12. MySQLCompress true
  13. MySQLReconnect true
  14.  
  15. # If you are using replication for clustering, you can also specify a separate
  16. # server to perform all writes to.
  17. #
  18. #MySQLWriteServer /var/run/mysqld/mysqld.sock
  19. #MySQLWritePort 3306
  20. #MySQLWriteUser dspam
  21. #MySQLWritePass changeme
  22. #MySQLWriteDb dspam_write
  23. #MySQLCompress true
  24. #MySQLReconnect true
  25.  
  26. # If your replication isn't close to real-time, your retraining might fail if
  27. # the signature isn't found. One workaround for this is to use the write
  28. # database for all signature reads:
  29. #
  30. #MySQLReadSignaturesFromWriteDb on
  31.  
  32. # If you're running DSPAM in client/server (daemon) mode, uncomment the
  33. # setting below to override the default connection cache size (the number
  34. # of connections the server pools between all clients). The connection cache
  35. # represents the maximum number of database connections *available* and should
  36. # be set based on the maximum number of concurrent connections you're likely
  37. # to have. Each connection may be used by only one thread at a time, so all
  38. # other threads _will block_ until another connection becomes available.
  39. #
  40. MySQLConnectionCache 20
  41.  
  42. # If you're using vpopmail or some other type of virtual setup and wish to
  43. # change the table dspam uses to perform username/uid lookups, you can over-
  44. # ride it below
  45.  
  46. #MySQLVirtualTable dspam_virtual_uids
  47. #MySQLVirtualUIDField uid
  48. #MySQLVirtualUsernameField username
  49.  
  50. # UIDInSignature: MySQL supports the insertion of the user id into the DSPAM
  51. # signature. This allows you to create one single spam or fp alias
  52. # (pointing to some arbitrary user), and the uid in the signature will
  53. # switch to the correct user. Result: you need only one spam alias
  54.  
  55. MySQLUIDInSignature on
Advertisement
Add Comment
Please, Sign In to add comment