Main > Free Download Search >

Free net server mail esmtp xforward software for linux

net server mail esmtp xforward

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5456
Net::Server::Mail::ESMTP::XFORWARD 0.15

Net::Server::Mail::ESMTP::XFORWARD 0.15


Net::Server::Mail::ESMTP::XFORWARD is a Perl module to add support to the XFORWARD command in Net::Server::Mail::ESMTP. more>>
Net::Server::Mail::ESMTP::XFORWARD is a Perl module to add support to the XFORWARD command in Net::Server::Mail::ESMTP.

SYNOPSIS

use Net::Server::Mail::ESMTP;

my @local_domains = qw(example.com example.org);
my $server = new IO::Socket::INET Listen => 1, LocalPort => 25;

my $conn;
while($conn = $server->accept)
{
my $esmtp = new Net::Server::Mail::ESMTP socket => $conn;
# activate some extensions
$esmtp->register(Net::Server::Mail::ESMTP::XFORWARD);
# adding some handlers
$esmtp->set_callback(RCPT => &validate_recipient);
$esmtp->process();
$conn->close()
}

sub validate_recipient
{
my($session, $recipient) = @_;

my $domain;
if($recipient =~ /@(.*)>s*$/)
{
$domain = $1;
}

if(not defined $domain)
{
return(0, 513, Syntax error.);
}
elsif(not(grep $domain eq $_, @local_domains) && $session->get_forwarded_addr != "10.1.1.1")
{
return(0, 554, "$recipient: Recipient address rejected: Relay access denied");
}

return(1);
}

When using a Net::Server::Mail::ESMTP script inside a MTA and not in front of Internet, values like client IP address are not accessible to the script and when the script returns mail to an other instance of smtpd daemon, it logs "localhost" as incoming address. To solve this problem, some administrators use the XFORWARD command. This module gives the ability to read and store XFORWARD informations.

<<less
Download (0.015MB)
Added: 2007-04-19 License: Perl Artistic License Price:
918 downloads
Net::Server 0.93

Net::Server 0.93


Net::Server is an extensible, general Perl server engine. more>>
Net::Server is an extensible, general Perl server engine.
SYNOPSIS
#!/usr/bin/perl -w -T
package MyPackage;
use Net::Server;
@ISA = qw(Net::Server);
sub process_request {
#...code...
}
MyPackage->run(port => 160);
exit;
Main features:
- Single Server Mode
- Inetd Server Mode
- Preforking Simple Mode (PreForkSimple)
- Preforking Managed Mode (PreFork)
- Forking Mode
- Multiplexing Mode using a single process
- Multi port accepts on Single, Preforking, and Forking modes
- Simultaneous accept/recv on tcp, udp, and unix sockets
- Safe signal handling in Fork/PreFork avoids perl signal trouble
- User customizable hooks
- Chroot ability after bind
- Change of user and group after bind
- Basic allow/deny access control
- Customized logging (choose Syslog, log_file, or STDERR)
- HUP able server (clean restarts via sig HUP)
- Dequeue ability in all Fork and PreFork modes.
- Taint clean
- Written in Perl
- Protection against buffer overflow
- Clean process flow
- Extensibility
Net::Server is an extensible, generic Perl server engine. Net::Server combines the good properties from Net::Daemon (0.34), NetServer::Generic (1.03), and Net::FTPServer (1.0), and also from various concepts in the Apache Webserver.
Net::Server attempts to be a generic server as in Net::Daemon and NetServer::Generic. It includes with it the ability to run as an inetd process (Net::Server::INET), a single connection server (Net::Server or Net::Server::Single), a forking server (Net::Server::Fork), a preforking server which maintains a constant number of preforked children (Net::Server::PreForkSimple), or as a managed preforking server which maintains the number of children based on server load (Net::Server::PreFork). In all but the inetd type, the server provides the ability to connect to one or to multiple server ports.
Net::Server uses ideologies of Net::FTPServer in order to provide extensibility. The additional server types are made possible via "personalities" or sub classes of the Net::Server. By moving the multiple types of servers out of the main Net::Server class, the Net::Server concept is easily extended to other types (in the near future, we would like to add a "Thread" personality).
Net::Server borrows several concepts from the Apache Webserver. Net::Server uses "hooks" to allow custom servers such as SMTP, HTTP, POP3, etc. to be layered over the base Net::Server class. In addition the Net::Server::PreFork class borrows concepts of min_start_servers, max_servers, and min_waiting servers.
Net::Server::PreFork also uses the concept of an flock serialized accept when accepting on multiple ports (PreFork can choose between flock, IPC::Semaphore, and pipe to control serialization).
<<less
Download (0.080MB)
Added: 2006-06-27 License: Perl Artistic License Price:
1219 downloads
Net::Server::POP3proxy 0.1

Net::Server::POP3proxy 0.1


Net::Server::POP3proxy is a Perl module with POP3 Proxy class for working with virus scanners and anti-spam software. more>>
Net::Server::POP3proxy is a Perl module with POP3 Proxy class for working with virus scanners and anti-spam software.

SYNOPSIS

use Net::Server::POP3proxy;

# Constructors
$popproxy = new Net::Server::POP3proxy(
Action => sub { filterAction ($_[0]); },
Error => sub { die ($_[0]); },
Debug => sub { print STDERR ($_[0]); }
) or die ("Cannot init POP3 proxy server");

while ($popproxy->looper()) {
# noop
}

This module implements a POP3 proxy server to enable you to call user defined actions uppon fetching a mail from the POP3 Server.

The destination server is taken from the username, the client connects to the pop3 proxy in the way remoteuser%remote.host:port.

Multiple clients can connect to the POP proxy at a time.

<<less
Download (0.007MB)
Added: 2007-01-10 License: Perl Artistic License Price:
1022 downloads
DeniX Server OS 0.3

DeniX Server OS 0.3


DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. more>>
DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. They aim to offer a user-friendly full-featured server operating system, pre-configured, well structured and easy to work with, and filled with the latest stable versions of Linux apps.
Its easy to install and configure. Every package is downloaded from the authors source and compiled when installed.
Main features:
- Domain Controller
- ADSL/CABLE Router (PPPoE)
- Network Firewall
- Anti Virus Gateway
- Anti Spam Gateway
- Mail Server (local & external) + Web Mail
- Calendar Sharing Support
- Network File Server
- DHCP Server
- TFTP BOOT Server
- WINS Server
- FTP Server
- VPN Server
- DNS Server
- DDNS Server
- MySQL Server
- HTTP Apache Server
- Remote Backup Solutions
- Remote control and administration
- Print Queue Server
- Proxy Server
<<less
Download (MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1275 downloads
AXIGEN Mail Server StartUp Edition 5.0.1

AXIGEN Mail Server StartUp Edition 5.0.1


AXIGEN FREE mail server - (E)SMTP, POP3, IMAP4, Webmail server and support more>> AXIGEN Office Edition is a FREE, reliable and secure Linux and FreeBSD mail server intended for home users and small companies. AXIGEN Mail Server, offering integrated mail services and basic support, can successfully replace several open source applications.
This is a full-featured version, available free of charge, part of a time-limited promotional offer. This type of license offered is perpetual and you will get to keep it even if this promotion expires.
AXIGEN is available for many Linux distributions (Gentoo, Redhat/Fedora Core, Slackware, Debian, Ubuntu, Mandrake/Mandriva, SUSE), for BSD platforms and for Solaris.
Main AXIGEN services:
1. Mail transfer is ensured by SMTP / ESMTP modules, which include a powerful Mail Processing engine with an API (Application Programming Interface) for custom filtering.
2. Message retrieval is performed through IMAP4 or POP3 protocols with special tools for connectivity control and host authentication management.
3. The Webmail module provides improved security and efficiency and allows users anywhere on the Internet to access and send mails from their Web browsers.
All services are controlled from centralized WEB / CLI Administration, enabling full control of the email traffic.
AXIGEN Mail Server Specifications:
Mail Services
- SMTP/ESMTP, POP3, IMAP4 and Webmail
- SSL/TLS encryption
Connectivity and architecture:
- Multithreaded engine with module thread control
- Simultaneous resource access
- Mail storage with index based access
- In depth connection control
- WebMail available in 21 languages
- Firewall-like communication rules
- User authentication: plain, login, CRAM MD5
Server Security
- Multilevel filtering system
- Integration with 16 Antivirus and AntiSPAM applications
- Script interface for external custom filters
Download your copy now!
<<less
Download (18.52MB)
Added: 2009-04-09 License: Freeware Price: Free
197 downloads
 
Other version of AXIGEN Mail Server StartUp Edition
AXIGEN Mail Server StartUp Edition 1.2.2AXIGEN FREE mail server - (E)SMTP, POP3, IMAP4, Webmail server and support. AXIGEN Mail Server ... AXIGEN Mail Server Specifications: Mail Services - SMTP/ESMTP, POP3, IMAP4 and Webmail - SSL
License:Freeware
Download (10800K)
192 downloads
Added: 2009-04-15
AXIGEN Mail Server StartUp Edition 1.2.0bSMTP / ESMTP modules, which include a powerful Mail Processing engine with an API (Application ... AXIGEN Mail Server Specifications: Mail Services - SMTP/ESMTP, POP3, IMAP4 and Webmail - SSL
License:Freeware
Download (6.5MB)
1270 downloads
Added: 2006-05-03
Apache HTTP Server for Linux 2.0.52

Apache HTTP Server for Linux 2.0.52


Generation 2.x of the most popular HTTP server on the net. more>>
The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
Apache has been the most popular web server on the Internet since April of 1996. The May 2003 Netcraft Web Server Survey found that 62% of the web sites on the Internet are using Apache, thus making it more widely used than all other web servers combined.
The Apache HTTP Server is a project of the Apache Software Foundation.
<<less
Download (6.6MB)
Added: 2009-04-01 License: Freeware Price:
219 downloads
 
Other version of Apache HTTP Server for Linux
Apache HTTP Server for Linux 1.3.37The most popular HTTP server on the net. Apache HTTP Server ... , thus making it more widely used than all other web servers combined. The Apache HTTP Server is a
Price: FREE
License:Freeware
Download (2.3MB)
10 downloads
Added: 2004-11-26
Apache HTTP Server for Linux 1.3.33The most popular HTTP server on the net. Apache HTTP Server ...The Apache HTTP Server Project is an effort to develop and maintain
License:Freeware
Download (2.35MB)
213 downloads
Added: 2009-04-03
Net::DAAP::Server::AAC 0.01

Net::DAAP::Server::AAC 0.01


Net::DAAP::Server::AAC is a DAAP server that handles MP3 and AAC. more>>
Net::DAAP::Server::AAC is a DAAP server that handles MP3 and AAC.

SYNOPSIS

use POE;
use Net::DAAP::Server::AAC;

# same as Net::DAAP::Server
my $server = Net::DAAP::Server::AAC->new(
path => "/home/miyagawa/music",
port => 9999,
name => "My Music",
);
$poe_kernel->run;

Net::DAAP::Server::AAC is a Net::DAAP::Servers subclass that handles MP4/AAC files as well, in addition to the MP3 music files.

<<less
Download (0.003MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1080 downloads
Nexedi Desktop Linux Server 10.0 RC1

Nexedi Desktop Linux Server 10.0 RC1


Nexedi Desktop Linux Server (DLS) is a LiveCD which instantly provides 500+ Linux Desktop applications to all PCs in a LAN. more>>
Nexedi Desktop Linux Server (DLS) is a LiveCD which instantly provides 500+ Linux Desktop applications to all PCs in a Local Area Network (LAN).

It is compatible with Windows, MacOS, Unix or GNU/Linux environments as well as with eBox thin clients. Nexedi DLS also includes a complete network infrastructure solution (file server, mail server, collaboration server, directory service, etc.) based on modern protocols (ex. LDAP, Samba 3, IMAP, etc.).

Nexedi DLS Live CD allows small and medium size organisations to implement a high end Linux desktop and network infrastructure solution in one minute.

Nexedi DLS is a LiveCD: it requires no installation. Simply insert the LiveCD in any PC, turn on the PC and choose the boot from CD option.

After about one minute, a complete Mandrakelinux server is ready to serve thin clients and provide file sharing, directory, messaging and collaboration services to your entire network. Enter your network information through a simple web based interface.

You can now access all Nexedi Desktop Linux Server features from any other PC in the same local network.

Nexedi DLS LiveCD can be used from any standard PC based on x86 architecture (Pentium, Athlon, Opteron, etc.). 512 MB RAM is recommended to serve a few users. 1024 MB and a fast CPU (Pentium IV, Pentium M, Athlon, Opteron, etc.) is recommended to server 10 simultaneous users.

Applications:

Nexedi DLS applications are multiple. Some applications are based on DLS acting as a complement to existing infrastructure. Other applications are based on DLS acting as a replacement to existing infrastructure.

* Office and Productivity:many Mandrakelinux applications can be very useful as a complement to existing Windows or Macintosh environments. Installing a single DLS server allows in a network allows everyone to access those applications without requiring any complex software installation or setup.
* Internet Security:by placing a DLS server in the DMZ of an organisation, it is possible to protect all PCs in a local network from viruses or spyware. Internet applications are launched on the DLS server and accessed by users through tightVNC from Windows or Macintosh PCs. Internet attacks might compromise the DLS server but will not be able to access sensitive data on users PCs. This architecture is similar to having two physical networks, one for internal uses, one for internet access, but at a much lower cost.
* Software Development Box:a single DLS server can be used as a shared multi-platform software development by Windows or Macintosh users. Mandrakelinux includes many advanced integrated development environments (IDE) which can be used to produce GUI, Web or embedded applications.
* Network Administration Box:a single DLS server can be used as a shared network administration environment. Mandrakelinux includes many advanced and free network administration tools.
* Thin Client Server:Nexedi DLS is a multi-protocol thin client server and gateway. A typical DLS server can handle 10 simultaneous sessions. Thin clients can use the VNC, tightVNC or XDMCP protocols to access a complete desktop session. Any DLS session can access other thin client protocols (RDP, X11, NX, etc.). Nexedi DLS also includes various emulators and virtualizers which allow to run Windows and Macintosh applications directly.
<<less
Download (678MB)
Added: 2005-09-01 License: GPL (GNU General Public License) Price:
852 downloads
Net::DNS::Sendmail 0.1

Net::DNS::Sendmail 0.1


Net::DNS::Sendmail is a Simple Mail Transfer Mail Client with MX lookup. more>>
Net::DNS::Sendmail is a Simple Mail Transfer Mail Client with MX lookup. Which will basically act as a primitive sendmail MTA.

SYNOPSIS

use Net::DNS::Sendmail;

# Constructors
$smtp = Net::DNS::Sendmail->new();
$smtp->to("john@gmail.com, mary@yahoo.com, goliath@hotmail.com");
$smtp->from("srikanth@cpan.org");
$smtp->subject("This is the subject line.");
$smtp->data("This allows for sending single or multiple emailsn " .
directly to sendmail servers.");
$smtp->data(" This program runs directly on the public domain just like");
$smtp->data(" sendmail.");
$smtp->sendmail();

This module implements a client interface to the SMTP and EMSMTP ( as mentioned in RFC821 and RFC2821) servers which allow you to use it as a SMTP/ESMTP client. This module connects directly to Yahoo/Hotmail/Gmail servers and delivers the mail without the need for intermediate Mail Transfer Agents(MTA) like sendmail(sendmail.org).

A new Net::DNS::Sendmail object must be created with the new method. Once this has been done then the to, from, subject and data sections of an email are created with the following methods using the object.

<<less
Download (0.005MB)
Added: 2006-12-21 License: Perl Artistic License Price:
1039 downloads
OfficeSpot.Net Collaboration Server Preview 2

OfficeSpot.Net Collaboration Server Preview 2


OfficeSpot.Net Collaboration Server project contains all packages needed to get eGroupWare running easily. more>>
OfficeSpot.Net CS contains following packages: - eGroupWare - OpenLDAP - DBMail - ClamAV - APC - Memcache - MySQL
Enhancements:
- This release contains updated versions of eGroupWare (1.4), DBMail (latest stable SVN revision), and ClamAV (0.90.3).
- The installation process was streamlined and the online documentation was updated.
<<less
Download (183.5MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
857 downloads
No-relay SMTP daemon T.00.02

No-relay SMTP daemon T.00.02


No-relay SMTP daemon is a lightweight mail server whose sole purpose is to receive incoming messages. more>>
No-relay SMTP daemon is a lightweight mail server whose sole purpose is to receive incoming messages and deliver them to local users. Its main "feature" (or non-feature, really) is to be completely unable to relay messages to adjacent servers: if an incoming message is not addressed to a local mailbox, smtpd will reject it.

Another convenient feature is its automatic grey-listing of clients that allows you to efficiently reject spammers based on their behaviour. No-relay SMTP daemon can handle incoming email traffic for an unlimited number of domains (i.e. act as a MX for these domains) without the need for any configuration (other than creation of users mailboxes).
<<less
Download (0.018MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
633 downloads
Twisted Mail 0.3.0

Twisted Mail 0.3.0


Twisted Mail provides client and server implementations of SMTP, POP3, and IMAP4. more>>
Twisted Mail project provides client and server implementations of SMTP, POP3, and IMAP4.
These differentiate themselves from the Python standard library implementations both by presenting a much higher-level, easy-to-use interface and in their server components, which allow the implementation of custom servers for each protocol without dealing with protocol-level issues.
Twisted Mail includes a simple demonstration email server which accepts messages over SMTP, stores them in a Maildir arrangement, and can serve them to clients over POP3.
Enhancements:
- The IMAP4 client now properly quotes usernames and passwords when necessary.
- It also handles unsolicited FLAGS responses.
- The IMAP4 server can now parse multiple literals in a single command and to FETCH requests with multiple BODY parts.
- A bug where Deferreds returned from IMAP4 client methods would not receive connection lost notification has been fixed.
- Startup time on OS X has been improved.
- The SMTP server has been sped up.
- The POP3 mailbox API has been expanded to allow Deferreds to be returned in some cases.
<<less
Download (0.10MB)
Added: 2006-05-28 License: MIT/X Consortium License Price:
1245 downloads
AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta

AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta


AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta is an ideal software which can help you render email messaging quick and easy! more>> <<less
Added: 2009-07-22 License: Freeware Price: FREE
1 downloads
 
Other version of AXIGEN Mail Server Office Edition Free
AXIGEN Mail Server Office Edition Free 7.1Gecad Technologies - AXIGEN Office Edition is a FREE, reliable and secure ... AXIGEN Mail Server Office
Price: $0.00
License:Freeware
Download (26.38MB)
189 downloads
Added: 2009-04-23
Price: $0.00
License:Freeware
Download (26.32MB)
179 downloads
Added: 2009-04-28
AXIGEN Mail Server Office Edition Free 6.2.2Gecad Technologies - FREE, reliable and secure mail server for Linux, BSD, Solaris. It offers (E)SMTP, POP3, IMAP4 ... AXIGEN Mail Server Office
Price: $0.00
License:Freeware
Download (16.07MB)
192 downloads
Added: 2009-04-14
AXIGEN Mail Server Office Edition Free 6.1.0GECAD TECHNOLOGIES - AXIGEN Mail Server Office ... SMTP/ESMTP modules, which include a powerful Mail Processing engine with an API (Application
License:Freeware
Download (16.07MB)
182 downloads
Added: 2009-04-26
AXIGEN Mail Server Office Edition Free 5.0.2secure Linux and FreeBSD mail server intended for ... AXIGEN Mail Server Specifications: Mail Services - SMTP/ESMTP, POP3, IMAP4 and Webmail - SSL
License:Freeware
Download (11.51MB)
204 downloads
Added: 2009-04-02
AXIGEN Mail Server Office Edition Free 4.0.1(E)SMTP, POP3, IMAP4, Webmail server and support. AXIGEN Mail Server Specifications: Mail Services: - SMTP/ESMTP, POP3, IMAP4 and Webmail
License:Freeware
Download (MB)
836 downloads
Added: 2007-07-23
Net::CyanChat::Server 0.04

Net::CyanChat::Server 0.04


Net::CyanChat::Server is a Perl interface for running a CyanChat server. more>>
Net::CyanChat::Server is a Perl interface for running a CyanChat server.

SYNOPSIS

use Net::CyanChat::Server;

our $cho = new Net::CyanChat::Server (
host => localhost,
port => 1812,
debug => 1,
);

# Start the server.
$cho->connect();

# Loop.
$cho->start();

Net::CyanChat::Server is a Perl interface for running your own CyanChat server (or, rather, to run a chat server based on the CyanChat protocol that other CC clients would recognize).

<<less
Download (0.020MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
SurgeMail 37b8

SurgeMail 37b8


SurgeMail is the fastest, most robust and secure, full-featured email server on the market today supporting all the protocols an more>>
SurgeMail is the fastest, most robust and secure, full-featured email server on the market today supporting all the protocols and standards. Surgewall works with every mail server and can be installed in minutes, instantly gives you the uniquely advanced, Spam Blocking, Virus Scanning and even user configurable filtering and friends modes normally only found in our SurgeMail product.
Main features:
- User existence is checked at rcpt stage to prevent major spam problems
- Spam and virus free email
- Friends mail screening system.
- Integrated mail server and web based email
- Web based administration (user, domain and server)
- Full SSL secure support for all protocols
- Runs on platform of choice (Windows, most Unix versions)
- Installs in minutes and unparalleled after sales service
<<less
Download (10.7MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1649 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5