List Info

Thread: Virus: Zip.ExceededFileSize




Virus: Zip.ExceededFileSize
user name
2006-04-25 15:35:17
Heute (25.04.2006/17:12 Uhr) schrieb Mark Martinec,

> Jim,

>> >> Disable ArchiveBlockMax, it's a paranoid
security option.

>> Note: This file (attachment), what I mean, was
bigger than 10 MB

> Yes, so it triggered the ArchiveBlockMax limit in
ClamAV.
> Turn it off in clamd.conf (it is off by default).

no, it is Debian and was on. ;) Thank you. I`ll try it

>   Mark


-- 
Viele Gruesse, Kind regards,
 Jim Knuth
 jkjkart.de
 ICQ #277289867
----------
Zufalls-Zitat
----------
Die letzten Worte des Informatikers: Ich bleibe hier, bis 
das Problem gelöst ist...
----------
Der Text hat nichts mit dem Empfaenger der Mail zu tun
----------
Virus free. Checked by NOD32 Version 1.1506 Build 7150 
25.04.2006



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo
http:
//sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&
amp;3057&dat1642
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/
Bind() does not work for wx.EVT_LEFT_UP and similar key events
user name
2006-04-25 15:30:49
Hello,

I try to bind an event handler to a key event with Bind().
I does not work. Using the old macro works. Is this a bug or
a feature ?

Code:

class FrameProcess(wx.Frame):
    def __init__(self, *args, **kwds):
        # begin wxGlade: FrameProcess.__init__
        kwds["style"] = 
wx.CAPTION|wx.FRAME_NO_TASKBAR|wx.FRAME_FLOAT_ON_PARENT
        wx.Frame.__init__(self, *args, **kwds)
        self.cmdTappet = wx.Button(self, -1,
_("Tappet"))
        self.cmdLight = wx.ToggleButton(self, -1,
_("Light"))
        self.cmdGrab = wx.Button(self, -1,
_("Grab"))

        self.__set_properties()
        self.__do_layout()
        # end wxGlade

        wx.EVT_LEFT_DOWN( self.cmdTappet, self.OnTappet )
        wx.EVT_LEFT_UP( self.cmdTappet, self.OnTappet )
        # binding events with following 2 lines does not
work!
        #self.Bind( wx.EVT_LEFT_DOWN, self.OnTappet,
self.cmdTappet )
        #self.Bind( wx.EVT_LEFT_UP, self.OnTappet,
self.cmdTappet )
        self.Bind( wx.EVT_TOGGLEBUTTON, self.OnLight,
self.cmdLight )
        self.Bind( wx.EVT_BUTTON, self.OnGrab, self.cmdGrab
)

My platform:
- Windows XP,
- Python 2.3.5
- wxPython 2.6.3.2-ansi

Thanks for your help,
Matthias

-- 
Matthias Kirst

CLONDIAG chip technologies




------------------------------------------------------------
---------
To unsubscribe, e-mail: wxPython-users-unsubscribelists.wxwidgets.org
For additional commands, e-mail: wxPython-users-helplists.wxwidgets.org

Courier updates
user name
2006-04-25 15:36:53
Mark Martinec wrote:
> Martin,
> 
> > I have updated the README.courier file to
hopefully clarify the use
> > of the enablefiltering file and setting of the
protocol variable
> > through policy banks.  New version is at
> > http://www.martinorr.name/amavisd-new/2.4.0/README.cou
rier 
> > 
> > (Also the mention of $mailfrom_notify_sender has
been removed, as
> > this was only necessary for some prereleases of
amavisd-new 2.4.0.)
> > 
> > Secondly, the patch itself has been updated to
make use of
> > can_read_hook in Net::Server for knowing when to
shut down.  This
> > removes the 10 second delay between Courier
telling amavisd to stop
> > and this actually happening. It requires
Net::Server 0.90 or later.
> > The new patch is at
> >
http://www.martinorr.name/amavisd-new
/2.4.0/amavisd-new-courier-devel.patch
> > http://www.martinorr.name/amavisd-new/2.4.0/READ
ME.courier-devel
> > (Mark, if you include this in amavisd-new 2.4.1,
please remove the
> > warning from the top of the README.) 
> 
> Thanks, both patches and both texts are now in
2.4.1-pre1 :
> 
> - bug fix in a Courier setup: add a missing reset of
per-recipient
>   data to prevent previous check from affecting the
next one within a
>   context of the same process; fix by Martin Orr,
reported by Bowie
>   Bailey; 
> 
> - the amavisd-new-courier.patch now requires
Net::Server version 0.90
>   or later (preferably 0.93 or later); to use older
version of
>   Net::Server please apply the older
amavisd-new-courier-old.patch
>   and follow README.courier-old - both will go away
with next version
>   of amavisd-new; 

Great!  I took a look at the new README and it seems to
include
all the gotchas that I ran into during my last installation.
 I'm
about to do another install, so I'll follow the new README
and verify
that nothing is left out.

I think I'll use the Amavisd-new 2.4.0 release with your
updated patch
for this install.  Let me know if there is a good reason I
should go
with 2.4.1-pre1 instead.

-- 
Bowie


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo
http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/
Courier updates
user name
2006-04-25 15:55:03
Bowie,

> Great!  I took a look at the new README and it seems to
include
> all the gotchas that I ran into during my last
installation.  I'm
> about to do another install, so I'll follow the new
README and verify
> that nothing is left out.
>
> I think I'll use the Amavisd-new 2.4.0 release with
your updated patch
> for this install.  Let me know if there is a good
reason I should go
> with 2.4.1-pre1 instead.

Lets put it this way: there is no good reason to install
2.4.0
now that 2.4.1-pre1 is there. Other changes are reasonably
small,
and skipping the 2.4.0 step avoids one compatibility issue
(specific to 2.4.0) with the change in notification
templates
and the (re)numbering of content categories.

  Mark


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo
http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/
Courier updates
user name
2006-04-25 15:55:03
Bowie,

> Great!  I took a look at the new README and it seems to
include
> all the gotchas that I ran into during my last
installation.  I'm
> about to do another install, so I'll follow the new
README and verify
> that nothing is left out.
>
> I think I'll use the Amavisd-new 2.4.0 release with
your updated patch
> for this install.  Let me know if there is a good
reason I should go
> with 2.4.1-pre1 instead.

Lets put it this way: there is no good reason to install
2.4.0
now that 2.4.1-pre1 is there. Other changes are reasonably
small,
and skipping the 2.4.0 step avoids one compatibility issue
(specific to 2.4.0) with the change in notification
templates
and the (re)numbering of content categories.

  Mark


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo
http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
AMaViS-user mailing list
AMaViS-userlists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amavis-user

AMaViS-FAQ:http://www.amav
is.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/ho
wto/
[1-5]

about | contact  Other archives ( Real Estate discussion Medical topics )