Re: [qmailtoaster] Limit specific users to domains

2007-08-11 Thread seekuel
Sir,

I will try the solution next week.

Thank you.

PakOgah [EMAIL PROTECTED] wrote: seekuel wrote:
 Hello people,

 Is there a way to limit users sending emails to a specific domain? for 
 example:

 user1 can send mails to domain1, domain2, domain3, and domain4 only 
 and cannot send mails to all other domains.

 user2 can only send mails to domain4 and domain2 only and cannot send 
 mails to all other domain.

 user3 can only send mails to domain5 only and cannot send mails to all 
 other domains.

 Is this possible with the toaster?

 Thank you,

 Sandeil

 
some say you can use empf
detail info here http://inter7.com/?page=empf


-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Respectfully yours, 
 
 
Sandeil C. Tenebro, E.C.E. 
Linux Registered User #384410
   
-
Sick sense of humor? Visit Yahoo! TV's Comedy with an Edge to see what's on, 
when. 

Re: [qmailtoaster] heavy load for latest clamav and spamd?

2007-08-11 Thread PakOgah

Philip Nix Guru wrote:

Hello
I have very busy smtp servers
using clamav 0.91.1
When I combined it with spamassassin-toaster-3.1.8-1.3.8 all is 
working fine

glad to hear that, because I was planning to upgrade clamav into ver 0.91.1
I am still using ver 0.90.1 and can't update virus definition. all 
clamav mirrors server is rejecting connection from old engine


By default *Qmail* doesn't do rDNS lookups (performance reasons), so you
need to change tcpserver to do them - which then makes SA happy again.
i.e. you want tcpserver -h instead of tcpserver -H

I have a lot of extra rules and for the performance I reverted back to 
spamassassin-toaster-3.1.8-1.3.8 on a few of my smtps


Will do more tests over the weekend

hope this weekend your tests running smoothly.
please tell us the results
can't wait till Monday


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] qmaillog backup script

2007-08-11 Thread PakOgah

Dear list,
since error 451 ... end status 256 happen to me this week and couple 
weeks ago.
I create this little script to backup qmail log, so if I am out of 
office and users complaining error about mailserver
I can trace what happen back w/o have to worry losing qmail log (of 
course the script should be ran daily)

hope this little script could be usefull also for you
note to Jake: I dont use tai64nlocal

Script name backupqmaillog.sh

#!/bin/bash
#
# qmaillog backup utility
# version 0.1
# [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
# 4 Aug 2007
# this qmaillog backup utility by default will backup
# today qmail's send and smtp log into /home/backuplog
# and keep it for the next 7 days
# enhancement are always welcome


# where your qmail log folder
# QMAILLOG=/var/log/qmail
QMAILLOG=/var/log/qmail
# what log is going to backup ?
# by default only smtp and send log only
# possible log to backup are:
# LOGS=authlib clamd imap4 imap4-ssl pop3 pop3-ssl send smtp spamd 
submission

LOGS=send smtp
# your backup destination
# folder will be created automatically
# BACKUP_DEST=/home/backuplog
BACKUP_DEST=/home/backuplog
# how long you will save the backup
# BACKUP_AGE=7 # days
BACKUP_AGE=7 # days

# 
# process
# 
DATE=`date +%Y%m%d`
TMPFILE=/tmp/backuplist
DAILY_AGE=1 # day
DAILY_AGE_MINS=$[ $DAILY_AGE * 60 * 24 ]
BACKUP_AGE_MINS=$[ $BACKUP_AGE * 60 * 24 ]

for i in $LOGS;
do
mkdir -p $BACKUP_DEST/$i
find $QMAILLOG/$i/* -cmin -$DAILY_AGE_MINS -exec ls -1 {} \;  $TMPFILE
tar czf $BACKUP_DEST/$i/$i-$DATE.tar.gz -T $TMPFILE
rm -f $TMPFILE
find $BACKUP_DEST/$i/*.tar.gz -cmin +$BACKUP_AGE_MINS -exec rm -f {} \;
done

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] heavy load for latest clamav and spamd?

2007-08-11 Thread NiX Guru
After running the new spamassassin on the dev site
the bugs in the previous versions seem fixed
No extra delay in scanning, no rdns issues tagging all emails

So far so good
I tested on fc5, centos 4.5 and cents 5, both 32  64bts OS
using the stable latest packages + clamav 0.91.1

for the info
Cheers


 Philip Nix Guru wrote:
 Hello
 I have very busy smtp servers
 using clamav 0.91.1
 When I combined it with spamassassin-toaster-3.1.8-1.3.8 all is
 working fine
 glad to hear that, because I was planning to upgrade clamav into ver
 0.91.1
 I am still using ver 0.90.1 and can't update virus definition. all
 clamav mirrors server is rejecting connection from old engine

 By default *Qmail* doesn't do rDNS lookups (performance reasons), so
 you
 need to change tcpserver to do them - which then makes SA happy again.
 i.e. you want tcpserver -h instead of tcpserver -H

 I have a lot of extra rules and for the performance I reverted back to
 spamassassin-toaster-3.1.8-1.3.8 on a few of my smtps

 Will do more tests over the weekend
 hope this weekend your tests running smoothly.
 please tell us the results
 can't wait till Monday

 I am runing spamassassin-toaster-3.2.3
 with the -H option instead of the -H in the tcpserver run file for smtp
 I never had any load ebem with 3.2.2, just scanning time was to long
 With 3.2.3 looks better .. will check later tonight the hits on the diff
 spam rules
 and scan time ...
 ad let you know



 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]