captures
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 320
Show Screen Captures 1.0
Show Screen Captures is an extension which enables displaying screen captures of external links on a web page. more>>
Show Screen Captures is an extension which enables displaying screen captures of external links on a web page.
Displays screen captures of external links on a web page. Screen shots provided by openthumbshots.org.
A screenshot, screen capture, or screen dump is an image taken by the computer to record the visible items on the monitor or another visual output device. Usually this is a digital image taken by the host operating system or software running on the computer device, but it can also be a capture made by a camera or a device intercepting the video output of the computer.
Screenshots, screen dumps, or screen captures can be used to demonstrate a program, a particular problem a user might be having or generally when computer output needs to be shown to others or archived.
<<lessDisplays screen captures of external links on a web page. Screen shots provided by openthumbshots.org.
A screenshot, screen capture, or screen dump is an image taken by the computer to record the visible items on the monitor or another visual output device. Usually this is a digital image taken by the host operating system or software running on the computer device, but it can also be a capture made by a camera or a device intercepting the video output of the computer.
Screenshots, screen dumps, or screen captures can be used to demonstrate a program, a particular problem a user might be having or generally when computer output needs to be shown to others or archived.
Download (0.004MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
939 downloads
jack_capture 0.2.3
jack_capture is a small simple program to capture whatever sound is going out to your speakers into a file. more>>
jack_capture is a small simple program to capture whatever sound is going out to your speakers into a file.
jack_capture is the program I always wanted to have for jack, but no one made. So here it is.
Usage:
jack_capture [ -b bitdepth ] [-c channels] [ -B bufsize ] [filename]
Filename is by default auotogenerated to something like "jack_capture_ .wav"
Bitdepth is by default FLOAT.
Channels is by default 2.
Bufsize is by default 262144.
<<lessjack_capture is the program I always wanted to have for jack, but no one made. So here it is.
Usage:
jack_capture [ -b bitdepth ] [-c channels] [ -B bufsize ] [filename]
Filename is by default auotogenerated to something like "jack_capture_ .wav"
Bitdepth is by default FLOAT.
Channels is by default 2.
Bufsize is by default 262144.
Download (0.006MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1311 downloads
VBA Express 1.2
VBA Express is a frontend for the very popular game emulator VisualBoyAdvance. more>>
VBA Express is a frontend for the very popular game emulator VisualBoyAdvance.
Whats VBA Express? Its First, to configure VisualBoyAdvance (emulator)... EASILY! Graphics, sound, controls (keyboard and joystick), paths (to saves and captures)... You can configure all this without edit VisualBoyAdvance.cfg manually!
Open your Roms (games) with the frontend! You can run the roms with "Play!" button (without using the console command VisualBoyAdvance game.rom).
<<lessWhats VBA Express? Its First, to configure VisualBoyAdvance (emulator)... EASILY! Graphics, sound, controls (keyboard and joystick), paths (to saves and captures)... You can configure all this without edit VisualBoyAdvance.cfg manually!
Open your Roms (games) with the frontend! You can run the roms with "Play!" button (without using the console command VisualBoyAdvance game.rom).
Download (1.3MB)
Added: 2006-11-04 License: GPL (GNU General Public License) Price:
1125 downloads
Test::Tester::Capture 0.103
Test::Tester::Capture is a help testing test modules built with Test::Builder. more>>
Test::Tester::Capture is a help testing test modules built with Test::Builder.
This is a subclass of Test::Builder that overrides many of the methods so that they dont output anything.
It also keeps track of its own set of test results so that you can use Test::Builder based modules to perform tests on other Test::Builder based modules.
<<lessThis is a subclass of Test::Builder that overrides many of the methods so that they dont output anything.
It also keeps track of its own set of test results so that you can use Test::Builder based modules to perform tests on other Test::Builder based modules.
Download (0.014MB)
Added: 2006-11-01 License: Perl Artistic License Price:
1088 downloads
Catalyst 5.7007
Catalyst is a Perl module that contains the elegant MVC web application framework. more>>
Catalyst is a Perl module that contains the elegant MVC web application framework.
SYNOPSIS
See the Catalyst::Manual distribution for comprehensive documentation and tutorials.
# Install Catalyst::Devel for helpers and other development tools
# use the helper to create a new application
catalyst.pl MyApp
# add models, views, controllers
script/myapp_create.pl model MyDatabase DBIC::Schema create=dynamic dbi:SQLite:/path/to/db
script/myapp_create.pl view MyTemplate TT
script/myapp_create.pl controller Search
# built in testserver -- use -r to restart automatically on changes
# --help to see all available options
script/myapp_server.pl
# command line testing interface
script/myapp_test.pl /yada
### in lib/MyApp.pm
use Catalyst qw/-Debug/; # include plugins here as well
### In lib/MyApp/Controller/Root.pm (autocreated)
sub foo : Global { # called for /foo, /foo/1, /foo/1/2, etc.
my ( $self, $c, @args ) = @_; # args are qw/1 2/ for /foo/1/2
$c->stash->{template} = foo.tt; # set the template
# lookup something from db -- stash vars are passed to TT
$c->stash->{data} =
$c->model(Database::Foo)->search( { country => $args[0] } );
if ( $c->req->params->{bar} ) { # access GET or POST parameters
$c->forward( bar ); # process another action
# do something else after forward returns
}
}
# The foo.tt TT template can use the stash data from the database
[% WHILE (item = data.next) %]
[% item.foo %]
[% END %]
# called for /bar/of/soap, /bar/of/soap/10, etc.
sub bar : Path(/bar/of/soap) { ... }
# called for all actions, from the top-most controller downwards
sub auto : Private {
my ( $self, $c ) = @_;
if ( !$c->user_exists ) { # Catalyst::Plugin::Authentication
$c->res->redirect( /login ); # require login
return 0; # abort request and go immediately to end()
}
return 1; # success; carry on to next action
}
# called after all actions are finished
sub end : Private {
my ( $self, $c ) = @_;
if ( scalar @{ $c->error } ) { ... } # handle errors
return if $c->res->body; # already have a response
$c->forward( MyApp::View::TT ); # render template
}
### in MyApp/Controller/Foo.pm
# called for /foo/bar
sub bar : Local { ... }
# called for /blargle
sub blargle : Global { ... }
# an index action matches /foo, but not /foo/1, etc.
sub index : Private { ... }
### in MyApp/Controller/Foo/Bar.pm
# called for /foo/bar/baz
sub baz : Local { ... }
# first Root auto is called, then Foo auto, then this
sub auto : Private { ... }
# powerful regular expression paths are also possible
sub details : Regex(^product/(w+)/details$) {
my ( $self, $c ) = @_;
# extract the (w+) from the URI
my $product = $c->req->captures->[0];
}
<<lessSYNOPSIS
See the Catalyst::Manual distribution for comprehensive documentation and tutorials.
# Install Catalyst::Devel for helpers and other development tools
# use the helper to create a new application
catalyst.pl MyApp
# add models, views, controllers
script/myapp_create.pl model MyDatabase DBIC::Schema create=dynamic dbi:SQLite:/path/to/db
script/myapp_create.pl view MyTemplate TT
script/myapp_create.pl controller Search
# built in testserver -- use -r to restart automatically on changes
# --help to see all available options
script/myapp_server.pl
# command line testing interface
script/myapp_test.pl /yada
### in lib/MyApp.pm
use Catalyst qw/-Debug/; # include plugins here as well
### In lib/MyApp/Controller/Root.pm (autocreated)
sub foo : Global { # called for /foo, /foo/1, /foo/1/2, etc.
my ( $self, $c, @args ) = @_; # args are qw/1 2/ for /foo/1/2
$c->stash->{template} = foo.tt; # set the template
# lookup something from db -- stash vars are passed to TT
$c->stash->{data} =
$c->model(Database::Foo)->search( { country => $args[0] } );
if ( $c->req->params->{bar} ) { # access GET or POST parameters
$c->forward( bar ); # process another action
# do something else after forward returns
}
}
# The foo.tt TT template can use the stash data from the database
[% WHILE (item = data.next) %]
[% item.foo %]
[% END %]
# called for /bar/of/soap, /bar/of/soap/10, etc.
sub bar : Path(/bar/of/soap) { ... }
# called for all actions, from the top-most controller downwards
sub auto : Private {
my ( $self, $c ) = @_;
if ( !$c->user_exists ) { # Catalyst::Plugin::Authentication
$c->res->redirect( /login ); # require login
return 0; # abort request and go immediately to end()
}
return 1; # success; carry on to next action
}
# called after all actions are finished
sub end : Private {
my ( $self, $c ) = @_;
if ( scalar @{ $c->error } ) { ... } # handle errors
return if $c->res->body; # already have a response
$c->forward( MyApp::View::TT ); # render template
}
### in MyApp/Controller/Foo.pm
# called for /foo/bar
sub bar : Local { ... }
# called for /blargle
sub blargle : Global { ... }
# an index action matches /foo, but not /foo/1, etc.
sub index : Private { ... }
### in MyApp/Controller/Foo/Bar.pm
# called for /foo/bar/baz
sub baz : Local { ... }
# first Root auto is called, then Foo auto, then this
sub auto : Private { ... }
# powerful regular expression paths are also possible
sub details : Regex(^product/(w+)/details$) {
my ( $self, $c ) = @_;
# extract the (w+) from the URI
my $product = $c->req->captures->[0];
}
Download (0.14MB)
Added: 2007-05-09 License: Perl Artistic License Price:
898 downloads
RPCAP 0.23
RPCAP is a Remote Packet Capture system. more>>
RPCAP is a Remote Packet Capture system. It enables you to run a packet capture program (the server) on a target computer, which will sniff the network traffic on that system, and uplink the captured packets to another host (the client), where the captured packets can be processed, analysed and archived . The rpcap system thus consists of two separate processes, the server (or agent) which captures network traffic on a remote system, and a client, which receives and processes these packets. The server code is a standalone executable program which uses the libpcap packet capture library to capture network traffic. The client is actually a library called librpcap, which is linked to a user program and used on the client system in a manner identical to libpcap, to receive and process the packets which are captured.
The librpcap client library exposes a subset of the pcap API as defined in the pcap (3) manpage. The API is used in a manner identical to that of libpcap, so that any programs which do not use the libpcap functions not present in rpcap can directly link to rpcap in place of pcap. The API functions as a set of pcap-compatible wrapper functions over a Sun RPC interface to the remote server, which invoke the corresponding libpcap functionality on it.
At this time, rpcap has been built and tested only on Linux on Intel platforms. However, it should build on any UNIX like system that supports multithreading and has the RPC libraries and utilities available, so that it should be possible to build it on most systems. Please note however that there are a couple of bugs in the code (all my own!) that currently restrict it to little-endian systems. I will fix this ASAP.
Enhancements:
- New code release v.0.23 alpha
- added GNU autotools based build (autconf/ automake/ libtool)
- pcap_geterr rewritten
- pcap_compile fixed to accept null strings for tcpdump compatibility
- pointer issues with pcap_compile and pcap_open_live resolved
- made the code tcpdump compatible so that tcpdump now builds against librpcap
- added a port of tcpdump to rpcap
<<lessThe librpcap client library exposes a subset of the pcap API as defined in the pcap (3) manpage. The API is used in a manner identical to that of libpcap, so that any programs which do not use the libpcap functions not present in rpcap can directly link to rpcap in place of pcap. The API functions as a set of pcap-compatible wrapper functions over a Sun RPC interface to the remote server, which invoke the corresponding libpcap functionality on it.
At this time, rpcap has been built and tested only on Linux on Intel platforms. However, it should build on any UNIX like system that supports multithreading and has the RPC libraries and utilities available, so that it should be possible to build it on most systems. Please note however that there are a couple of bugs in the code (all my own!) that currently restrict it to little-endian systems. I will fix this ASAP.
Enhancements:
- New code release v.0.23 alpha
- added GNU autotools based build (autconf/ automake/ libtool)
- pcap_geterr rewritten
- pcap_compile fixed to accept null strings for tcpdump compatibility
- pointer issues with pcap_compile and pcap_open_live resolved
- made the code tcpdump compatible so that tcpdump now builds against librpcap
- added a port of tcpdump to rpcap
Download (0.12MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1219 downloads
Cammgr 1.5
Cammgr manages a collection of web cameras. more>>
Cammgr manages a collection of web cameras. It will bring cameras online or offline, and initiate or suspend image capture operations.
Any camera can be controlled provided a driver is available. Cammgr supports multiple images per camera, default images for inactive cameras, per- user/host/camera notifications, and an easy-to- use configuration file.
Cammgr can scan Apache log files to auto-initiate image capture, and tune capture frequency can to the minimum needed to ensure that clients receive a new image on request.
Enhancements:
- Support for Axis network cameras was added.
- A bug where the pipe file descriptor was left open across shell exec was fixed.
- A client capture manager from where all capture processes are dispatched and monitored was created.
- A bug where the capture process did not go away when cammgr exited was fixed.
- Other miscellaneous cleanups were done.
<<lessAny camera can be controlled provided a driver is available. Cammgr supports multiple images per camera, default images for inactive cameras, per- user/host/camera notifications, and an easy-to- use configuration file.
Cammgr can scan Apache log files to auto-initiate image capture, and tune capture frequency can to the minimum needed to ensure that clients receive a new image on request.
Enhancements:
- Support for Axis network cameras was added.
- A bug where the pipe file descriptor was left open across shell exec was fixed.
- A client capture manager from where all capture processes are dispatched and monitored was created.
- A bug where the capture process did not go away when cammgr exited was fixed.
- Other miscellaneous cleanups were done.
Download (0.083MB)
Added: 2005-11-23 License: BSD License Price:
1430 downloads
Cankiri 0.2
Cankiri is a single file screen recorder for Linux and other systems that run GStreamer 0.10 and PyGTK 2.8. more>>
Cankiri is a single file screen recorder for Linux and other systems that run GStreamer 0.10 and PyGTK 2.8. It was inspired by Zaheer Abbas Meralis Istanbul, and aims to have lighter weight deployment than Istanbul.
Usage:
Running Cankiri will add an icon to your notification area. If you do not have one, Cankiri may appear to do nothing, or may fail to run at all. Once the icon is there you can begin a screen recording by clicking the icon. Choose the destination filename, as well as any desired options, and click OK to begin. Click the icon again to stop and complete your video. Right click to access other operations including Quit.
Installation:
Download cankiri-0.1.tar.gz, unpack, and save cankiri.py wherever you want your programs to live. Add any desired links, launchers, etc. If youre feeling mildly adventurous, you can grab it from subversion instead: cankiri.py
Main features:
- Optionally records audio
- Optionally records mouse pointer
- Captures either the full screen, or
- Optionally marks a partial screen for capture
- Shows an indication of the capture area before and during recording
<<lessUsage:
Running Cankiri will add an icon to your notification area. If you do not have one, Cankiri may appear to do nothing, or may fail to run at all. Once the icon is there you can begin a screen recording by clicking the icon. Choose the destination filename, as well as any desired options, and click OK to begin. Click the icon again to stop and complete your video. Right click to access other operations including Quit.
Installation:
Download cankiri-0.1.tar.gz, unpack, and save cankiri.py wherever you want your programs to live. Add any desired links, launchers, etc. If youre feeling mildly adventurous, you can grab it from subversion instead: cankiri.py
Main features:
- Optionally records audio
- Optionally records mouse pointer
- Captures either the full screen, or
- Optionally marks a partial screen for capture
- Shows an indication of the capture area before and during recording
Download (0.011MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1173 downloads
Xplore 1.2a
Xplore is a powerful and highly configurable Motif file manager with an Explorer-like user interface. more>>
Xplore is a powerful and highly configurable Motif file manager with an Explorer-like user interface.
Main features:
- customizable four-pane layout, which includes a directory tree view, file view with different display styles, the "shelf," a kind of clipboard inspired by the NeXT file manager, and a "log" pane which captures the output of launched programs
- files can be moved, copied, executed etc. with simple mouse operations, including drag and drop between different xplore windows
- full keyboard navigation support, including an incremental filename search facility
- builtin automounting facility for special file systems like floppies, cdroms, etc.
- comprehensive session management features, with full support for the X11R5 and R6 session management protocols
- includes man page and many XPM icons
- offers extensive configuration options. In particular, file types are fully configurable, including separate push and drop actions a la xfm, and type-specific popup menus. A free-format configuration language featuring C preprocessor commands allows you to set up rather complex configurations with moderate effort, and a configuration dialog allows you to quickly add new and change existing file types at runtime.
<<lessMain features:
- customizable four-pane layout, which includes a directory tree view, file view with different display styles, the "shelf," a kind of clipboard inspired by the NeXT file manager, and a "log" pane which captures the output of launched programs
- files can be moved, copied, executed etc. with simple mouse operations, including drag and drop between different xplore windows
- full keyboard navigation support, including an incremental filename search facility
- builtin automounting facility for special file systems like floppies, cdroms, etc.
- comprehensive session management features, with full support for the X11R5 and R6 session management protocols
- includes man page and many XPM icons
- offers extensive configuration options. In particular, file types are fully configurable, including separate push and drop actions a la xfm, and type-specific popup menus. A free-format configuration language featuring C preprocessor commands allows you to set up rather complex configurations with moderate effort, and a configuration dialog allows you to quickly add new and change existing file types at runtime.
Download (0.5MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
946 downloads
SNMP Trap Translator 1.2
SNMPTT is an SNMP trap handler written in Perl for use with the NET-SNMP/UCD-SNMP snmptrapd program. more>>
SNMP Trap Translator is an SNMP trap handler written in Perl for use with the NET-SNMP and UCD-SNMP snmptrapd program. Received traps are translated into friendly messages using variable substitution.
Output can be to STDOUT, text log file, syslog, NT Event Log, MySQL (Linux/Windows), PostgreSQL, or an ODBC database. User defined programs can also be executed.
Many network devices including but not limited to network switches, routers, remote access servers, UPSs, printers and operating systems such as Unix and Windows NT have the ability to send notifications to an SNMP manager running on a network management station. The notifications can be either SNMP Traps, or SNMP Inform messages.
The notification can contain a wide array of information such as port failures, link failures, access violations, power outages, paper jams, hard drive failures etc. The MIB (Management Information Base) available from the vendor determines the notifications supported by each device.
The MIB file contains TRAP-TYPE (SMIv1) or NOTIFICATION-TYPE (SMIv2) definitions, which define the variables that are passed to the management station when a particular event occurs.
Enhancements:
- Various database improvements have been added such as support for proper date/time data types, statistics logging, and custom columns.
- The formatting for unknown_trap_exec can now be changed.
- Support has been added to MATCH for bitwise AND.
- A new log file has been added for logging system messages to a text file for users without access to syslog.
- Various bugs have been fixed, including support for Net-SNMP 5.4 traphandle, a daemon mode PID file, REGEX captures, MATCH modifiers, and others.
<<lessOutput can be to STDOUT, text log file, syslog, NT Event Log, MySQL (Linux/Windows), PostgreSQL, or an ODBC database. User defined programs can also be executed.
Many network devices including but not limited to network switches, routers, remote access servers, UPSs, printers and operating systems such as Unix and Windows NT have the ability to send notifications to an SNMP manager running on a network management station. The notifications can be either SNMP Traps, or SNMP Inform messages.
The notification can contain a wide array of information such as port failures, link failures, access violations, power outages, paper jams, hard drive failures etc. The MIB (Management Information Base) available from the vendor determines the notifications supported by each device.
The MIB file contains TRAP-TYPE (SMIv1) or NOTIFICATION-TYPE (SMIv2) definitions, which define the variables that are passed to the management station when a particular event occurs.
Enhancements:
- Various database improvements have been added such as support for proper date/time data types, statistics logging, and custom columns.
- The formatting for unknown_trap_exec can now be changed.
- Support has been added to MATCH for bitwise AND.
- A new log file has been added for logging system messages to a text file for users without access to syslog.
- Various bugs have been fixed, including support for Net-SNMP 5.4 traphandle, a daemon mode PID file, REGEX captures, MATCH modifiers, and others.
Download (0.13MB)
Added: 2007-06-16 License: GPL (GNU General Public License) Price:
878 downloads
Parcelle 1.2
Parcelle project is a PyGTK application that captures and saves clipboard history. more>>
Parcelle project is a PyGTK application that captures and saves clipboard history.
Main features:
- Automatically captures clipboard changes.
- Saves clipboard history.
- Sort and search through entries.
- Edit and save changes to entries.
- Edit current clipboard contents.
- Dates entry additions and edits.
- Option to launch on startup to capture quietly.
<<lessMain features:
- Automatically captures clipboard changes.
- Saves clipboard history.
- Sort and search through entries.
- Edit and save changes to entries.
- Edit current clipboard contents.
- Dates entry additions and edits.
- Option to launch on startup to capture quietly.
Download (0.017MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
797 downloads
QFrameCatcher 0.4.1
QFrameCatcher is a program that captures frames from a video file and save these frames as thumbnails in a single image file. more>>
QFrameCatcher is a program that captures frames from a video file and save these frames as thumbnails in a single image file.
<<less Download (0.16MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1085 downloads
jNetPcap 1.0 Beta 4
jNetPcap project is a Java wrapper around the Libpcap network packet capture library. more>>
jNetPcap project is a Java wrapper around the Libpcap network packet capture library. The low-level API is exposed in Java, which allows kernel buffer tuning, flags, and other features.
All captured packet buffers are wrapped, not copied, in efficient java.nio.ByteBuffer and delivered to Java by reference. This allows not-in-memory copies of packet data and very efficient and fast delivery of packets. The software is released for various platforms with the appropriate native library bundled.
<<lessAll captured packet buffers are wrapped, not copied, in efficient java.nio.ByteBuffer and delivered to Java by reference. This allows not-in-memory copies of packet data and very efficient and fast delivery of packets. The software is released for various platforms with the appropriate native library bundled.
Download (0.12MB)
Added: 2007-08-22 License: LGPL (GNU Lesser General Public License) Price:
795 downloads
Transcend 0.3
Transcend can best be described as retro-style, abstract, 2D shooter. more>>
Transcend can best be described as retro-style, abstract, 2D shooter. The graphics are geometrical, and the pace is sometimes frenzied.
Two features set Transcend apart from other games. First, its dynamic graphical engine, which can smoothly morph from one complex shape to another, produces striking displays.
Combining these dynamic shapes with subtle randomizations makes each play through a Transcend level visually different from the last. The second novel feature is Transcends musical power-up system.
As you play through a level, you are simultaneously assembling an abstract visual collage and arranging a unique piece of music. Transcend merges video games with pure art---it can be viewed either as a game or as a multimedia sculpture.
Though I first read it after developing Transcend, the Scratchware Manifesto captures the spirit that motivated me to develop a game.
<<lessTwo features set Transcend apart from other games. First, its dynamic graphical engine, which can smoothly morph from one complex shape to another, produces striking displays.
Combining these dynamic shapes with subtle randomizations makes each play through a Transcend level visually different from the last. The second novel feature is Transcends musical power-up system.
As you play through a level, you are simultaneously assembling an abstract visual collage and arranging a unique piece of music. Transcend merges video games with pure art---it can be viewed either as a game or as a multimedia sculpture.
Though I first read it after developing Transcend, the Scratchware Manifesto captures the spirit that motivated me to develop a game.
Download (1.8MB)
Added: 2005-09-01 License: GPL (GNU General Public License) Price:
1584 downloads
MailRecon 1.3
MailRecon is Unix email content control application. more>>
MailRecon is Unix email content control application. It does listen network traffic, capture SMTP messages, analyse it (checks against very flexible and extendable checklist), discards usual private/business messages and save suspicious messages for detailed inspection by security staff.
Main features:
- Capturing email messages from the wire. So its compatible will all mailing software, do not require any reconfiguration and captures messages even if its sent directly to recipient bypassing your mailserver.
- Support for SMTP and POP3 protocols.
- Very flexible mailing filter which goes with MailRecon allows to record only suspicious messages which worth to be examined, and skip usual private and business messages.
- Open Architecture. MailRecon supports plugins for analysis and save of messages. Its very easy to extend its functionality with new plugins - every programmer and system administrator can write it.
- Thanks to Open Architecture, you can use your favorite mail reader or browser to manage archive of captured suspicious messages.
- For limited time, WWW-Security offers free installation and support of evaluation versions on your servers.
- FREE evaluation version which is never expires!
Installation:
- Create user mailrecon and groups mailrecon and mail
- From installation directory run "make install" (as root)
- Copy init.d/mailrecon to your init.d directory and optionally create symlinks from rcN directories if you want to automatially start mailrecon on boot.
<<lessMain features:
- Capturing email messages from the wire. So its compatible will all mailing software, do not require any reconfiguration and captures messages even if its sent directly to recipient bypassing your mailserver.
- Support for SMTP and POP3 protocols.
- Very flexible mailing filter which goes with MailRecon allows to record only suspicious messages which worth to be examined, and skip usual private and business messages.
- Open Architecture. MailRecon supports plugins for analysis and save of messages. Its very easy to extend its functionality with new plugins - every programmer and system administrator can write it.
- Thanks to Open Architecture, you can use your favorite mail reader or browser to manage archive of captured suspicious messages.
- For limited time, WWW-Security offers free installation and support of evaluation versions on your servers.
- FREE evaluation version which is never expires!
Installation:
- Create user mailrecon and groups mailrecon and mail
- From installation directory run "make install" (as root)
- Copy init.d/mailrecon to your init.d directory and optionally create symlinks from rcN directories if you want to automatially start mailrecon on boot.
Download (1.10MB)
Added: 2005-10-18 License: GPL (GNU General Public License) Price:
1466 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 captures 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