wmail 1.9
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 151
wmail 1.9
wmail is a Window Maker docklet watching your inbox, which is either a ordinary mbox or a directory conforming to qmails Maildir more>>
wmail is a Window Maker docklet watching your inbox, which is either a ordinary mbox or a directory conforming to qmails Maildir format.
It provides a nice little GUI displaying some useful pieces of information about your inbox (as many other nice wm-apps doing nearly the same thing...).
Per default it uses the $MAIL environment-variable to locate the inbox you are using, other mailing mechanisms like POP or IMAP are not supported - use a tool like fetchmail to retrieve POP- or IMAP-based mail.
Enhancements:
- Support for comments in From-header added (by Juergen A. Erhard - thank you!)
- Status field content recognition enhanced: now you can supply the content of a status field that markes your email as read. This is due to different behaviour of different mbox readers
- pine seems using "ro" to mark a mail as read. The given value is substring-matched.
<<lessIt provides a nice little GUI displaying some useful pieces of information about your inbox (as many other nice wm-apps doing nearly the same thing...).
Per default it uses the $MAIL environment-variable to locate the inbox you are using, other mailing mechanisms like POP or IMAP are not supported - use a tool like fetchmail to retrieve POP- or IMAP-based mail.
Enhancements:
- Support for comments in From-header added (by Juergen A. Erhard - thank you!)
- Status field content recognition enhanced: now you can supply the content of a status field that markes your email as read. This is due to different behaviour of different mbox readers
- pine seems using "ro" to mark a mail as read. The given value is substring-matched.
Download (0.027MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
644 downloads
Matew 1.9
Matew provides a valid HTML/CSS generator for static image albums. more>>
Matew provides a valid HTML/CSS generator for static image albums.
Matew is a valid HTML/CSS generator for static image albums. It supports retrieving information from EXIF cameras and includes customizable options like character set encoding.
Albums may contain sub-albums, and the appearance of an album can be fully personalized and customized by choosing a CSS style file and setting names and descriptions of albums and individual images.
Main features:
- Albums can contain sub albums: The album can have a tree structure;
- Automatical generation of a thumbnail and of scaled images for each image;
- EXIF information: Use of EXIF data structure found on some image files (usually, those produced by digital cameras and images softwares manipulation) to fill automatically some fields (camera model, date and time for example);
- Easy to use matew-wizard script to set the configuration file. Some of the fields it handles are:
- Character encoding for HTML generation, including UTF-8 (Unicode) support by default;
- Generated album appearance is customizable by choosing a default CSS style files or editing your own one;
- Internationalization (generation of album in different languages) by choosing a language file. Current supported languages are english, brazilian portuguese, italian, sweden and croatian;
- Support for a standard link to an external file;
- Thumbnails per page: You can choose how many thumbnails per column and per line the album will visualize.
- Three description fields (name, description and image identifier) can be associated with each album (in text or HTML format). You can easily customize these fields.
Enhancements:
- Added swedish language support file
- Revised checks() function
- Source code revised
- Small bug fixed in matew
<<lessMatew is a valid HTML/CSS generator for static image albums. It supports retrieving information from EXIF cameras and includes customizable options like character set encoding.
Albums may contain sub-albums, and the appearance of an album can be fully personalized and customized by choosing a CSS style file and setting names and descriptions of albums and individual images.
Main features:
- Albums can contain sub albums: The album can have a tree structure;
- Automatical generation of a thumbnail and of scaled images for each image;
- EXIF information: Use of EXIF data structure found on some image files (usually, those produced by digital cameras and images softwares manipulation) to fill automatically some fields (camera model, date and time for example);
- Easy to use matew-wizard script to set the configuration file. Some of the fields it handles are:
- Character encoding for HTML generation, including UTF-8 (Unicode) support by default;
- Generated album appearance is customizable by choosing a default CSS style files or editing your own one;
- Internationalization (generation of album in different languages) by choosing a language file. Current supported languages are english, brazilian portuguese, italian, sweden and croatian;
- Support for a standard link to an external file;
- Thumbnails per page: You can choose how many thumbnails per column and per line the album will visualize.
- Three description fields (name, description and image identifier) can be associated with each album (in text or HTML format). You can easily customize these fields.
Enhancements:
- Added swedish language support file
- Revised checks() function
- Source code revised
- Small bug fixed in matew
Download (MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
927 downloads
ImageInfo 1.9
ImageInfo is a free Java class to retrieve properties from image files. more>>
ImageInfo is a free Java class to retrieve properties from image files.
The following file formats are currently supported: JPEG, PNG, GIF, BMP, PCX, IFF, RAS, PBM, PGM, PPM and PSD (read why TIFF is not included). ImageInfo can recognize these formats, and in addition determine image width, height and color depth (bits per pixel).
Also check out ffident, my file format (group) and MIME type identification library. It extracts less information than ImageInfo (it only recognizes the format, no metadata), but it supports more formats and new formats can be added by editing a text file. Similar to file(1) / magic(5).
Using ImageInfo from within a Java application or applet
The image file can be any InputStream object or an instance of a class implementing DataInput (like RandomAccessFile). Here is some sample code on how to use the class:
ImageInfo ii = new ImageInfo();
// in can be InputStream or RandomAccessFile (or DataInput)
ii.setInput(in);
/* if you want to know how many images there are in a file,
uncomment the following line; will slow down ImageInfo
with animated GIFs */
//ii.setDetermineImageNumber(true);
// check does the actual work, you wont get results before
// you have called it
if (!ii.check())
{
System.err.println("Not a supported image file format.");
}
else
{
System.out.println(
ii.getFormatName() + ", " +
ii.getMimeType() + ", " +
ii.getWidth() + " x " + ii.getHeight() + " pixels, " +
ii.getBitsPerPixel() + " bits per pixel, " +
ii.getNumberOfImages() + " image(s).");
// there are other properties, check out the API documentation
}
Using ImageInfo as a command line program
ImageInfo also has a main method that makes it a command line tool. Assuming that ImageInfo.class is in your classpath, giving the class to java with some file names as arguments will be sufficient. Here is an example call including output:
$ java ImageInfo test.jpg
test.jpg
File format: JPEG
MIME type: image/jpeg
Width (pixels): 1556
Height (pixels): 2048
Bits per pixel: 24
Progressive: false
Number of images: 1
Physical width (dpi): 300
Physical height (dpi): 300
Physical width (inches): 5.1866665
Physical height (inches): 6.826667
<<lessThe following file formats are currently supported: JPEG, PNG, GIF, BMP, PCX, IFF, RAS, PBM, PGM, PPM and PSD (read why TIFF is not included). ImageInfo can recognize these formats, and in addition determine image width, height and color depth (bits per pixel).
Also check out ffident, my file format (group) and MIME type identification library. It extracts less information than ImageInfo (it only recognizes the format, no metadata), but it supports more formats and new formats can be added by editing a text file. Similar to file(1) / magic(5).
Using ImageInfo from within a Java application or applet
The image file can be any InputStream object or an instance of a class implementing DataInput (like RandomAccessFile). Here is some sample code on how to use the class:
ImageInfo ii = new ImageInfo();
// in can be InputStream or RandomAccessFile (or DataInput)
ii.setInput(in);
/* if you want to know how many images there are in a file,
uncomment the following line; will slow down ImageInfo
with animated GIFs */
//ii.setDetermineImageNumber(true);
// check does the actual work, you wont get results before
// you have called it
if (!ii.check())
{
System.err.println("Not a supported image file format.");
}
else
{
System.out.println(
ii.getFormatName() + ", " +
ii.getMimeType() + ", " +
ii.getWidth() + " x " + ii.getHeight() + " pixels, " +
ii.getBitsPerPixel() + " bits per pixel, " +
ii.getNumberOfImages() + " image(s).");
// there are other properties, check out the API documentation
}
Using ImageInfo as a command line program
ImageInfo also has a main method that makes it a command line tool. Assuming that ImageInfo.class is in your classpath, giving the class to java with some file names as arguments will be sufficient. Here is an example call including output:
$ java ImageInfo test.jpg
test.jpg
File format: JPEG
MIME type: image/jpeg
Width (pixels): 1556
Height (pixels): 2048
Bits per pixel: 24
Progressive: false
Number of images: 1
Physical width (dpi): 300
Physical height (dpi): 300
Physical width (inches): 5.1866665
Physical height (inches): 6.826667
Download (0.027MB)
Added: 2006-11-14 License: Public Domain Price:
1085 downloads
PeaZip 1.9
PeaZip is an archiving application, archive/extract: 001 (raw file split/join), 7z, 7zip sfx, Bzip2, Gzip, Pea, Tar, Z, Zip. more>>
PeaZip project is an archiver tool that supports its native Pea archive format (featuring compression, split volumes, and flexible encryption and integrity check schemes) and other mainstream formats, with special focus on handling open formats.
Full support: 7Z, 7-Zip sfx, Bzip2, Gzip, PEA, split TAR and ZIP.
Browse/test/extract-only support for ARJ, CAB, CHM, CPIO, DEB, ISO, LZH, NSIS installers, OOo files, RAR, RPM, Z.
PeaZips UI aims giving aid to the user to: edit, save and restore layout of archives (input files and folders list) to speed up definition of archiving and backup operations; save job definition, as plain text, to be used in scripts or for learning purpose; have a detailed job log after each operation.
The interface is fully skinnable (skins can be customised and saved as plain text to be re-edited as freely as possible) and uses customisable transparency.
The program doesnt need to be installed/unistalled, it can run from any path (even remote; a writeable path is recommended), however Windows version is released both as a standalone binary and as a fully automated installer/uninstaller package, allowing tight system integration to use PeaZip right from Explorer.
PeaZip acts as a graphic frontend for Pea executable (graphical) from the same Author and for Igor Pavlovs 7z executable (Myspaces 7z POSIX port under Linux), that can run in console mode or through a graphical wrapper to allow more user-friendly handling of output information.
Enhancements:
- Release 1.9 introduces several updates, new functions and interface enhancements over 1.8 series, based on feedback collected on previous 1.8 release series, featuring a substantially renewed user interface driven to a cleaner design and better usability. The layout composer and the archive browser were improved, introducing multiple selection, AZ/ZA sorting, better designed popup menus, options organized in a tabs, archive browsing navigation bar, recent archives history and many other under the hood usability improvements; see change log for a detailed description.
<<lessFull support: 7Z, 7-Zip sfx, Bzip2, Gzip, PEA, split TAR and ZIP.
Browse/test/extract-only support for ARJ, CAB, CHM, CPIO, DEB, ISO, LZH, NSIS installers, OOo files, RAR, RPM, Z.
PeaZips UI aims giving aid to the user to: edit, save and restore layout of archives (input files and folders list) to speed up definition of archiving and backup operations; save job definition, as plain text, to be used in scripts or for learning purpose; have a detailed job log after each operation.
The interface is fully skinnable (skins can be customised and saved as plain text to be re-edited as freely as possible) and uses customisable transparency.
The program doesnt need to be installed/unistalled, it can run from any path (even remote; a writeable path is recommended), however Windows version is released both as a standalone binary and as a fully automated installer/uninstaller package, allowing tight system integration to use PeaZip right from Explorer.
PeaZip acts as a graphic frontend for Pea executable (graphical) from the same Author and for Igor Pavlovs 7z executable (Myspaces 7z POSIX port under Linux), that can run in console mode or through a graphical wrapper to allow more user-friendly handling of output information.
Enhancements:
- Release 1.9 introduces several updates, new functions and interface enhancements over 1.8 series, based on feedback collected on previous 1.8 release series, featuring a substantially renewed user interface driven to a cleaner design and better usability. The layout composer and the archive browser were improved, introducing multiple selection, AZ/ZA sorting, better designed popup menus, options organized in a tabs, archive browsing navigation bar, recent archives history and many other under the hood usability improvements; see change log for a detailed description.
Download (MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
812 downloads
NAS 1.9
The Network Audio System is a network transparent, client/server audio transport system. more>>
NAS (Network Audio System) is a network transparent, client/server audio transport system.
Network Audio System (NAS), originally developed at Network Computing Devices (NCD), includes:
Sample server implementations
- VOXware/OSS (FreeBSD, Linux, SVR4.[02], UnixWare, Microsoft Windows using Cygwin)
- HPUX (HPPA, HP-UX 10.x, 11.x)
- Sun Sparc/Intel Solaris 2.x, AM79C30A Digital Subscriber Controller and Sparc 10 Dual
- SGI Indigo (IRIX 5.x)
An application programming interface library
A variety of sample applications
Main features:
- Device-independent audio over the network
- Lots of audio file and data formats
- Can store sounds in server for rapid replay
- Extensive mixing, separating, and manipulation of audio data
- Simultaneous use of audio devices by multiple applications
- Use by a growing number of ISVs
- Small size
- Free! No obnoxious licensing terms
Enhancements:
- This version fixes several DOS attacks that could be carried out against a nasd server.
- Most of the server and client code was made ANSI compliant.
- Input and output mixer handling in the voxware (OSS) server was significantly reworked.
<<lessNetwork Audio System (NAS), originally developed at Network Computing Devices (NCD), includes:
Sample server implementations
- VOXware/OSS (FreeBSD, Linux, SVR4.[02], UnixWare, Microsoft Windows using Cygwin)
- HPUX (HPPA, HP-UX 10.x, 11.x)
- Sun Sparc/Intel Solaris 2.x, AM79C30A Digital Subscriber Controller and Sparc 10 Dual
- SGI Indigo (IRIX 5.x)
An application programming interface library
A variety of sample applications
Main features:
- Device-independent audio over the network
- Lots of audio file and data formats
- Can store sounds in server for rapid replay
- Extensive mixing, separating, and manipulation of audio data
- Simultaneous use of audio devices by multiple applications
- Use by a growing number of ISVs
- Small size
- Free! No obnoxious licensing terms
Enhancements:
- This version fixes several DOS attacks that could be carried out against a nasd server.
- Most of the server and client code was made ANSI compliant.
- Input and output mixer handling in the voxware (OSS) server was significantly reworked.
Download (1.4MB)
Added: 2007-04-11 License: MIT/X Consortium License Price:
928 downloads
camE 1.9
camE is an imlib2 webcam grabber, annotator, and uploader. more>>
camE is a Webcam grabber designed for video4linux devices. It is based on the xawtv webcam app, but extended to use imlib2 for applying antialised, blended truetype fonts to the image before upload.
A large number of new options have been added including scp support (in addition to ftp), image archiving, and much more. It runs as a daemon and needs no X connection to operate.
Main features:
- ttf fonts
- blended transparent text
- title text
- options in ~/.camErc
- message read from separate file (eg echo "eating my dinner" > ~/.caminfo)
- color the text as you like
- text background any color/alpha value
- scp support for uploading
- ftp support for uploading using libcurl, reconnect for each upload or reuse one connection
- proper logging to file
- user defined actions to be run before and after shots, and after upload (use to play sounds, beep, run scripts, copy files, whatever)
- file for stopping uploads temporarily (touch ~/BLOCKCAM to stop shooting, remove it to resume)
- now a proper daemon that can run without X forever if wanted
- control of brightness, contrast, gamma, hue, colour, etc
- control of framerate and use of snapshot mode for Philips cams
- image archiving (timestamped into a directory of your choice after upload), every frame or every n frames
- lag reduction (for some cams, when mmaped, the image grabbed lags behind the cam by up to 20 seconds. I use lag_reduce 5 in my ~/.camErc for example. This takes 5 shots in a row, which clears the mmap buffers, and then keeps the last shot, lag-free)
<<lessA large number of new options have been added including scp support (in addition to ftp), image archiving, and much more. It runs as a daemon and needs no X connection to operate.
Main features:
- ttf fonts
- blended transparent text
- title text
- options in ~/.camErc
- message read from separate file (eg echo "eating my dinner" > ~/.caminfo)
- color the text as you like
- text background any color/alpha value
- scp support for uploading
- ftp support for uploading using libcurl, reconnect for each upload or reuse one connection
- proper logging to file
- user defined actions to be run before and after shots, and after upload (use to play sounds, beep, run scripts, copy files, whatever)
- file for stopping uploads temporarily (touch ~/BLOCKCAM to stop shooting, remove it to resume)
- now a proper daemon that can run without X forever if wanted
- control of brightness, contrast, gamma, hue, colour, etc
- control of framerate and use of snapshot mode for Philips cams
- image archiving (timestamped into a directory of your choice after upload), every frame or every n frames
- lag reduction (for some cams, when mmaped, the image grabbed lags behind the cam by up to 20 seconds. I use lag_reduce 5 in my ~/.camErc for example. This takes 5 shots in a row, which clears the mmap buffers, and then keeps the last shot, lag-free)
Download (0.038MB)
Added: 2005-04-25 License: GPL (GNU General Public License) Price:
1643 downloads
VLAN 1.9
VLAN is an implementation of the 802.1Q VLAN protocol for Linux. more>>
VLAN is an implementation of the 802.1Q VLAN protocol for Linux.
VLAN allows one to have Virtual LANs on a single ethernet cable, giving you the ability to segregate LANs efficiently. VLAN should support up to 4094 vlan interfaces per ethernet device.
Main features:
- Implements 802.1Q VLAN spec.
- Implements support for a non-standard (as far as I know) MAC-based VLAN functionality.
- Can support up to 4094 VLANs per ethernet interface.
- Scales well in critical paths: O(n), where n is the number of PHYSICAL ethernet interfaces, and that is only on ingress. O(1) in every other critical path, as far as I know.
- Supports MULTICAST
- Can change MAC address of VLAN.
- Multiple naming conventions supported, and adjustable at runtime.
- Optional header-reordering, to make the VLAN interface look JUST LIKE an Ethernet interface. This fixes some problems with DHCPd and anything else that uses a SOCK_PACKET socket. Default setting is off, which works for every other protocol I know about, and is slightly faster.
Enhancements:
- This release fixes return error codes in vconfig.
<<lessVLAN allows one to have Virtual LANs on a single ethernet cable, giving you the ability to segregate LANs efficiently. VLAN should support up to 4094 vlan interfaces per ethernet device.
Main features:
- Implements 802.1Q VLAN spec.
- Implements support for a non-standard (as far as I know) MAC-based VLAN functionality.
- Can support up to 4094 VLANs per ethernet interface.
- Scales well in critical paths: O(n), where n is the number of PHYSICAL ethernet interfaces, and that is only on ingress. O(1) in every other critical path, as far as I know.
- Supports MULTICAST
- Can change MAC address of VLAN.
- Multiple naming conventions supported, and adjustable at runtime.
- Optional header-reordering, to make the VLAN interface look JUST LIKE an Ethernet interface. This fixes some problems with DHCPd and anything else that uses a SOCK_PACKET socket. Default setting is off, which works for every other protocol I know about, and is slightly faster.
Enhancements:
- This release fixes return error codes in vconfig.
Download (0.089MB)
Added: 2005-11-14 License: GPL (GNU General Public License) Price:
1558 downloads
imlib 1.9.15
imlib is an advanced replacement library for libraries like libXpm. more>>
Imlib is an advanced replacement library for libraries like libXpm that provides many more features with much greater flexibility and speed.
It was originally written for E, now used by the GNOME Project.
<<lessIt was originally written for E, now used by the GNOME Project.
Download (0.88MB)
Added: 2005-04-14 License: GPL (GNU General Public License) Price:
1653 downloads
xmmsctrl 1.9
xmmsctrl is a small utility to control xmms from the command line. more>>
xmmsctrl is a small utility to control xmms from the command line. xmmsctrls goal is to be used coupled with sh to test xmms state and perform an appropriate action, e.g. if playing then pause else play.
The interest of this is to bind keys in a window manager to have control over xmms with keys that do play/next/pause, prev, control sound...
Configuration: create in your home directory a directory .FancyLauncher and then copy the plugins directory with: cp -r /usr/local/FancyLauncher/plugins ~/.FancyLauncher/
<<lessThe interest of this is to bind keys in a window manager to have control over xmms with keys that do play/next/pause, prev, control sound...
Configuration: create in your home directory a directory .FancyLauncher and then copy the plugins directory with: cp -r /usr/local/FancyLauncher/plugins ~/.FancyLauncher/
Download (0.014MB)
Added: 2006-04-12 License: GPL (GNU General Public License) Price:
1291 downloads
McStas 1.9.1
McStas project is a general tool for simulating neutron scattering instruments. more>>
McStas project is a general tool for simulating neutron scattering instruments.
McStas is a computer program (written in C) that enables you to model very precisely a neutron instrument described as a series of various components.
A source component shoots each neutron randomly (Monte-Carlo), and the particle is then propagated through the different instrument components.
These later act on the neutron characteristics (position, speed, direction, spin, etc.).
Usually, one installs some detectors along the neutron path to monitor its characteristics and flux.
Enhancements:
- General
- Update release, mainly bugfixes plus a few other things
- Documentation
- Component manual slightly updated according to adding/modification of components.
- Tools
- mcgui: A few bugfixes.
- Components
- DiskChopper.comp - new disc chopper component. Chopper.comp made obsolete. See mcdoc page / component manual for further details.
- Guide.comp - reads reflectivity tables from disk.
- Isotropic_Sqw - minor bugfixes, validated against PowerN, V_sample, etc.
- PowderN - validated against Isotropix_Sqw, Squires, experimental data.
<<lessMcStas is a computer program (written in C) that enables you to model very precisely a neutron instrument described as a series of various components.
A source component shoots each neutron randomly (Monte-Carlo), and the particle is then propagated through the different instrument components.
These later act on the neutron characteristics (position, speed, direction, spin, etc.).
Usually, one installs some detectors along the neutron path to monitor its characteristics and flux.
Enhancements:
- General
- Update release, mainly bugfixes plus a few other things
- Documentation
- Component manual slightly updated according to adding/modification of components.
- Tools
- mcgui: A few bugfixes.
- Components
- DiskChopper.comp - new disc chopper component. Chopper.comp made obsolete. See mcdoc page / component manual for further details.
- Guide.comp - reads reflectivity tables from disk.
- Isotropic_Sqw - minor bugfixes, validated against PowerN, V_sample, etc.
- PowderN - validated against Isotropix_Sqw, Squires, experimental data.
Download (8.9MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1101 downloads
MailDooHicky 1.9.58
MailDooHicky is a GTK2-based toolbar that can display the time, email message count, and various system utilization. more>>
mdh (MailDooHicky) v1.9.58 is a GTK2-based toolbar that can display the time, email message count and various system (CPU, network, etc.) utilization.
It also features user-definable buttons, a run window and scratch-pad.
GTK theme used in this screenshot is CleanIce (Download).
Enhancements:
- Configuration was moved to libgini.
- Customizable panel display was added.
- Temperature data is sourced from Weather.com.
- Memory and network support was added for Net/Free/OpenBSD as well as libgtop support. NetWM and GNOME layer support were added.
- A simple OSS mixer was added.
- Many other changes were made.
<<lessIt also features user-definable buttons, a run window and scratch-pad.
GTK theme used in this screenshot is CleanIce (Download).
Enhancements:
- Configuration was moved to libgini.
- Customizable panel display was added.
- Temperature data is sourced from Weather.com.
- Memory and network support was added for Net/Free/OpenBSD as well as libgtop support. NetWM and GNOME layer support were added.
- A simple OSS mixer was added.
- Many other changes were made.
Download (0.22MB)
Added: 2005-07-01 License: BSD License Price:
1575 downloads
Xastir 1.9.1
Xastir ptoject can receive and plot APRS position packets. more>>
Xastir ptoject can receive and plot APRS position packets. Development is a collaborative effort of programmers from around the world. Xastir supports many map formats and is highly customizable. Check out the "Screen Shots" link to see just a few of the ways that Xastir can be used.
Xastir runs on Windows/MacOSX/Linux/FreeBSD/Solaris/Lindows, with many more possible. It supports 125 map formats, several types of TNCs and weather stations, Festival speech synthesizer, AX.25 networking (Soundmodem/Baycom/SCC!) and seven languages!. On Unix-like operating systems, you can run your weather station or GPS on a separate computer as well, which is good for those hams who are already short on serial ports.
Xastir is FREE! under the GPL license and comes with all source code.
<<lessXastir runs on Windows/MacOSX/Linux/FreeBSD/Solaris/Lindows, with many more possible. It supports 125 map formats, several types of TNCs and weather stations, Festival speech synthesizer, AX.25 networking (Soundmodem/Baycom/SCC!) and seven languages!. On Unix-like operating systems, you can run your weather station or GPS on a separate computer as well, which is good for those hams who are already short on serial ports.
Xastir is FREE! under the GPL license and comes with all source code.
Download (2.1MB)
Added: 2007-05-02 License: GPL (GNU General Public License) Price:
909 downloads
QDWizard 1.9
QDWizard (Quick and Dirty Java Wizard) is a simple framework to create Swing wizards. more>>
QDWizard (Quick and Dirty Java Wizard) is a simple framework to create Swing wizards.
Main features:
- Designed to minimize required code. Only few methods to implement.
- Simple design, only two classes visible by the programmer.
- I18n support for action buttons (en, fr, de, sp, ca, nl for the moment).
- Full branching support, can implement any wizard cinematic.
- Error management using the simple setProblem() method.
- Supports Wizard images natively and resizes image automaticaly.
- Ultra light API: only few KB.
- Actively supported by the Jajuk team.
- Learning curve of 15 minutes maximum.
- Real world samples provided (jajuk classes).
<<lessMain features:
- Designed to minimize required code. Only few methods to implement.
- Simple design, only two classes visible by the programmer.
- I18n support for action buttons (en, fr, de, sp, ca, nl for the moment).
- Full branching support, can implement any wizard cinematic.
- Error management using the simple setProblem() method.
- Supports Wizard images natively and resizes image automaticaly.
- Ultra light API: only few KB.
- Actively supported by the Jajuk team.
- Learning curve of 15 minutes maximum.
- Real world samples provided (jajuk classes).
Download (0.11MB)
Added: 2007-01-02 License: LGPL (GNU Lesser General Public License) Price:
1025 downloads
bogom 1.9
bogom is a simple sendmail milter to interface bogofilter. more>>
bogom is a simple sendmail milter to interface bogofilter.
SYNOPSIS
bogom [-R | -D] [-t] [-v] [-u user] [-s conn] [-b bogo_path] [-x exclude_string] [-c conf_file] [-l body_limit] [-p pidfile] [-f forward_spam] [-q quarantine_mdir] [-d]
The bogom plugin can be used with the milter API of sendmail(8) to filter mails using bogofilter(1) bayesian filter.
bogom is intended to be used with only one words database for the whole system.
The options are as follows:
-R Reject mail classified as spam
-D Discard mail classified as spam
-t Train bogofilter with the mail classified as spam/ham
-v Verbose logging
-u user User to run the milter. Default: bogofilter
-s conn Path to the pipe to connect sendmail. Default:
unix:/var/spool/bogofilter/milter.sock
-b bogo_path Path to the bogofilter(1) binary. Default:
/usr/local/bin/bogofilter
-x exclude_string If this string is found in the Subject of a message,
it will be automatically accepted and no filtering op-
eration will be done.
-c conf_file Path to the configuration file. Default:
/etc/bogom.conf
-l body_limit Length limit in bytes to be processed from mail body.
The rest of the body will be discarded and not ana-
lyzed by the filter. Default: no limit
-p pidfile Path to the file to store the pid of the milter. The
pidfile is created after the milter drops privileges
and the user to run the milter must have write permis-
sion to the specified file. Default:
/var/spool/bogofilter/bogom.pid
-f forward_spam Set a recipient to forward any message classified as
spam. Read configuration file section for further de-
tails.
-q quarantine_mdir
Path to a directory to deliver a copy of any message
classified as spam. The messages are stored in
maildir(5) format.
-d Enable debug messages (implies verbose logging)
Default policy is to add the X-Bogosity header (Yes, No, Unsure) and deliver the mail. This can be changed with -R or -D when bogofilter classifies the mail as spam.
In bogofilters configuration the bogofilter_dir token should be set to the directory with system database, usually /var/spool/bogofilter, in bogofilters configuration, or simply the words database of the unprivileged user running the milter can be used.
bogom uses a temporal file to store each individual message and forks a new process to scan it with bogofilter. This temporal file uses /tmp directory by default, its owned by the user running the milter and has 0600 mode. When a directory is specified in quarantine_mdir, the tmp subdirectory in that maildir is used as temporal directory.
The option -t registers the mail after classifying it as spam or ham. This option can be dangerous because the filter may register errors, so you should read carefully bogofilters manual regarding this point.
Enhancements:
- Support for spamicity score in the X-Bogosity header has been added.
<<lessSYNOPSIS
bogom [-R | -D] [-t] [-v] [-u user] [-s conn] [-b bogo_path] [-x exclude_string] [-c conf_file] [-l body_limit] [-p pidfile] [-f forward_spam] [-q quarantine_mdir] [-d]
The bogom plugin can be used with the milter API of sendmail(8) to filter mails using bogofilter(1) bayesian filter.
bogom is intended to be used with only one words database for the whole system.
The options are as follows:
-R Reject mail classified as spam
-D Discard mail classified as spam
-t Train bogofilter with the mail classified as spam/ham
-v Verbose logging
-u user User to run the milter. Default: bogofilter
-s conn Path to the pipe to connect sendmail. Default:
unix:/var/spool/bogofilter/milter.sock
-b bogo_path Path to the bogofilter(1) binary. Default:
/usr/local/bin/bogofilter
-x exclude_string If this string is found in the Subject of a message,
it will be automatically accepted and no filtering op-
eration will be done.
-c conf_file Path to the configuration file. Default:
/etc/bogom.conf
-l body_limit Length limit in bytes to be processed from mail body.
The rest of the body will be discarded and not ana-
lyzed by the filter. Default: no limit
-p pidfile Path to the file to store the pid of the milter. The
pidfile is created after the milter drops privileges
and the user to run the milter must have write permis-
sion to the specified file. Default:
/var/spool/bogofilter/bogom.pid
-f forward_spam Set a recipient to forward any message classified as
spam. Read configuration file section for further de-
tails.
-q quarantine_mdir
Path to a directory to deliver a copy of any message
classified as spam. The messages are stored in
maildir(5) format.
-d Enable debug messages (implies verbose logging)
Default policy is to add the X-Bogosity header (Yes, No, Unsure) and deliver the mail. This can be changed with -R or -D when bogofilter classifies the mail as spam.
In bogofilters configuration the bogofilter_dir token should be set to the directory with system database, usually /var/spool/bogofilter, in bogofilters configuration, or simply the words database of the unprivileged user running the milter can be used.
bogom uses a temporal file to store each individual message and forks a new process to scan it with bogofilter. This temporal file uses /tmp directory by default, its owned by the user running the milter and has 0600 mode. When a directory is specified in quarantine_mdir, the tmp subdirectory in that maildir is used as temporal directory.
The option -t registers the mail after classifying it as spam or ham. This option can be dangerous because the filter may register errors, so you should read carefully bogofilters manual regarding this point.
Enhancements:
- Support for spamicity score in the X-Bogosity header has been added.
Download (0.020MB)
Added: 2006-10-22 License: GPL (GNU General Public License) Price:
1097 downloads
JCite 1.9
JCite project contains cites snippets of Java source code or Excel sheets into HTML documents. more>>
JCite project contains cites snippets of Java source code or Excel sheets into HTML documents – API documentation, for instance.
Citing from tests, or tested code, guarantees that examples really work. And, thanks to the excellent Java2Html library, they get automatic syntax highlighting.
<<lessCiting from tests, or tested code, guarantees that examples really work. And, thanks to the excellent Java2Html library, they get automatic syntax highlighting.
Download (0.22MB)
Added: 2007-06-13 License: BSD License Price:
863 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above wmail 1.9 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed