Re: [qmailtoaster] Re: spam filter configuration change

2012-10-23 Thread Giuseppe Perna
thanks Eric for you replay I now install spamdyke.. I could tell where they are inserted spam emails and how to release in the event of a false positive? thanks 2012/10/22 Eric Shubert e...@shubes.net On 10/22/2012 12:13 PM, Giuseppe Perna wrote: thanks for your replay. i wont install

Re: [qmailtoaster] Re: Error - no authentication database connection.Initial open.

2012-10-23 Thread Giuseppe Perna
Thanks eric for you replay, this output: cat /var/qmail/control/simcontrol :clam=yes,spam=yes,spam_hits=12,attach=.mp3:.src:.bat:.pif cat /etc/tcprules.d/tcp.smtp 127.:allow,RELAYCLIENT=,DKSIGN=/var/qmail/control/domainkeys/%/private

[qmailtoaster] How to migrate from postfix mbox to QMT?

2012-10-23 Thread Giuseppe Perna
Good morning to all, do you think there's a tool, a software, a script that allows me to migrate mail accounts in postfix mbox qmailtoaster? to me it would be enough just to move the email. thanks --

[qmailtoaster] use ip tables to limit connections

2012-10-23 Thread Rajesh M
hi is there any harm in using ip tables to limit connections per second or per minute to the qmailtoaster mail server to ward off spammer. iptables -I INPUT -p tcp --dport 25 -m state --state NEW -m recent --update --seconds 30 --hitcount 10 -j DROP has anybody tried this ? recently i a rogue

[qmailtoaster] Catch-all like Google Apps

2012-10-23 Thread Alessio Cecchi
Hi, Google Apps has a special way to manage incoming emails to non existent users when catch-all is enabled. For example, mydomain.com is hosted at Google and have catch-all to a...@mydomain.com. Somebody send me an email message with 2 (non existent) recipients

[qmailtoaster] Re: newmodel update issues

2012-10-23 Thread Eric Shubert
Did you enter yspace or something? It needs to match y or Y specifically (or nothing, as this is the default action). If you simply rerun qtp-newmodel, it should get you to that point again fairly quickly, recognizing that everything is already built and ready to go. On 10/22/2012 08:06 PM, G

[qmailtoaster] Re: spam filter configuration change

2012-10-23 Thread Eric Shubert
Spamdyke either accepts or rejects messages. When they're rejected, the sending server is responsible for generating a bounce back to the sender. If someone reports a false positive to you, please ask here on the list what the best way to allow it would be. There are several whitelisting

[qmailtoaster] Re: Error - no authentication database connection.Initial open.

2012-10-23 Thread Eric Shubert
You should have as the 2nd line in tcp.smtp: :allow,BADMIMETYPE=,BADLOADERTYPE=M,CHKUSER_RCPTLIMIT=50,CHKUSER_WRONGRCPTLIMIT=10,QMAILQUEUE=/var/qmail/bin/simscan,NOP0FCHECK=1 Change it, then run # service qmail cdb -- -Eric 'shubes' On 10/23/2012 12:01 AM, Giuseppe Perna wrote: Thanks eric

Re: [qmailtoaster] Re: newmodel update issues

2012-10-23 Thread G V
Yes i did just y. This has happened before too. Then I have rerun it and it may do the same thing or it may work. I have tried mutliple times. I will try again. Thanks, George On Tue, Oct 23, 2012 at 8:45 AM, Eric Shubert e...@shubes.net wrote: Did you enter yspace or something? It needs to

Re: [qmailtoaster] Re: newmodel update issues

2012-10-23 Thread G V
It ran perfectly this time and restarted qmail. In the end it failed to unmount the sandbox. It still seems to not have updated. I have found one line in output and have it bold below. qtp-ami-up2date New Qmail-Toaster Packages Available: available: vpopmail-toaster-5.4.33-1.4.0 (installed:

[qmailtoaster] Re: newmodel update issues

2012-10-23 Thread Eric Shubert
This is very peculiar. What do you have for: # rpm -qa | grep fuse | sort What is the size and md5sum of your /usr/src/qtp-upgrade/RPMS/courier-authlib-toaster-0.59.2-1.3.10.i686.rpm ? -- -Eric 'shubes' On 10/23/2012 09:52 AM, G V wrote: It ran perfectly this time and restarted qmail. In

Re: [qmailtoaster] Catch-all like Google Apps

2012-10-23 Thread Tonix (Antonio Nati)
Il 23/10/2012 17:13, Alessio Cecchi ha scritto: Hi, Google Apps has a special way to manage incoming emails to non existent users when catch-all is enabled. For example, mydomain.com is hosted at Google and have catch-all to a...@mydomain.com. Somebody send me an email message with 2 (non

Re: [qmailtoaster] Re: newmodel update issues

2012-10-23 Thread G V
On Tue, Oct 23, 2012 at 10:11 AM, Eric Shubert e...@shubes.net wrote: This is very peculiar. What do you have for: # rpm -qa | grep fuse | sort rpm -qa | grep fuse | sort dkms-fuse-2.7.4-1.nodist.rf fuse-2.8.0-1.qtp fuse-unionfs-0.23-2.qtp What is the size and md5sum of your

[qmailtoaster] Re: newmodel update issues

2012-10-23 Thread Eric Shubert
For some reason, it appears that the part which copies the binary rpms out of the sandbox into the main filesystem is hosing the rpms somehow. Probably something to do with the unionfs. I seem to remember seeing your kernel version, but can't find it now. Please post: # qtp-whatami Thanks.

[qmailtoaster] Re: newmodel update issues

2012-10-23 Thread Eric Shubert
I've looked at the code a bit (it's been a while since I wrote this). It appears that there should be a /usr/src/qtp-upgrade/RPMS/ directory which is used for updating the actual RPMS. Do you have this directory? If so, please wipe it out, remove rpms from the build tree, and try again with a

Re: [qmailtoaster] Re: newmodel update issues

2012-10-23 Thread G V
Here you go. qtp-whatami qtp-whatami v0.3.8 Tue Oct 23 11:03:44 PDT 2012 REAL_DIST=CentOS DISTRO=CentOS OSVER=5.8 QTARCH=i686 QTKERN=2.6.18-308.16.1.el5PAE BUILD_DIST=cnt50 BUILD_DIR=/usr/src/redhat This machine's OS is supported and has been tested Thanks On Tue, Oct 23, 2012 at 10:37 AM, Eric

Re: [qmailtoaster] Re: Error - no authentication database connection.Initial open.

2012-10-23 Thread Giuseppe Perna
thanks eric, you really are a genius. now it all works. where can I find the meaning of these terms? CHKUSER_**RCPTLIMIT= CHKUSER_**WRONGRCPTLIMIT NOP0FCHECK= thanks 2012/10/23 Eric Shubert e...@shubes.net You should have as the 2nd line in tcp.smtp:

[qmailtoaster] Re: Error - no authentication database connection.Initial open.

2012-10-23 Thread Eric Shubert
On 10/23/2012 11:16 AM, Giuseppe Perna wrote: thanks eric, you really are a genius. now it all works. where can I find the meaning of these terms? CHKUSER___RCPTLIMIT= CHKUSER___WRONGRCPTLIMIT NOP0FCHECK= thanks CHKUSER is a qmail patch written by our friend Antonio Nati. Documentation is

Re: [qmailtoaster] Re: newmodel update issues

2012-10-23 Thread G V
Eric, Thanks for all your help. Cleaned out those directories and tried again. Same issue. Starting the install/upgrade ... qtp-remove-pkgs v0.3.1 Here goes 'rpm -Uvh' for the packages we're processing ... /usr/src/qtp-upgrade/RPMS/courier-authlib-toaster-0.59.2-1.3.10.i686.rpm: not an rpm package

[qmailtoaster] Re: newmodel update issues

2012-10-23 Thread Eric Shubert
Ok, George. Let's keep digging. There's something weird going on here. # cd /usr/src/qtp-upgrade/RPMS # ls -l *.i686.rpm # md5sum *.i686.rpm Then, with sandbox still mounted: # cd /mnt/qtp-sandbox/usr/src/redhat/RPMS/i686 # ls -l *.i686.rpm # md5sum *.i686.rpm The file sizes and md5sums should

Re: [qmailtoaster] Re: newmodel update issues

2012-10-23 Thread G V
On 10/23/2012 9:47 PM, Eric Shubert wrote: Ok, George. Let's keep digging. There's something weird going on here. # cd /usr/src/qtp-upgrade/RPMS # ls -l *.i686.rpm -rw-r--r-- 1 root root 307536 Oct 23 22:17 courier-authlib-toaster-0.59.2-1.3.10.i686.rpm -rw-r--r-- 1 root root 853017 Oct 23