Main > Free Download Search >

Free qmail remote software for linux

qmail remote

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1210
Mail::QmailRemoteXS 1.2

Mail::QmailRemoteXS 1.2


Mail::QmailRemoteXS is a lightweight C-code (XS) SMTP send function based on Qmails qmail-remote. more>>
Mail::QmailRemoteXS is a lightweight C-code (XS) SMTP send function based on Qmails qmail-remote.

SYNOPSIS

use Mail::QmailRemoteXS;

$ret = Mail::QmailRemoteXS::mail($to_domain,$from_address,$to_address,$msg,$helo,$net_timeout,$net_timeoutconnect);

This module provides a single function mail that sends an email via SMTP. It uses an XS implementation of Qmails qmail-remote binary written in C so is very lightweight and fast (compared to Net::SMTP).

The difference between Mail::QmailRemote (IKEBE Tomohiro) and Mail::QmailRemoteXS is that the former requires the qmail package to be installed and simply invokes a wrapper around the qmail-remote binary for each send. This module statically links code based on qmail-remote and has no dependencies other that a working resolver.

FUNCTIONS

mail

$ret = Mail::QmailRemoteXS::mail($to_domain,$from_address,$to_address,$msg,$helo,$net_timeout,$net_timeoutconnect);

Send an email message $msg (which includes rfc822 headers) to $to_address from $from_address using $helo as the SMTP HELO greeting. $net_timeoutconnect is for the initial SMTP connection and $net_timeout is for the wait time for SMTP responses.
See Qmails qmail-remote manpage for more information and details on the return value $ret.

<<less
Download (0.25MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1040 downloads
amaroK XUL Remote 1.0

amaroK XUL Remote 1.0


AmaroK XUL Remote is an amaroK script that allows you to control amaroK from any Firefox browser on your network. more>>
AmaroK XUL Remote is an amaroK script that allows you to control amaroK from any Firefox browser on your network.
Main features:
- basic player manipulation: play, pause, stop, next, previous, seek, volume
- playlist view, plays a track when clicking on it
- collection browser with filtering, support for compilations
- drag and drop tracks, album and artists from the collection to the playlist
<<less
Download (0.038MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
544 downloads
rmRemote 0.2

rmRemote 0.2


rmRemote project lets you remote control xmms with a REALmagic Remote. more>>
rmRemote project lets you remote control xmms with a REALmagic Remote. In the future it may be used to control everything in your house if you add the functionality.

<<less
Download (0.020MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1284 downloads
File::Remote 1.17

File::Remote 1.17


File::Remote is a Perl module to read/write/edit remote files transparently. more>>
File::Remote is a Perl module to read/write/edit remote files transparently.

SYNOPSIS

#
# Two ways to use File::Remote
#
# First, the function-based style. Here, we can use the
# special :replace tag to overload Perl builtins!
#
use File::Remote qw(:replace); # special :replace tag

# read from a remote file
open(REMOTE, "host:/remote/file") or die $!;
print while (< REMOTE >);
close(REMOTE);

# writing a local file still works!
open(LOCAL, ">>/local/file");
print LOCAL "This is a new line.n";
close(LOCAL);

mkdir("host:/remote/dir", 0755);
unlink("host:/remote/file");
unlink("/local/file"); # still works too!
symlink("host:/remote/src", "host:/remote/dest");

chown("root", "other", "host:/remote/dir/file");
chmod(0600, "host:/remote/dir/file");

#
# Next, the object-oriented style, if you dont want to
# mess with the builtins.
#
use File::Remote;
my $remote = new File::Remote;

# Standard filehandles
$remote->open(FILE, ">>host:/remote/file") or die $!;
print FILE "Heres a line thats added.n";
$remote->close(FILE);

# Create a new file and change its permissions
$remote->mkdir("host:/remote/dir");
$remote->touch("host:/remote/dir/file");

# Move files around
$remote->copy("/local/file", "host:/remote/file") or warn $!;
$remote->move("host:/remote/file", "/local/file");

# Read and write whole files
my @file = $remote->readfile("host:/remote/file");
$remote->writefile("/local/file", @file);

# Backup a file with a suffix
$remote->backup("host:/remote/oldfile", "save");

# Use secure connection methods
my $secure = new File::Remote (rsh => "/usr/local/bin/ssh",
rcp => "/usr/local/bin/scp");
$secure->unlink("/local/file");
$secure->rmdir("host:/remote/dir");

This module takes care of dealing with files regardless of whether theyre local or remote. It allows you to create and edit files without having to worry about their physical location on the network. If a file passed into a function is of the form host:/path/to/file, then File::Remote uses rsh/rcp (or ssh/scp, depending on how you configure it) to edit the file remotely. Otherwise, it assumes the file is local and passes calls directly through to Perls core functions.

The nice thing about this module is that you can use it for all your file calls, since it handles both remote and local files transparently. This means you dont have to put a whole bunch of checks for remote files in your code. Plus, if you use the function-oriented interface along with the :replace tag, you can actually redefine the Perl builtin file functions. This means that your existing Perl scripts can automatically handle remote files with no re-engineering(!).

<<less
Download (0.015MB)
Added: 2007-04-27 License: Perl Artistic License Price:
911 downloads
AqMail 0.9.1 Beta

AqMail 0.9.1 Beta


AqMail fetches mails from remote mailboxes (POP3), applies admin-defined filters. more>>
AqMail fetches mails from remote mailboxes (POP3), applies admin-defined filters, and stores the email in local mailboxes for POP3 daemons to serve them.
AqMail project supports virtual mail domains and users. It has been tested with QMail as the MTA and with Spamassassin and ClamAV as filters.
Main features:
- supports virtual users and domains
- supports multiple remote boxes per user (mails can be gathered from remote boxes into local boxes)
- individual fetch intervals for every remote box of every user
- system-wide, domain-wide or per-user filtering of mail
- ordering of mail filters
- simple interface to filter scripts (basically "FILTER INFILE OUTFILE")
- POP3 client plugin with APOP or USER/PASS authentification
- maildir plugin (reads and writes maildir folders)
- tested with QMail, SpamAssassin and ClamAV
You can use AqMail to gather mails from multiple email accounts into a single account which can then be accessed via a webmail interface (e.g. OpenWebMail) or via a POP3 server (e.g. QMail).
AqMail can be used as a daemon which continuously fetches, filters and distributes mails. It can also be used in command mode (e.g. to fetch mails and store them directly to a maildir in order to just replace the tool fetchmail).
AqMail is running on my own system in combination with QMail. However, any mail transfer agent which is able to serve from maildir folders can be used.
Enhancements:
- The daemon mode has been improved since 0.9.0beta.
<<less
Download (0.40MB)
Added: 2006-04-21 License: GPL (GNU General Public License) Price:
1281 downloads
qmailmrtg7 4.2

qmailmrtg7 4.2


qmailmrtg7 utilizes qmail and tcpserver/multilogs extensive logging capabilities to create mrtg graphs. more>>
qmailmrtg7 uses qmails excellent and extensive logging via multilog, tcpserver and qmail-send. qmailmrtg7 takes the pop3 smtp and qmail transaction logs and sends them to 9 different mrtg graphs, each graph with 4 historical time series.
Main features:
- very fast - typically processes in less than 2 seconds
- Intelligently uses the multilog file name time stamp to determine which logs to open and process.
- Single small C program with no external dependances and simple command line options. See the qmail.mrtg.cfg for working examples of the options.
- Works on any system that supports qmail
<<less
Download (0.009MB)
Added: 2005-10-07 License: GPL (GNU General Public License) Price:
1477 downloads
QmailToaster 1.3.15

QmailToaster 1.3.15


QmailToaster project is an RPM-based Qmail distribution for CentOS, Fedora, SuSE, and Mandriva. more>>
QmailToaster project is an RPM-based Qmail distribution for CentOS, Fedora, SuSE, and Mandriva. This system is designed for ease of deployment and includes strong anti-spam systems. This includes support for SRS, SPF, DomainKeys, and virtual hosting on the SMTP side. On the user side, this has a Web-based administration interface and supports POP3, POP3 over SSL, IMAP, and IMAP over SSL
Main features:
- Source RPM packages ready for RPM based distributions
- SMTP with SMTP-AUTH, TLS, REMOTE-AUTH
- DomainKeys, SPF "Sender Policy Framework" and SRS "Sender Rewriting Scheme"
- Integrated SpamAssassin, ClamAV and Simscan
- Warlord virus and worm loader realtime scanning
- CHKUSER 2.0 functions for qmail-smtpd
- Qmail-Tap provides email archive capability
- Virtual Domains (MySQL), Virtual Users (MySQL)
- Autoresponder, Mailing List
- Web-based email system, Web-based administration tools
- POP3, POP3-SSL, IMAP and IMAP-SSL
Enhancements:
- CentOS 5.x support was added.
<<less
Download (MB)
Added: 2007-04-23 License: Freely Distributable Price:
925 downloads
Xmms::Remote 0.12

Xmms::Remote 0.12


Xmms::Remote is a Perl Interface to xmms_remote API. more>>
Xmms::Remote is a Perl Interface to xmms_remote API.

SYNOPSIS

use Xmms::Remote ();
my $remote = Xmms::Remote->new;
$remote->play;

This module provides a Perl interface to the xmms remote control interface. No docs yet, sorry, see test.pl and Xmms.pm for now

<<less
Download (0.18MB)
Added: 2007-04-23 License: GPL (GNU General Public License) Price:
914 downloads
Qmail Auditor 0.4

Qmail Auditor 0.4


Qmail Auditor consists of a email auditing tool. more>>
Qmail Auditor consists of a email auditing tool.
QMail Auditor provides simple a method for auditing emails. It is easy to configure and uses regular expressions as rules.
The format of audit file is :
Any e-mail (outbound or inbound) have passed at this filter.
The valids "field header"(s) :
all - field from or to of e-mails
to - field to
from - field from
In case of regular expression you read the
# man re_format
# man regex
E-mail to forward is a valid mail account to redirect.
Example of this :
from nelio@walk.* auditoria@spyware.walk.com.br
to nelio@spyware.* auditoria@spyware.walk.com.br
Enhancements:
- Now the config file name has renamed.
- From audit (in /var/qmail/control for /var/qmail/control/auditor) and qmail-queue-real-audit for qmail-queue-real-auditor.
<<less
Download (0.16MB)
Added: 2007-01-22 License: BSD License Price:
1010 downloads
mysqmail 0.3.0 R0

mysqmail 0.3.0 R0


mysqmail is a replacement for the qmail standard checkpasswd that performs authentication with a MySQL table. more>>
mysqmail is a replacement for the qmail standard checkpasswd that performs authentication with a MySQL table.
After authentication, mysqmail sets up two environment variables that it uses to perform traffic accounting.
For SMTP, it provides an alternative logger for the qmail-send program. Instead of logs, it writes the traffic to a MySQL table for the related domain.
MySQmail helps keeping all the qmail MTA login and trafic informations in a database.
This tool was written mostly to work with Domain Technologie Control (DTC). MySQMail is not mandatory for DTC, but its a way better to have it.
I needed to have qmail accounting, so I had to write couples of binaries. Fortunatly qmail is modular and its realy easy to make some add-ons. Here is what MySQmail package will add to qmail: pop will use MySQL backend for password, and both
SMTP and POP will have trafic logged into MySQL by mailbox.
Enhancements:
- This version adds support for a new score board table that allows for real-time bandwidth recording in MySQL.
<<less
Download (0.005MB)
Added: 2006-01-09 License: LGPL (GNU Lesser General Public License) Price:
1383 downloads
dirqmail 0.14

dirqmail 0.14


dirqmail is a qmail patch which adds simple and fast virtual users support based on directories. more>>
dirqmail is a qmail patch which adds simple and fast virtual users support based on directories.
dirqmail puts users in /var/qmail/mail/< domain >/< login > directories, so for instance if /var/qmail/mail/example.org/example directory exists, qmail will treat example.org as a local domain, will accept mail for it via SMTP and QMTP daemons and will deliver mail to example@example.org as alias user using /var/qmail/mail/example.org/example as the home directory.
Main features:
- simple - you can just "see" and administer your domains and users from the command line or any file manager
- fast - checking for user of domain existence is just stating the correct directory
- atomic - all changes do not need any restarts/etc - everything just work in the "real-time"
- simple and fast aliases - just use symbolic links!
- works out of the box - just create /var/qmail/mail/domain.org/user to create user@domain.org user - permissions, ownership and Maildir creation will be handled automatically
- does not remove any of qmail features - dirqmail can coexist with any existent qmail installation - for example you can have some domains and users handled by system users (using /etc/passwd), some by qmail-users (/var/qmail/users), some by vpopmail and some by dirqmail (/var/qmail/mail)
- includes patch for checkpassword with support for POP3 (PASS and APOP) and SMTP (LOGIN, PLAIN, CRAM-MD5) - both for Krzysztof Dabrowskis and Erwin Hoffmanns SMTP AUTH patches
<<less
Download (0.023MB)
Added: 2005-11-07 License: GPL (GNU General Public License) Price:
1448 downloads
Mail::Toaster 5.01

Mail::Toaster 5.01


Mail::Toaster is an installer for a collection of software which provides a full-featured mail server. more>>
Mail::Toaster is an installer for a collection of software which provides a full-featured mail server. The system is built around the qmail mail transport agent, with many additions and modifications
Main features:
- SMTP Mail Server (SMTP-AUTH, chk-user, SPF, TLS, tarpitting, RBL)
- Virtual Domain Hosting w/delegated administration
- Virtual Domain Users
- Mailing List (Ezmlm)
- AutoResponder
- Web Based E-Mail (Sqwebmail, Squirrelmail, V-Webmail)
- Web Based Domain Administration
- Mail Filtering (rbls, SpamAssassin, simscan, Qmail-Scanner)
- Virus Scanning (ClamAV, F-Prot, Uvscan)
- SMTP roaming via SMTP-AUTH, POP-AUTH, & IMAP-AUTH
- SMTP roaming via SMTP-submission (port 587)
- POP3, POP3-SSL
- IMAP, IMAP-SSL (Courier IMAP)
- CGI frontend to mail features
- Log processing and pretty graphs (via RRDutil)
- Auto-Installs of MySQL, Apache, phpMyAdmin, and more
- Centralized configuration files
- Support for clusters of qmail servers
- Builds SSL certs for Apache, Qmail, & Courier
Security - Mail::Toaster supports secure connections from the email client (via POP3, IMAP, SMTP, and webmail) to the server. If the remote (destination) email server supports it, we also encrypt the email as it travels across the public Intenet from server to server. Thus, if you happen to be using two Mail::Toasters and your email clients are configured to use SSL, you have a fully encrypted path from the email sender to the final recipient.
State of the Art Filtering - Mail::Toaster has sophisticated filtering capabilities built right in. A default installation blocks all viruses and will detect 85% of the spam. With a little bit of training, its reasonable to expect and achieve 99% spam filtering accuracy.
Flexibility - Mail::Toaster provides an extremely flexible framework to allow you to build your email system your way. This flexibility makes it easy to migrate existing systems to Mail::Toaster and also allows Mail::Toaster to work in diverse environments and OS platforms.
Support - There is a thriving and active support community available on the mailing list. The web forums are also frequented by quite a few helpful folks. If you need more support than folks are willing to provide, commercial support is available.
Enhancements:
- Primarily code quality improvements.
- Rewrites of major portions of the code using techniques described in Perl Best Practices.
- Many more tests, much better tests, and more error testing within the functions.
- A new Webmail interface.
- Its not terribly "pretty" yet, but is much more user friendly and functional.
<<less
Download (0.61MB)
Added: 2006-09-29 License: BSD License Price:
1120 downloads
qmail-spp 0.42

qmail-spp 0.42


qmail-spp provides plug-in support for the qmail SMTP daemon. more>>
qmail-spp adds plugin support to qmails SMTP daemon (qmail-smtpd). qmail-spp is written entirely in C using native qmail libraries, so it does not create any dependencies.
qmail-spp has been written because currently there is no common way of enhancing qmail-smtpds functionality apart of patches which usually are not compatible one with other and require recompilation.
In addition, qmail-spp gives you possibility of enhancing your mail server in any language, so you can easily integrate it with anything you want.
Plugins are external programs which are executed after processing SMTP command, but just before accepting it by qmail; this lets you to add extra checks on commands arguments before accepting it; for instance you can check envelope recipient address against your "black list".
Plugins can be written in any language, because they are independent programs. They:
- should not read anything from standard input,
- should not exit with error code 120,
- should print all errors to standard error (they are logged),
- can print commands on standard output.
<<less
Download (0.018MB)
Added: 2006-04-07 License: GPL (GNU General Public License) Price:
1296 downloads
vdr_remote 0.4

vdr_remote 0.4


vdr_remote is a graphical remote control for the video disk recorder vdr more>>
vdr_remote is a graphical remote control for the video disk recorder vdr. vdr_remote connects over a TCP/IP network and gives you a complete remote control.

<<less
Download (1.1MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1081 downloads
Kxremote 0.0.2

Kxremote 0.0.2


Kxremote is an application to integrate protocols of remote connection made with perlqt. more>>
Kxremote is an application to integrate protocols of remote connection made with perlqt.
Supports:
- xdmcp
- vnc
- rdp
<<less
Download (0.007MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1108 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5