Main > Free Download Search >

Free cancels software for linux

cancels

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 93
Clean And Close 2.0

Clean And Close 2.0


Clean And Close is a Firefox extension that cleans completed, canceled and failed downloads from the download list. more>>
Clean And Close is a Firefox extension that replaces the Clean Up button in your Download Manager window with a Clean And Close button that does just that - cleans completed, canceled and failed downloads from the download list and then closes the window.

<<less
Download (0.002MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
866 downloads
c-nocem 3.7

c-nocem 3.7


c-nocem project is a program for the easy and efficient application of the NoCeM protocol on the news spool. more>>
c-nocem project is a program for the easy and efficient application of the NoCeM protocol on the news spool. Which means, articles for which a NoCeM with "action=hide" is accepted, will be deleted from your news system as if they had been cancelled. With the installation described below, these will be processed as fast as possible and should work like real cancels.

Unlike the standard implementation of NoCeM, this version is optimized for the most common case of "spam cancels". In fact, it can do nothing else. It can not be run by a normal user, it does not need or manipulate state like .newsrc files, it processes only "hide" actions, and that only by actually deleting the articles.

c-nocem is designed for easy setup and fast run and needs no maintenance.

<<less
Download (0.044MB)
Added: 2007-01-25 License: Public Domain Price:
1002 downloads
NewsLib 0.84

NewsLib 0.84


NewsLib is a library of perl modules for managing Network News services. more>>
NewsLib is a library of perl modules for managing Network News services. Its meant to be used for code-reuse and sharing when writing news-based applications.
It currently includes:
- News::Article::Response - Create responses to News::Article articles
- News::Article::Ref - Reference functions for news articles
- News::Article::Clean - Subroutines to clean News::Article headers
- News::Article::Cancel - Generate accurate cancel messages
- News::NNTPAuth - Deprecated for Net::NNTP::Auth
- Net::NNTP::Auth - A standard NNTP authentication method
- Net::NNTP::Proxy - A news server in perl
- Net::NNTP::Client - Simulate an entire NNTP client
- Net::NNTP::Functions - Code to implement NNTP-standard functions
<<less
Download (0.033MB)
Added: 2005-09-27 License: GPL (GNU General Public License) Price:
1487 downloads
KateBuild 0.4

KateBuild 0.4


KateBuild is mainly a modification of the make plugin in kdeaddons. more>>
KateBuild is mainly a modification of the make plugin in kdeaddons. The main features of this plugin:
-Set the working directory for make
-Specify the make command
-Chose an extra target
-Specify a Quick compile command for the current file.
-Run the make/make target/quick compile.
-The parsing of the make output is more complete then the make plugin.
When run, the output of make and the compiler (tested with gcc) is parsed an a list of errors/warnings is generated. When a list item is chosen, the file containing the error is opened and the cursor is set to the line of the error/warning.
Enhancements:
- fix crash when trying to run two builds at once.
- add a break command to cancel a running build.
<<less
Download (0.56MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
856 downloads
jNetTool 0.4.0

jNetTool 0.4.0


jNetTool is a tool that includes whois, nslookup (dig), ping, traceroute, and portscan. more>>
jNetTool is a Swiss-knife for networks. It includes whois and nslookup queries, ping and traceroute, an IP address calculator, and a visual network planing-tool.
Features:
Whois:
With jNetTool-whois you find out who owns a domain or IP-address. Please enter a domain without "www" - for example "ventruba.com".
DNS-Lookup:
With jNetTool-ns-lookup you find out the nameserver for a domain, or which is the ip for a domain (A-record) or which mailserver is responsible (MX-record).
Ping:
A jNetTool-ping is "knocking at the door" of a computer. You will see if a computer is answering and how long will a package take.
Traceroute:
Which way will a package take from you computer to the target and how long will it take itemized for each station - jNetTool-traceroute will tell you.
Portscan:
jNetTool-portscan: Which service offers the computer? Please take care with this, some owner would misinterpret this as an attack! Use ownly if allowed from the owner!
IP-Calculator:
This nice tool shows you the networkclass of an IP-address, or you can calculate subnets, how many hosts are in a subnet, and so on....
Network planning:
The jnetool-networkplaningtool is not for real business, for the moment.
Enhancements:
- change bug, when change language to the selected language
- change bug, show description for ip in net-calc
- change reading of whois.conf now works with launch4j
- add support for .exe (launch4j) for better starting under Windows (but still needs JRE!)
Enhancements:
- change code of panels more modular/more objectorientation
- add drop-down field + history for IP/Domainname
- add mnemonics
- add Tooltips
- add Show message if field domainname is empty on "GO"
- add linkover for ping and traceroute
- change view of traceroute is now simple from system-traceroute
- add Header for each Output-Panel
- change bug on pressing cancel (switch_buttons was called twice)
- change status window with cancel button and progress bar
- change ip-input as dropdown-field with history
- add input-field for dig-server
- add save for all panels except calc
<<less
Download (0.68MB)
Added: 2005-06-06 License: BSD License Price:
1603 downloads
CommandGui 0.1

CommandGui 0.1


CommandGui is a package for the graphical management of process output errors. more>>
CommandGui is a package of classes that intercept and show asynchronous process output errors from graphical applications.

Usage

The main class is "CCommandGui" class; it includes the public methods to set the GUIs graphical properties (see CCommandGui.h) and the public method to open the window, execute the command and view corresponding output (ExecViewComm(...)).
The auxiliary class "CCommandGuiTimer" is not directly available but it is used by the CCommandGui class.

The utility class "CProcessManager" includes generic methods as methods to start processes and put the corresponding output in a string and methods to now the children processes hierarchy and relative status.

The sense of the classes is allowing to execute some command or program inside the application and follow the execution with output or errors in graphical interface without opening a shell. The GUI can terminate all of the started processes ("Cancel button") and show our termination status.

Exemple

Example of use:

#include "wx/wx.h"
#include "CCommandGui.h"
...

//Create and set output window
CCommandGui* gui;
gui=new CCommandGui(NULL,-1,"MyProcess");
gui->SetInitList("Started MyProcess...");
gui->SetEndList("MyProcess Terminated...");
gui->SetTimeOut(500);
gui->SetLineWidth(500);
gui->SetListHeigth(500);

//Prepare command parameters
wxArrayString parameters;
parameters.Add("P1");
parameters.Add("P2");
parameters.Add("P3");
...

//Asyncronous command exec and open output window modal
int ret=gui->ExecViewComm("MyProcess",parameters);

//Analyse error
if(retDestroy();

...

All of the classes are based on libraries wxWidgets for graphical objects and some efficient class (wxString, wxArrayString, wxInputStream, wxOutputStream...).

The classes can be used only after the installation of the package wx_gtk-2.4 or different version.
<<less
Download (0.15MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1641 downloads
Tiger Envelopes 0.8.9

Tiger Envelopes 0.8.9


Tiger Envelopes is an easy way to get your email privacy back. more>>
Tiger Envelopes is an easy way to get your email privacy back.
With Tiger Envelopes you use email just like you always have with everyone. And, without you doing anything, your messages are private with people who use envelopes.
The mission of Tiger Envelopes is to make private email easy.
Theres a tradeoff between ease of use and security. For too many years some security professionals have said any privacy thats not perfect is worse than worthless. They say it creates a false sense of security.
No one has a false sense of security about envelopes. Theyre made of paper. But we know theyre much more private than messages without envelopes, such as postcards or email.
Tiger gives you envelopes for your email.
Envelopes comes in two versions, Free and Business.
Tiger Free Envelopes is free in both senses, gratis and libre. It is released under the GPL.
Tiger Business Envelopes is commercial. Its based on Tiger Free Envelopes and adds support plus advanced features businesses need. Source code is included for security audits, but its not GPL.
Enhancements:
- Improved imap support for Thunderbird.
- Start Envelopes from the installer during new installations more reliably.
- Change welcome email message to "what to do" message.
- Save options if installer canceled and options changed.
- Shortened the message in the installers final panel.
- Include how to start the control panel on Linux.
- Removed welcome message from control panel.
- Fixed net.n3.nanoxml.StdXMLParser so searches for dtd in jar files when offline.
- Called closeSession() if user, password, or remote host invalid.
- Improved error messages if remote host not found.
- Ignore files starting with . in the notices directory.
- Created ProxyUser class to manage client and remote user data in proxies.
- Removed thirdparty source that we havent customized.
- Added thirdparty/lib directory with unmodified third party jar files.
- Added setChanged() to envelopes.io classes.
- Delete email accounts from options after theyre anonymized.
- Send notice if Tiger account not defined for a POP3 account.
- Send error message to mail client if POP3 command invalid.
- Validate POP3, IMAP, and SMTP commands from mail client.
- Send 252 response code when VRFY requested of SMTP proxy.
- Send 550 response code when EXPN received by SMTP proxy.
<<less
Download (54MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
914 downloads
gtranscode 0.3

gtranscode 0.3


gtranscode is a GTK+ GUI (graphical use interface) front-end for transcode . more>>
gtranscode is a GTK+ GUI (graphical use interface) front-end for transcode written in order to make this powerful tool easier to use. Transcode is a powerful video and audio processing tool that can read in just about any format of video and/or audio and convert to just as many different formats. In addition to transcodes extremely flexible modular concept for reading/writing different formats and codecs, it can apply filters, do re-sampling, resizing, cropping, and more. The cost from all this comes in the form of over 100 command line options but gtranscode aims to simplify.
Main features:
- organized layout to reduce confusion
- supports all of the options that most users will want
- uses tcprobe -i (from transcode package) to summarize information about input file before processing
- shows the equivalent transcode command line for troubleshooting and familiarizing users with command line options
- any extra options not supported by the GUI can be manually entered in the entry box before hitting "GO"
- automatic "maintain aspect ratio" calculations
- automatic "projected filesize" calculations based on bitrates
Enhancements:
- added much needed cancel button to progress window
- added capability to tcprobe an entire directory and add the number of frames up. This allows a directory to be transcoded without the progress bar saying NaN.
<<less
Download (0.019MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1182 downloads
Mail::Send 1.74

Mail::Send 1.74


Mail::Send is a simple electronic mail interface. more>>
Mail::Send is a simple electronic mail interface.

SYNOPSIS:

require Mail::Send;

$msg = new Mail::Send;

$msg = new Mail::Send Subject=>example subject, To=>timbo;

$msg->to(user@host);
$msg->to(user@host, user2@example.com);
$msg->subject(example subject);
$msg->cc(user@host);
$msg->bcc(someone@else);

$msg->set($header, @values);
$msg->add($header, @values);
$msg->delete($header);

# Launch mailer and set headers. The filehandle returned
# by open() is an instance of the Mail::Mailer class.
# Arguments to the open() method are passed to the Mail::Mailer
# constructor.

$fh = $msg->open; # some default mailer
# $fh = $msg->open(sendmail); # explicit

print $fh "Body of message";

$fh->close; # complete the message and send it

$fh->cancel; # not yet implemented
<<less
Download (0.047MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1269 downloads
smp-encode 0.99

smp-encode 0.99


smp-encode is a compact utility that encodes groups of audio files. more>>
smp-encode is a compact utility that encodes groups of audio files in parallel to make use of multiple CPUs with single threaded encoders.
smp-encode project supports supports OggEnc and LAME.
Usage:
smp-encode is invoked with 3 mandatory arguments.
-e < encoder > where encoder is one of the available builtin modules, "lame" or "oggenc" as of now. encoder arguments are hardcoded in encoder.cpp, but in the future these will be defined on smp-encodes commandline.
-p < N > where N refers to any number over over 0. This will cause smp-encode to generate N processes to be used to encode the given files. Given files are evenly distributed.
The last mandatory argument is a choice between a list of files, either given explicitly or via wildcard (eg. ./*.wav) or the -d < directory > argument.
As of now, successful invocations dont display anything during runtime, in the future some progress info will be reported.
Compile:
You should be fine with just running make and then make install. This will generate a program named smp-encode that is stripped. And throw it in /usr/local/bin
If you need to add encoders or edit the argvs of them, encoder.cpp is where all that stuff is done.
Enhancements:
- A complete rewrite using the GTK+2.0 UI.
- Thread control (pause and cancel).
- Many options from LAME and oggenc are implemented in the GUI.
- Progress bars indicate individual thread progress.
- Many other tweaks and bugfixes related to the rewrite.
<<less
Download (0.016MB)
Added: 2006-03-06 License: GPL (GNU General Public License) Price:
1328 downloads
GTK Oracle 1.41

GTK Oracle 1.41


GTK Oracle is a GTK+ 2 interface to Oracle that aids in Oracle application development and testing. more>>
GTK Oracle is a GTK+ 2 interface to Oracle that aids in Oracle application development and testing.
Its features include a schema browser, multiple SQL work areas, SQL syntax highlighting, bind variable entry widgets in the command window, and SQL*Plus-style command scripting.
For SQL statement analysis and tuning there is a tree-style SQL statement "explain plan" facility and the ability to load SQL statements from the runtime cursor cache (V$SQL table), Oracle Statspack repository, and the Oracle Automatic Workload Repository in Oracle version 10g. Full statistics are available on loaded statements.
Main features:
- manually running your applications SQL, outside of the application itself
- trying to find out what queries your application is even running
- checking and gathering statistics
- comparing plans
- running statspack to evaluate results
- autotracing
- peeking in AWR
- peeking the shared pool / v$sqlarea / statspack SQL
- identifying high-resource SQL then this might be of some help.
Usage:
- SQL in the text buffer (anything that gets run via the Execute button) is run on its own thread in the background so it will not block the GUI part, and you can cancel it. This execution thread is started when you start up the program, hopefully never exits, and receives commands via a GLib asynchronous queue, so you can safely keep hitting Execute while a command is running, it will just execute them in order.
- If you log in as SYSDBA you will get a combo box just under the main menubar. Changing the value will execute ALTER SESSION SET CURRENT_SCHEMA=somebody; so when you browse it will be as if you were this user. Be aware that any SQL you execute will result in SYS being recorded as the parsing user in the cursor cache, however.
- If you want to access the cursor cache or statspack or AWR you will need to log in with SYSDBA privileges. You might be able to get away with simply having SELECT on SYS.V$SQLAREA and SYS.V$SQLTEXT.
- SYS is excluded from the cursor cache browsing results. Otherwise you end up with a mass of recursive SQL, which you are not going to be able to tune and that is the point here. If youre a masochist and you do want to browse recursives I suppose you can just modify the relevant SQL so that SYS is not exculded and recompile. Have fun.
- AWR features are only available on 10G servers.
- DBMS_OUTPUT works, go to Edit->DBMS OUTPUT Enable
<<less
Download (0.46MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1201 downloads
GNU sauce 0.8.1

GNU sauce 0.8.1


GNU Sauce is an anti-spam server. more>>
GNU Sauce is an anti-spam server. SAUCE (Software Against Unsolicited Commercial Email) is an SMTP server that sits between the Internet and your actual mail software. It was originally written to help in the fight against spam, but it also helps encourage good configuration and administration in general.

SAUCE has various tactics for DETECTING incoming spam:


Extremely aggressive checks on incoming email and its sources. If any problems are discovered the mail is not accepted.
Spambait addresses: when mail is sent to a bait address its sources are blacklisted.
Mail from previously-unknown sources is delayed to give them a chance to try a bait address or get their account cancelled.

Pros:

SAUCE is very sucessful. It can cut spam by an order of magnitude.
Administrators using SAUCE have to deal with much less bounced mail.
SAUCE never bounces legitimate mail from correct, non-spamming sites.

Cons:

Most spam sources are misconfigured, but many other sites are too, and SAUCE will bounce their mail. SAUCE is not for you if clueless strangers often send you mail thats important to you.
SAUCE delays mail from new senders and sites (configurable, though).
SAUCE is something of a resource hog.
SAUCE is hard to install, especially if youre not using Debian.
SAUCE is controversial, because it deliberately rejects mail for technical deficiencies which wouldnt make it undeliverable.

SAUCE is not a users mailer. It must be installed on a mail hub by the system administrator. It needs existing SMTP software, which must have standard anti-spam features such as relay prevention, checking recipients during the SMTP conversation, etc. Currently you must be using Exim, though support for other mailers could be added.
<<less
Download (0.081MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1204 downloads
C2::Newsletter 0.3 beta

C2::Newsletter 0.3 beta


C2::Newsletter is a tool to send MIME-encoded newsletters. more>>
C2::Newsletter is a simple tool for sending newsletters to your visitors. It allows you to create multiple newsletters, so your visitors can select which topics they want to receive.
There is an admin interface to add/edit newsletters and recipients, and send in plain text or MIME-encoded. It is easy to use, but currently only in German (English will be available soon).
Enhancements:
new Features
- Verification email is now configurable (plain text only)
- Supports now the admin as recipient for verification emails
fixed Bugs:
- Admin interface allows to list the recipients of a specified newsletter
- Config page => cancel button now works
- deleting a newsletter deletes also items in c2_mail_newsletter_selections
- holds email when adding a new recipient record
- verification of new recipients now works
performance:
- function GetConfig()
<<less
Download (0.024MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1642 downloads
Grendel 19990514

Grendel 19990514


Grendel is a Java mail client. more>>
[COPYRGHT=1]

You may recall that in 1997, Netscape embarked on a project to rewrite Navigator/Communicator in Java. This project (code named "Xena," but sometimes referred to by the press as "Javagator") was cancelled before completion.

Grendel is the mail-news portion of the Xena project written in Java. Its goal is to be a true cross-platform application with a feature set that satisfies the poweruser.

Grendel was originally developed as a part of the "Javagator" project at Netscape. This project was cancelled before completion after 3 years of development. After the source for Grendel was released other people started to work toward completing it for about another 2 years. The original release was therefore incomplete.

The build system is currently being redone to use Apache Ant instead of Makefiles. The easiest way to compile Grendel in its current state is to grab a copy of JCreator and create a Grendel project in the directory and compile it. A lot of test files are currently being separated out into different directories so if a certain file isnt compiling nicely, its probably because its a broken test file that can be deleted from your tree safely.

Were also in the process of moving Grendel from its own XML format to a Mozilla-friendly XUL format using the MozCreator Java XUL Parser API. Wed also like to contain all resources into one easy to manage resource folder instead of dumping them all over the source tree.

Why have Grendel when we have Thunderbird?

A primary goal with Grendel is restoring the libraries contained in the email client to full state as well as providing a working email program. Having a Java port of many of the Mozilla libraries from C++ to Java would be very valuable to many projects. The code has a lot of potential and having the Mozilla platform available for Java programmers can be a invaluable resource for Java programmers wishing to utilize email features easily. Its Java design eliminates some of the problems of a C++ design like Thunderbird. For example, Java has garbage collection and no restriction of language features in order to maintain cross-platform compatibility (like with C++ and lack of feature usage like templates for compatibility).

<<less
Download (0.53MB)
Added: 2006-02-24 License: MPL (Mozilla Public License) Price:
1340 downloads
Apache File Manager 0.19

Apache File Manager 0.19


Apache File Manager is an Apache mod_perl Web server filemanager. more>>
The Apache::FileManager module is a simple HTML file manager. It provides file manipulations such as cut, copy, paste, delete, rename, extract archive, create directory, create file, edit file, and upload files.
It also has the ability to rsync the server htdocs tree to another server with the click of a button.
Enhancements:
- prevented file edit screen from opening when cancel is clicked when creating new filenames
- fixed up documentation
<<less
Download (0.012MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1644 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5