Ports 搜索

共有17,660项符合descr%3A%22spam filter%22的查询结果,以下是第1,9211,930项(搜索用时0.008秒)
graphics/asciio-1.51.3 (Score: 0.0014843037)
Perl/GTK application that lets you draw ASCII charts using a GUI
A Perl/GTK application that lets you draw ASCII charts using a GUI. Objects on the screen are sizable and have all the properties you'd expect in a drawing tool (titles for the boxes, bullets, etc), but the end result is plain text that's embeddable in your code.
graphics/kcolorchooser-4.14.3 (Score: 0.0014843037)
KDE 4 application to select colors from the screen or from a palette
KColorChooser is a simple application to select colors from the screen or from a palette. FEATURES - Select colors from any location on the screen. - Select colors from a range of standard palettes available. - Color values shown in Hue-Saturation-Value (HSV), Red-Green-Blue (RGB) and HTML formats.
mail/smtptrapd-1.6 (Score: 0.0014843037)
RFC 2821 compliant SMTP service that always returns a 4xx soft error
The smtptrapd program is a multi-threaded daemon that provides a RFC 2821 compliant SMTP service that always returns a 4xx soft error to the RCPT TO verb. Use it to keep spammers who try to exploit the MX with highest PRI away.
net/Net-Ident-1.23 (Score: 0.0014843037)
Lookup the username on the remote end of a TCP/IP connection
Net::Ident is a module that looks up the username on the remote side of a TCP/IP connection through the ident (auth/tap) protocol described in RFC1413 (which supersedes RFC931). Note that this requires the remote site to run a daemon (often called identd) to provide the requested information, so it is not always available for all TCP/IP connections.
net/samplicator-1.3.7.b6 (Score: 0.0014843037)
Receives UDP datagrams and redistributes them to a set of receivers
This small program receives UDP datagrams on a given port, and resends those datagrams to a specified set of receivers. In addition, a sampling divisor N may be specified individually for each receiver, which will then only receive one in N of the received packets.
sysutils/bstack-0.1 (Score: 0.0014843037)
Debug tool that shows the stack trace of a running process
bstack - gstack for FreeBSD This is a port of gstack, a script build around gdb on RedHat and other Linux distros, to FreeBSD. bstack take a PID as only parameter and print out the back trace of that running process. If the process is multithread, the backtrace of all threads is printed. It works with the last version of GDB
audio/hexter-1.0.3 (Score: 0.0014792007)
DSSI softsynth that models the sound generation of a Yamaha DX7
hexter is a software synthesizer that models the sound generation of a Yamaha DX7 synthesizer. It can easily load most DX7 patch bank files, edit those patches via a built-in editor or MIDI sys-ex messages (ALSA systems only), and recreate the sound of the DX7 with greater accuracy than any previous open-source emulation (that the author is aware of....) hexter operates as a plugin for the DSSI Soft Synth Interface. DSSI is a plugin API for software instruments (soft synths) with user interfaces, permitting them to be hosted in-process by audio applications.
devel/Data-Structure-Util-0.16 (Score: 0.0014792007)
Perl5 module to change the nature of data within a structure
Data::Structure::Util - Change nature of data within a structure Data::Structure::Util is a toolbox to manipulate the data inside a data structure. It can process an entire tree and perform the operation requested on each appropriate element. For example: It can transform all strings within a data structure to utf8 or transform any utf8 string back to the default encoding. It can remove the blessing on any reference. It can collect all the objects or detect if there is a circular reference. It is written in C for decent speed.
devel/PerlIO-via-Timeout-0.32 (Score: 0.0014792007)
PerlIO layer to add read and write timeouts to a handle
This package implements a PerlIO layer, that adds read / write timeout. This can be useful to avoid blocking while accessing a handle (file, socket, ...), and fail after some time. The timeout is implemented by using <select> on the handle before reading/writing. WARNING the handle won't timeout if you use sysread or syswrite on it, because these functions works at a lower level. However if you're trying to implement a timeout for a socket, see IO::Socket::Timeout that implements exactly that.
devel/Tree-RedBlack-0.5 (Score: 0.0014792007)
Perl implementation of Red/Black tree, a type of balanced tree
Tree::RedBlack is a perl implementation of the Red/Black tree algorithm found in the book "Algorithms", by Cormen, Leiserson & Rivest (more commonly known as "CLR" or "The White Book"). A Red/Black tree is a binary tree which remains "balanced"- that is, the longest length from root to a node is at most one more than the shortest such length. It is fairly efficient; no operation takes more than O(lg(n)) time. A Tree::RedBlack object supports the following methods: new(), root(), cmp(&), insert($, $), delete($), find($), node($), min() and max().