Re: [dspam-users] problem with new dspam installation

2008-12-10 Thread chance
basically just trying to get this running on my OS X tiger server to  
help make the email accounts usable again.   Any help would be verrry  
much appreciated!


-Chance


Built with:

/configure --enable-daemon \
--with-storage-driver=mysql_drv \
--with-mysql-includes=/usr/local/mysql/include \
--with-mysql-libraries=/usr/local/mysql/lib/mysql \
--enable-preferences-extension \
--with-dspam-home-owner=dspam \
--with-dspam-home-group=postdrop \
--with-dspam-home=/usr/local/var/dspam \
--enable-long-usernames \
--with-dspam-group=postdrop \
--enable-mysql4-initialization \
--enable-domain-scale \
--enable-virtual-users \
--enable-debug \
--enable-verbose-debug



DSPAM.CONF

Home /usr/local/var/dspam
StorageDriver /usr/local/lib/libmysql_drv.so
TrustedDeliveryAgent "/usr/bin/procmail"
OnFail error
Trust root
Trust mail
Trust mailnull
Trust smmsp
Trust daemon
TrainingMode teft
TestConditionalTraining on
Feature whitelist
Algorithm graham burton
Tokenizer chain
PValue bcr
WebStats on
Preference "spamAction=quarantine"
Preference "signatureLocation=message"  # 'message' or 'headers'
Preference "showFactors=on"
AllowOverride trainingMode
AllowOverride spamAction spamSubject
AllowOverride statisticalSedation
AllowOverride enableBNR
AllowOverride enableWhitelist
AllowOverride signatureLocation
AllowOverride showFactors
AllowOverride optIn optOut
AllowOverride whitelistThreshold
HashRecMax  98317
HashAutoExtend  on
HashMaxExtents  0
HashExtentSize  49157
HashPctIncrease 10
HashMaxSeek 10
HashConnectionCache 10
Notifications   off
PurgeSignatures 14  # Stale signatures
PurgeNeutral90  # Tokens with neutralish probabilities
PurgeUnused 90  # Unused tokens
PurgeHapaxes30  # Tokens with less than 5 hits (hapaxes)
PurgeHits1S 15  # Tokens with only 1 spam hit
PurgeHits1I 15  # Tokens with only 1 innocent hit
LocalMX 127.0.0.1
SystemLog on
UserLog   on
Opt out
ProcessorURLContext on
ProcessorBias on


Thank you for taking the time to help me with this...
-Chance


On Dec 8, 2008, at 4:17 AM, Kyle Johnson wrote:

I think it would be helpful to post the contents of your dspam.conf  
file, as well as the options that you used to compile dspam with.


-Kyle

On Mon, Dec 8, 2008 at 1:06 AM, chance <[EMAIL PROTECTED]> wrote:
Hey,

I'm new here and I'm not sure the best channels for obtaining help,  
but I've stumbled trough about as far as I can go.


I have installed dspam 3.8.0 on a OS X 10.4 server using various  
reference snippets I found online (primarily at switch.richard5.net)


and I managed to get the thing built, with a system user and mysql  
user/db set up, I also think I may have even gotten it inserted  
into the mail stream.



I have one BIG question when it comes to setting up the virtualHost  
for the interface, it seems I have NO documentation for that, also,  
it seems I may have not been completely successful with the  
intergration into the mail stream because I am not getting new  
messages in my inbox.


Basically, I'm just curious where I'd need to go to get some  
pointers on how to smooth out the wrinkles of my install, I was  
keeping some notes on what I've done so far, I'll post the below.   
Any help is MUCH appreciated!


dspam dir:   /usr/local/dspam

mysqladmin -p create dspam
mysql -u root -p dspam < ../src/tools.mysql_drv/mysql_objects-4.1.sql
mysql>grant all on dspam.* to [EMAIL PROTECTED]
 identified by 'dspampassword';
mysql -u root -p dspam < ../src/tools.mysql_drv/virtual_users.sql
sudo pico /usr/local/etc/dspam.conf
  -extensive mods made, saved old to dspam.conf.old
sudo chmod o+x /usr/local/bin/dspam
sudo pico /etc/postfix/master.cf
  -extensive mods made, saved old to

/etc/postfix/dspam_filter_access

  -content:

/./ FILTER dspam:dspam

sudo postmap /etc/postfix/dspam_filter_access

sudo pico /etc/postfix/main.cf
  -extensive mods made, saved old to
  -smtpd_recipient_restrictions = check_client_access pcre:/etc/ 
postfix/dspam_filter_access



sudo /usr/local/bin/dspam --daemon &
sudo pos tfix reload

/usr/local/bin/dspam_startup
   -with contents
sudo chmod +x /usr/local/bin/dspam_startup
add /Library/StartupItems/DSpam/  as a StartupItem
sudo pico /etc/hostconfig
DSPAMDAEMON=-YES-

change the dspam tab les to innoDB

sudo /etc/squirrelmail/config/conf.pl


Thanks,
Chance










--
Thank you,
Kyle Johnson
(410) 370-3252
[EMAIL PROTECTED]



Thanks,
Chance








!DSPAM:1011,49409db9150921711917806!


Re: [dspam-users] problem with new dspam installation

2008-12-08 Thread Kyle Johnson
I think it would be helpful to post the contents of your dspam.conf file, as
well as the options that you used to compile dspam with.

-Kyle

On Mon, Dec 8, 2008 at 1:06 AM, chance <[EMAIL PROTECTED]> wrote:

> Hey,
> I'm new here and I'm not sure the best channels for obtaining help, but
> I've stumbled trough about as far as I can go.
>
> I have installed dspam 3.8.0 on a OS X 10.4 server using various reference
> snippets I found online (primarily at switch.richard5.net)
>
> and I managed to get the thing built, with a system user and mysql user/db
> set up, I also think I may have even gotten it inserted into the mail
> stream.
>
>
> I have one BIG question when it comes to setting up the virtualHost for the
> interface, it seems I have NO documentation for that, also, it seems I may
> have not been completely successful with the intergration into the mail
> stream because I am not getting new messages in my inbox.
>
> Basically, I'm just curious where I'd need to go to get some pointers on
> how to smooth out the wrinkles of my install, I was keeping some notes on
> what I've done so far, I'll post the below.  Any help is MUCH appreciated!
>
> *dspam dir:   /usr/local/dspam*
> *
> *
> *mysqladmin -p create dspam*
> *mysql -u root -p dspam < ../src/tools.mysql_drv/mysql_objects-4.1.sql*
> *mysql>grant all on dspam.* to [EMAIL PROTECTED]
> * identified by 'dspampassword';*
> *mysql -u root -p dspam < ../src/tools.mysql_drv/virtual_users.sql*
> *sudo pico /usr/local/etc/dspam.conf *
>   -extensive mods made, saved old to dspam.conf.old
> *sudo chmod o+x /usr/local/bin/dspam*
> *sudo pico /etc/postfix/master.cf*
> *  -extensive mods made, saved old to *
>
> */etc/postfix/dspam_filter_access*
>
>   -content:
> */./ FILTER dspam:dspam*
>
> *sudo postmap /etc/postfix/dspam_filter_access*
> *
> sudo pico /etc/postfix/main.cf
>   -extensive mods made, saved old to
>   -smtpd_recipient_restrictions = check_client_access
> pcre:/etc/postfix/dspam_filter_access
> *
>
>
> *sudo /usr/local/bin/dspam --daemon &*
> *sudo pos tfix reload
>
> /usr/local/bin/dspam_startup
>-with contents
> sudo chmod +x /usr/local/bin/dspam_startup
> add /Library/StartupItems/DSpam/  as a StartupItem
> sudo pico /etc/hostconfig
> DSPAMDAEMON=-YES-
>
> change the dspam tab les to innoDB
>
> sudo /etc/squirrelmail/config/conf.pl
> *
>
>
> Thanks,
>
> Chance
>
>
>
>
>
>
>
> 
>



-- 
Thank you,
Kyle Johnson
(410) 370-3252
[EMAIL PROTECTED]


!DSPAM:1011,493d0248150924039265501!