Main > Free Download Search >

Free rezervi 2.5 software for linux

rezervi 2.5

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 199
Maverix 2.5

Maverix 2.5


Maverix is an Anti-Spam and Anti-Virus solution for AOLServer. more>>
Maverix is an Anti-Spam and Anti-Virus solution for AOLServer.

This is AOLserver module that implements SMTP protocol and acts as SMTP proxy with anti-spam and anti-virus capabilities. It includes Web interface to manage quarantined messages and administrative interface based on OSSWEB.

Compiling and Installing

To compile and run nsmaverix module special patch to AOLserver 4.x should be applied or already patched server downloaded from FTP site. It enables non-HTTP module support in the AOLServer driver infrastucture.

To support anti-SPAM feature one of the following should be installed:

SpamAssasin
DSPAM: patched version.

To support anti-virus feature one of the following should be installed:

ClamAV
Sophos: SAVI

PostgreSQL server should be installed and running before installing OSSWEB and Maverix.

Once enabled, maverix acts as SMTP server forwarding all messaged to configured real smtp server via relay parameter. for each SMTP command it calles configured Tcl handler which performs actual processing.
<<less
Download (9.6MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1345 downloads
RefactorIT 2.5.4

RefactorIT 2.5.4


Refactorit is a Java refactoring browser for Netbeans, JBuilder, Jdev, and standalone. more>>
RefactorIT project is a tool for Java developers. A developer can take source code of any size and complexity and rework it into well-designed code by means of over 30 automated refactorings.
In addition, it provides a comprehensive set of smart query functions, a graphical dependency analyzer, and over 100 quality metrics and audits that make it possible to analyze and track large volumes of code.
It may be used as a stand-alone tool or installed as an add-in to NetBeans, Sun ONE Studio, JDeveloper, and JBuilder.
Speed and flexibility, innovativeness and aesthetics, power and appeal - todays developers and software architects expect a lot from their software development tools.
Spontaneity is especially important: we all want to be able to put our plans into action quickly.
RefactorIT is the ideal development tool for people who enjoy their freedom - it is the first comprehensive refactoring and code analyses tool that goes everywhere you want to take it - no matter...
- what IDE your team is working with - by choice or force,
- what kind of Java technologies you are developing with,
- how daring your refactoring project may seem.
RefactorIT provides
- Automatic Refactoring Operations,
- Code Searches and Analysis,
- Audits and Corrective Actions,
- Metrics,
- IDE integrations,
- Full JSP support.
<<less
Download (28.7MB)
Added: 2006-05-11 License: Free To Use But Restricted Price:
721 downloads
eCorrei 1.2.5

eCorrei 1.2.5


eCorrei is a webmail system. more>>
eCorrei is a webmail system. This means it will allow you to access your POP email account via the web. It can do (nearly) all the things a normal email client can do: receiving mail, sending mail, replying, forwarding, etc. eCorrei is fast, simple and cross-platform.
Main features:
- Support for both POP3 and IMAP
- Receiving plain text messages, HTML messages, messages with attachments, HTML messages with attachments and HTML messages with inline images
- Sending emails using a SMTP server or the PHP mail function
- Replying and forwarding of emails
- Deleting emails, one or more at a time
- Autorefresh of Inbox
- Options for setting name and email address
- Parsing of URLs in messages
- Quickly send mails with smart maillinks in messages
- Add signature to mails
- Addressbook with groups to organize your addresses
- Multiple language support (user can choose language)
Enhancements:
- Fixed PHP version bug in check.php
- Now presets language based on browser settings
- Some CSS changes
- Changed config options to $cfg->...
- Added append option in config
- Converted all images to PNG
- Fixed signature problem
- Added Invert selection feature in Inbox
- Fixed some IE6 center problems
- Updated SECURITY
- Fixed inline imaging
- Added option to set timezone in Options
- Added UTF-8 support (receiving)
- JavaScript included in every page is in a .js-file now
- Magic quotes is disabled now
- Possibility to view message header
- New configuration option allows you to set refresh time of Inbox
- Fixed bug in autorefresh of Inbox
- New address parser in create script allows you to mail to entire groups of the addressbook at once
- Fixed bug with high priority
- Tweaked the icons a bit
- Fixed JavaScript problem in Inbox and Contacts
- Fixed CC and BCC problem
<<less
Download (0.053MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1233 downloads
labrea 2.5

labrea 2.5


labrea is a intrusion detection / sticky honey pot technology using virtual servers to detect malware. more>>
LaBrea is a intrusion detection / "sticky" honey pot technology using virtual servers to detect malware. LaBrea takes over unused IP addresses, and creates virtual servers that are attractive to worms, hackers, and other denizens of the Internet. The program answers to connection attempts in a way that the machine at the other end gets "stuck", sometimes for a very long time.
LaBrea works by watching ARP requests and replies. When the pgm sees consecutive ARP requests spaced several seconds apart, without any intervening ARP reply, it assumes that the IP in question is unoccupied. It then "creates" an ARP reply with a bogus MAC address, and fires it back to the requester.
An example (from a tcpdump of LaBrea running on my network):
14:18:28.832187 ARP who-has xx.xx.xx.13 tell xx.xx.xx.1
14:18:29.646402 ARP who-has xx.xx.xx.13 tell xx.xx.xx.1
14:18:31.707295 ARP who-has xx.xx.xx.13 tell xx.xx.xx.1
14:18:31.707574 ARP reply xx.xx.xx.13 is-at 0:0:f:ff:ff:ff
There is no xx.xx.xx.13 machine on my network. In this case, the timeout was set to 3 seconds (its a command line parameter), and when that final "who-has" came in, the "is-at" reply that you see was generated by LaBrea.
There isnt a MAC address of 0:0:f:ff:ff:ff either. It doesnt exist.
But now, the router (xx.xx.xx.1) believes that there some machine at xx.xx.xx.13, and that it resides on the MAC address 0:0:f:ff:ff:ff, and so it dutifully sends packets on. In
essence, weve created a "virtual machine" on that IP address.
Now, LaBrea also watches for TCP traffic destined for the ether address 0:0:f:ff:ff:ff. When it sees an inbound TCP SYN packet, it replies with a SYN/ACK that "tarpits" that connection attempt. Everything else is ignored. (Well... sort of. LaBrea also tries to give its "virtual machines" some character... you can ping them, and they respond to a SYN/ACK with a RST.
Theres more to it than that (obviously...) but youll need to read further.
Enhancements:
- src/ctl.c (ctl_init_arrays): Remove call to sleep since not supposed to mix with alarm calls on linux.
- src/utils.c (util_alarm), src/labrea.c: Set alarm and signal handlers after going into daemon mode so that child will get signal
- src/labrea_init.c, src/lbio.c: Take out fudge code since libdnet 1.7 ethopen now uses the libdnet device names (ie eth1, etc).
<<less
Download (0.20MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1208 downloads
DreamPlayer 0.2.5

DreamPlayer 0.2.5


DreamPlayer is a Linux-console multi format player. more>>
DreamPlayer is a Linux-console multi format player. Its the first Linux console multimedia player supports TwinVQ, and Wave (for now). There is planned version for Windows in the future. Player uses free decoder library known as TwinVQ SDK by NTT.

You probably have a question Why Ive decided to write a text console program. The answer is very simple. As you can read in About Me I just love to listen music, especially during working. I use TwinVQ for collecting music - because of smaller file size - I thought that all over the world there are many people who would do like me.

Yes, I know there is a Linux native multimedia player called XMMS working in the X Window environment. But X Window uses much more resources than my program, and XMMS arent better. So I wanted to create a small player with big abilities. The first: I did by using text console environment, the second: Im on ncurses based interface to make the player more useful. Additionally my player is available as freeware on the GNU GPL and as an Open Source. So you can use my code, change as you wish, but just write that the original code is mine

<<less
Download (0.38MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1186 downloads
SendIP 2.5

SendIP 2.5


SendIP is a commandline tool to send arbitrary packets. more>>
SendIP is a command-line tool to send arbitrary IP packets. It has a large number of options to specify the content of every header of a RIP, RIPng, BGP, TCP, UDP, ICMP, or raw IPv4/IPv6 packet.
It also allows any data to be added to the packet. Checksums can be calculated automatically, but if you wish to send out wrong checksums, that is supported too.
Here is a list of protocols that SendIP currently understands:
- IPv4 (but see below section 7)
- TCP
- BGP
- ICMP
- UDP
- RIP
- NTP
- IPv6 (except on solaris)
- ICMPv6
- TCP
- UDP
- RIPng
- NTP?
Other protocols will be added in future versions, as and when I have time to add them.
Of course, it is still possible to send packets using other protocols, but you have to construct the packet data and headers entirely by hand.
Installation
make ; make install should work.
You MUST use GNU make.
On Solaris you need to use gcc-3.x or above, and GNU binutils.
On other platforms, you probably need gcc-2.x or above.
If you have install problems on Solaris, try:
make install INSTALL=/usr/ucb/install
If you cant persuade it to compile or install, mail me with details of what goes wrong, and what system you are trying to install it on.
By this I mean at least:
- output of make -k veryclean all install
- OS, including version
- version of make, gcc, etc
- version of sendip
- anything else you think might be relevant
You can change where it installs by changing BINDIR and/or PREFIX at the top of the Makefile.
A .spec file is included to build RPMS, and source and binary RPMS are also available from the web page. Debian packages are also available, and sendip is included in the FreeBSD ports collection.
Usage
SendIP can take a huge number of commandline parameters. For this reason, future versions may have some sort of user interface...
Please read the man page or sendip -h for details. They are not documented here because they change often between versions and I cant be bothered to keep this up to date.
<<less
Download (0.052MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1643 downloads
Zinf 2.2.5

Zinf 2.2.5


Zinf is an MP3/Vorbis/CD audio player with jukebox capabilities. more>>
The Zinf audio player is a simple, but powerful audio player for Linux and Win32. It supports MP3, Ogg/Vorbis, WAV and Audio CD playback, with a powerful music browser, theme support and a download manager.
It is based on the FreeA*p audio player which was developed by EMusic.com -- however, EMusic.com recently discontinued the FreeA*p project.
The Zinf project provides a stable and useful audio player with an advanced music database. We are looking for increased speed, stability, and cross-platform support in addition to its current capabilities.
For the existance of Zinf, please thank the original FreeA*p team at EMusic: Gene Hoffman, Brett Thomas, Jason Woodward and Mark Elrod.
Main features:
- MP3 playback using the Xing Audio decoder.
- Ogg/Vorbis playback
- WAV format playback
- Audio CD playback
- SHOUTcast/Icecast HTTP streaming playback with stream saving
- RTP unicast/multicast streaming playback
- Title streaming support (SHOUTcast and Icecast styles)
- PLS/M3U playlist support
- Integrated MusicBrowser/Playlist support
- Themed user interface
- Audio CD Metadata lookup via MusicBrainz
- Download manager for batch RMP downloads from EMusic
- Full tagging support: Id3v1,Id3v2, Vorbis
- OSS playback
- Enlightened Sound Daemon (ESD) playback
- ALSA playback
- Arts playback
- Album Art display
- OSD (On-Screen Display)
<<less
Download (1.4MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1631 downloads
FreePOPs 0.2.5

FreePOPs 0.2.5


FreePOPs is a POP3 server that is scriptable in LUA. more>>
FreePOPs is a POP3 daemon plus a LUA interpreter and some extra libraries for HTTP and HTML parsing. FreePOPss main purpose is translating local POP3 requests to remote HTTP actions on the supported web-mails, but it is really more flexible.
For example there is a plugin to read news from a website as if they were mails in a mailbox. You can easily extend FreePOPs on the fly, without even restarting it. You can add a plugin or modify an existing one simply changing the script file since the plugins are written in LUA and are interpreted on the fly.
Main features:
Usage
FreePOPs can be useful in some situations, here we give the most obvious ones:
- You are behind a firewall that closes the 110 port but you need to read your mail and the web-mail of your mail provider sucks.
- Your mail provider does not allow you to access your mailbox with POP3 protocol, but only through the web-mail service.
- You prefer looking at your mailbox instead of browsing some websites news.
- You have to develop a pop3 server in less than a week and you want it to be reasonably fast and not so memory consuming.
- You are not a C hacker, but you want to benefit from a fast POP3 server frontend written in C and you want not to loose a month in writing the backend in C. LUA is a really simple and tiny language, one week is enough to learn it in a way that allows you to use it productively.
Features
FreePOPs is the only software we know with these features:
- POP3 server RFC compliant (not full featured but compliant).
- Portable (written in C and LUA that is written in C, so everything is written in the most portable language around the world).
- Small (in the sense of resources usage) and reasonably fast.
- Extremely extensible on the fly using a simple and power ful language.
- Pretty documented.
- Released under the GNU/GPL license (this means FreePOPs is Free Software).
Enhancements:
- fixed an ancestral wrong compilation flag for regexes, no more REG_NEWLINE
- hotmail.lua: bumped to make them released again (gareuselesinge)
- supereva.lua: supereva plugin updates (gareuselesinge)
- libero.lua: fixed bug for attachments (gareuselesinge)
- libero.lua: changed pattern matching (gareuselesinge)
- hotmail.lua: Update the logout url and try to handle an expired session better. (russell822)
- libero.lua: bumped to make it released agaiN (gareuselesinge)
- supereva.lua, tin.lua: fixed attachments in tin and supereva, added dada.net (gareuselesinge)
- libero.lua: fixed mlex (gareuselesinge)
- aol.lua: Changed the AOL plugin to use the "classic" web interface. (russell822)
- added patch by Viruzzo to mimer and supereva.lua
- moved bpo build to etch
<<less
Download (1.8MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
857 downloads
gfeed 2.5.0

gfeed 2.5.0


gfeed is an RSS/RDF feed reader. more>>
gfeed is an RSS/RDF feed reader for Linux and Gtk+-2.0. gfeed project is designed to be a simple yet highly customizeable reader, not an agggregater, which means it is designed for easy integration into a desktop.
Main features:
- Customizable "feed" files that describe a feed
- Full support for transparency(native to the app) under X.org >= 6.8
- Automatic updating of feeds based on an interval defined in the feed file
- Customizeable Background and Foreground colors
<<less
Download (0.17MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1289 downloads
vSignup 2.5

vSignup 2.5


vSignup providea a member registration script which utilizes vAuthenticate for its security handling. more>>
vSignup providea a member registration script which utilizes vAuthenticate for its security handling.

vSignup is a member registration script which utilizes vAuthenticate for its security handling. This handy script features email verification, sending confirmation email message, restricting email domains that are allowed for membership, and much more.

1. Please read the documentation.html thoroughly before attempting to install vSignup 2.5 much more send a support email

2. Please read the faq.txt first before sending a support email as most issues are resolved or explained well in the said file

3. Implementation, customization, and modifications to the code are available for a minimal fee. If you dont want to shell out some cash, go through the documents a couple of times then send me a support email and Ill help you out as much as I can. For cases wherein the only solution is a customization, you either do the customization yourself or let me do it for you (chargeable, of course)

<<less
Download (0.067MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
923 downloads
Nosefart 2.5

Nosefart 2.5


Nosefart is a player for NES Sound Format. more>>
Nosefart is a player for NES Sound Format (NSF) files (which consist of audio data ripped from Nintendo Entertainment System games).
It runs as a standalone player in Linux, with both command line and GTK interfaces, as well has having plugins for Winamp, XMMS, and CL-amp.
Enhancements:
- The file selection dialog now remembers what directory you used in the last session.
- If esd (or something else) is blocking the sound card, it now pops up an error rather than just hanging.
<<less
Download (0.50MB)
Added: 2005-09-21 License: LGPL (GNU Lesser General Public License) Price:
1495 downloads
radlib 2.2.5

radlib 2.2.5


radlib is a C language library developed to abstract details of interprocess communications. more>>
radlib is a C language library developed to abstract details of interprocess communications and common linux/unix system facilities so that application developers can concentrate on application solutions.
It encourages developers (whether expert or novice) to use a proven paradigm of event-driven, asynchronous design.
By abstracting interprocess messaging, events, timers, and any I/O device that can be represented as a file descriptor, radlib simplifies the implementation of multi-purpose processes, as well as multi-process applications.
radlib greatly improves typical process performance through the use of shared memory buffers to avoid costly "malloc" and "free" library calls.
These buffers are also used for interprocess messages. radlib also utilizes shared memory constructs to provide global message queue management and global "Queue Groups" for increased interprocess communications flexibility.
All shared resources are semaphore protected to avoid issues with concurrent access.
In short, radlib is a sincere attempt to provide real-time OS capability on a non-real-time OS. It has been successfully deployed on linux, MacOSX and FreeBSD but there is no reason it would not build and run on any flavor of unix supporting System V IPC.
Specifically, radlib provides fast system buffers, a simple config file utility, events, doubly-linked lists, process logging through syslog, message queues, semaphores, shared memory utilities, timers, stacks, state machine utilities, a process framework, a process management utility to start/stop groups of processes, optional MySQL or PostgreSQL database API, straightforward TCP/streams socket API, and other assorted system utilities.
Enhancements:
- hanged some database field processing to comply with the postgresql changes made in version 8.
<<less
Download (0.18MB)
Added: 2005-09-27 License: BSD License Price:
1488 downloads
SWTerm 2.5.2

SWTerm 2.5.2


SWTerm is a non-graphical alternative to the XShipWars Client. more>>
SWTerm is a text-based ShipWars client that uses curses.

SWTerm is a non-graphical alternative to the XShipWars Client, allowing non-X users to connect to and play on ShipWars universes.

<<less
Download (0.16MB)
Added: 2005-12-27 License: GPL (GNU General Public License) Price:
1396 downloads
nessquik 2.5

nessquik 2.5


nessquik is a fast Web-based Nessus scanner that is intended to replace the Nessus stand alone client. more>>
nessquik is a fast Web-based Nessus scanner that is intended to replace the Nessus stand alone client.
nessquik project uses the prototype.js library to provide a responsive interface even when dealing with all of the available Nessus plugins.
Enhancements:
- A complete redesign of the interface has been done.
- Much more flexibility has been added to the interface as well.
- Scans can be stopped while they are running.
- All scan settings can be configured at creation time.
- An XML-RPC API has been added for third party developers.
- Numerous code fixes and performance enhancements have been made to every part of the system.
<<less
Download (0.80MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
840 downloads
NPI 0.2.5

NPI 0.2.5


NPI is a simple calculator that supports Reverse Polish Notation. more>>
NPI is a simple calculator that supports Reverse Polish Notation, devised by Jan Lukasiewicz in the Twenties to allow evaluation of mathematical expressions without brackets. NPI calculator supports completion and command history.

In the Twenties, Jan Lukasiewicz developed a system of formal logic making it
possible the mathematical expressions to be indicated without brackets while
placing the operators avant (notation of prefix) or after (notation of suffix)
the operands.

The notation of suffix is named Polish notation reversed (RPN = Reverse
Polish Notation) in the honor of Lukasiewicz.

With this program you will be able to calculate maths expression in the Unix
shell using the RPN notation and with historic and completion support.

<<less
Download (0.033MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1125 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5