smtp
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 321
BixData 2.7
BixData is a system monitoring tool that sends email notifications. more>>
BixData is a system monitoring tool. BixData monitors services (HTTP, ping, POP3, SMTP), performance, and processes. You can create critical notifications and get email alerts for HTTP, ping, CPU, memory, and even SMART diagnostics.
A graphical console for Linux and Windows supports real-time dynamic graphs. The runtime clients and server component are lightweight and easy to set up, and run on Linux and Windows.
Main features:
- Supports Linux and Windows
- Server monitoring, Email Notifications
- HTTP, ping, POP3, SMTP
- CPU Load
- Memory Usage
- Disk Performance
- SMART Hard Disk Drive Information
- Network Statistics
- Process Statistics
- Windows Performance Counters
- Real-Time Graphs
- System Information
- Configure Startup Services
- WMI
- Low Bandwith Usage
- Secure
Enhancements:
- This release adds MySQL database monitoring.
- It also supports adding your own custom scripts for monitoring and creating new reporting templates.
- There are minor desktop UI improvements.
- Important fixes and enhancements are included to improve stability in Agent and Server on Linux, Mac OS X, FreeBSD, and Windows.
<<lessA graphical console for Linux and Windows supports real-time dynamic graphs. The runtime clients and server component are lightweight and easy to set up, and run on Linux and Windows.
Main features:
- Supports Linux and Windows
- Server monitoring, Email Notifications
- HTTP, ping, POP3, SMTP
- CPU Load
- Memory Usage
- Disk Performance
- SMART Hard Disk Drive Information
- Network Statistics
- Process Statistics
- Windows Performance Counters
- Real-Time Graphs
- System Information
- Configure Startup Services
- WMI
- Low Bandwith Usage
- Secure
Enhancements:
- This release adds MySQL database monitoring.
- It also supports adding your own custom scripts for monitoring and creating new reporting templates.
- There are minor desktop UI improvements.
- Important fixes and enhancements are included to improve stability in Agent and Server on Linux, Mac OS X, FreeBSD, and Windows.
Download (3.9MB)
Added: 2007-01-10 License: Free To Use But Restricted Price:
1098 downloads
lib smtp 0.8.5
libsmtp allows programs to send mail directly through SMTP (no sendmail needed). more>>
libsmtp allows programs to send mail directly through SMTP (no sendmail needed). lib smtp is designed to be simple and memory efficient, and has slightly untested support for MIME multipart body parts.
<<less Download (0.073MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1218 downloads
smtp2mix 0.1 (mixminion-smtp)
smtp2mix are two small mail proxies that relay incoming email to an anonymous remailer network. more>>
smtp2mix are two small mail proxies that relay incoming email to an anonymous remailer network.
The project allows the use of your preferred email client to send email anonymously via the mixmaster or mixminion network.
<<lessThe project allows the use of your preferred email client to send email anonymously via the mixmaster or mixminion network.
Download (0.010MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
929 downloads
DGS SMTP 0.9.1
DGS SMTP is a PHP class which acts as an email client, able to send an email without using PHPs built in mail() function. more>>
DGS SMTP is a PHP class which acts as an email client, able to send an email without using PHPs built in mail() function.
This is most often useful for sites that are unable to get PHPs build in mail() function to work. (Usually because they dont have access to sites php.ini file).
<<lessThis is most often useful for sites that are unable to get PHPs build in mail() function to work. (Usually because they dont have access to sites php.ini file).
Download (0.014MB)
Added: 2006-05-04 License: GPL (GNU General Public License) Price:
1268 downloads
smtp-vilter 1.3.4
smtp-vilter is a high-performance content filter for sendmail, which detects email viruses and spam. more>>
smtp-vilter is a high-performance content filter for sendmail, which detects email viruses and spam.
smtp-vilter can pass, discard, or simply mark an email based on the results of a content scan. It relies on third-party products for the actual content scan. It uses the milter API to communicate with sendmail, and backends to communicate with the actual scanning engines.
The backends can be chained to perform a series of checks on each message in one run.
<<lesssmtp-vilter can pass, discard, or simply mark an email based on the results of a content scan. It relies on third-party products for the actual content scan. It uses the milter API to communicate with sendmail, and backends to communicate with the actual scanning engines.
The backends can be chained to perform a series of checks on each message in one run.
Download (0.065MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1090 downloads
Net::SMTP::TLS 0.12
Net::SMTP::TLS is an SMTP client supporting TLS and AUTH. more>>
Net::SMTP::TLS is an SMTP client supporting TLS and AUTH.
SYNOPSIS
use Net::SMTP::TLS;
my $mailer = new Net::SMTP::TLS(
your.mail.host,
Hello => some.host.name,
Port => 25, #redundant
User => emailguy,
Password=> s3cr3t);
$mailer->mail(emailguy@your.mail.host);
$mailer->to(someonecool@somewhere.else);
$mailer->data;
$mailer->datasend("Sent thru TLS!");
$mailer->dataend;
$mailer->quit;
Net::SMTP::TLS is a TLS and AUTH capable SMTP client which offers an interface that users will find familiar from Net::SMTP. Net::SMTP::TLS implements a subset of the methods provided by that module, but certainly not (yet) a complete mirror image of that API.
The methods supported by Net::SMTP::TLS are used in the above example. Though self explanatory for the most part, please see the perldoc for Net::SMTP if you are unclear.
The differences in the methods provided are as follows:
The mail method does not take the options list taken by Net::SMTP
The to method also does not take options, and is the only method available to set the recipient (unlike the many synonyms provided by Net::SMTP).
The constructor takes a limited number of Net::SMTPs parameters. The constructor for Net::SMTP::TLS takes the following (in addition to the hostname of the mail server, which must be the first parameter and is not explicitly named):
NoTLS - In the unlikely event that you need to use this class to perform non-TLS SMTP (you ought to be using Net::SMTP itself for that...), this will turn off TLS when supplied with a true value. This will most often cause an error related to authentication when used on a server that requires TLS
Hello - hostname used in the EHLO command
Port - port to connect to the SMTP service (defaults to 25)
Timeout - Timeout for inital socket connection (defaults to 5, passed directly to IO::Socket::INET)
User - username for SMTP AUTH
Password - password for SMTP AUTH
<<lessSYNOPSIS
use Net::SMTP::TLS;
my $mailer = new Net::SMTP::TLS(
your.mail.host,
Hello => some.host.name,
Port => 25, #redundant
User => emailguy,
Password=> s3cr3t);
$mailer->mail(emailguy@your.mail.host);
$mailer->to(someonecool@somewhere.else);
$mailer->data;
$mailer->datasend("Sent thru TLS!");
$mailer->dataend;
$mailer->quit;
Net::SMTP::TLS is a TLS and AUTH capable SMTP client which offers an interface that users will find familiar from Net::SMTP. Net::SMTP::TLS implements a subset of the methods provided by that module, but certainly not (yet) a complete mirror image of that API.
The methods supported by Net::SMTP::TLS are used in the above example. Though self explanatory for the most part, please see the perldoc for Net::SMTP if you are unclear.
The differences in the methods provided are as follows:
The mail method does not take the options list taken by Net::SMTP
The to method also does not take options, and is the only method available to set the recipient (unlike the many synonyms provided by Net::SMTP).
The constructor takes a limited number of Net::SMTPs parameters. The constructor for Net::SMTP::TLS takes the following (in addition to the hostname of the mail server, which must be the first parameter and is not explicitly named):
NoTLS - In the unlikely event that you need to use this class to perform non-TLS SMTP (you ought to be using Net::SMTP itself for that...), this will turn off TLS when supplied with a true value. This will most often cause an error related to authentication when used on a server that requires TLS
Hello - hostname used in the EHLO command
Port - port to connect to the SMTP service (defaults to 25)
Timeout - Timeout for inital socket connection (defaults to 5, passed directly to IO::Socket::INET)
User - username for SMTP AUTH
Password - password for SMTP AUTH
Download (0.006MB)
Added: 2007-04-19 License: Perl Artistic License Price:
934 downloads
No Brainer SMTP 1.0
No Brainer SMTPNo Brainer SMTP provides a config-free simple SMTP sender. more>>
No Brainer SMTPNo Brainer SMTP provides a config-free simple SMTP sender.
No Brainer SMTP (nbSMTP) is a simple SMTP client suitable to run in chroot jails, in embedded systems, laptops, or workstations.
No Brainer SMTP major features:
- Fix some error handling problems.
- Added smtp_last_message() to improve verbosity in case of errors.
- Uses strtok if strsep is not found.
- Added OSX module, refer to README.OSX in tarball.
- Fix memory leaks when using a combination of rc files and command line options.
- Respond to nbsmtp --help nbsmtp -h and nbsmtp --version with the expected behavior.
- Improve sending big mails or mails with attachments.
Main features:
- SSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue supportSSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue support
<<lessNo Brainer SMTP (nbSMTP) is a simple SMTP client suitable to run in chroot jails, in embedded systems, laptops, or workstations.
No Brainer SMTP major features:
- Fix some error handling problems.
- Added smtp_last_message() to improve verbosity in case of errors.
- Uses strtok if strsep is not found.
- Added OSX module, refer to README.OSX in tarball.
- Fix memory leaks when using a combination of rc files and command line options.
- Respond to nbsmtp --help nbsmtp -h and nbsmtp --version with the expected behavior.
- Improve sending big mails or mails with attachments.
Main features:
- SSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue supportSSL/TLS and STARTTLS support
- SYSLOG logging support (using LOG_MAIL facility)
- SASL (LOGIN, PLAIN and CRAMMD5) support
- IPv6 support
- Configuration file support
- Sendmail compatibility
- Queue support
Download (0.10MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
975 downloads
Postfix SMTP Monitoring Solution
Postfix SMTP Monitoring Solution is a set of three Perl CGI scripts used to monitor the SMTP queue. more>>
Postfix SMTP Monitoring Solution is a set of three Perl CGI scripts used to monitor the SMTP queue, allowing the deletion of messages that for one reason or another become "stuck" in the queue.
I needed a web-based solution to monitor my Postfix SMTP relay, which enabled me to remove messages that become "stuck" in the queue. I wrote three simple Perl scripts, and used Sudo to give me the desired functionality.
I am uploading these scripts in case they are useful to others. Assuming you have Apache configured correctly on your Postfix server, it should be as easy as placing the three .cgi files into your webservers cgi-bin directory, and making the appropriate modifications to your /etc/sudoers file (see the README contained in the tarball).
<<lessI needed a web-based solution to monitor my Postfix SMTP relay, which enabled me to remove messages that become "stuck" in the queue. I wrote three simple Perl scripts, and used Sudo to give me the desired functionality.
I am uploading these scripts in case they are useful to others. Assuming you have Apache configured correctly on your Postfix server, it should be as easy as placing the three .cgi files into your webservers cgi-bin directory, and making the appropriate modifications to your /etc/sudoers file (see the README contained in the tarball).
Download (0.002MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
972 downloads
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).
<<lessAnother 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).
Download (0.018MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
633 downloads
POE::Component::Client::SMTP 0.14
POE::Component::Client::SMTP is a Perl module for asynchronous mail sending with POE. more>>
POE::Component::Client::SMTP is a Perl module for asynchronous mail sending with POE. Thus your program isnt blocking while busy talking with an (E)SMTP server.
SYNOPSIS
Warning! The following examples are not complete programs, and arent designed to be run as full blown applications. Their purpose is to quickly introduce you to the module.
For complete examples, check the eg directory that can be found in the distributions kit.
A simple example:
# load PoCoClient::SMTP
use POE::Component::Client::SMTP;
# spawn a session
POE::Component::Client::SMTP->send(
From => foo@baz.com,
To => john@doe.net,
Server => relay.mailer.net,
SMTP_Success => callback_event_for_success,
SMTP_Failure => callback_event_for_failure,
);
# and you are all set ;-)
A more complex example:
# load PoCoClient::SMTP
use POE::Component::Client::SMTP;
# spawn a session
POE::Component::Client::SMTP->send(
# Email related parameters
From => foo@baz.com,
To => [
john@doe.net,
andy@zzz.org,
peter@z.net,
george@g.com,
],
Body => $email_body, # heres where your message is stored
Server => relay.mailer.net,
Timeout => 100, # 100 seconds before timeouting
# POE related parameters
Alias => pococlsmtpX,
SMTP_Success => callback_event_for_success,
SMTP_Failure => callback_event_for_failure,
);
# and you are all set
<<lessSYNOPSIS
Warning! The following examples are not complete programs, and arent designed to be run as full blown applications. Their purpose is to quickly introduce you to the module.
For complete examples, check the eg directory that can be found in the distributions kit.
A simple example:
# load PoCoClient::SMTP
use POE::Component::Client::SMTP;
# spawn a session
POE::Component::Client::SMTP->send(
From => foo@baz.com,
To => john@doe.net,
Server => relay.mailer.net,
SMTP_Success => callback_event_for_success,
SMTP_Failure => callback_event_for_failure,
);
# and you are all set ;-)
A more complex example:
# load PoCoClient::SMTP
use POE::Component::Client::SMTP;
# spawn a session
POE::Component::Client::SMTP->send(
# Email related parameters
From => foo@baz.com,
To => [
john@doe.net,
andy@zzz.org,
peter@z.net,
george@g.com,
],
Body => $email_body, # heres where your message is stored
Server => relay.mailer.net,
Timeout => 100, # 100 seconds before timeouting
# POE related parameters
Alias => pococlsmtpX,
SMTP_Success => callback_event_for_success,
SMTP_Failure => callback_event_for_failure,
);
# and you are all set
Download (0.020MB)
Added: 2007-05-03 License: Perl Artistic License Price:
905 downloads
Pop-before-SMTP 1.1.0
Pop-before-SMTP allows you to first authenticate Yourself via POP3 and then relay your mails. more>>
Pop-before-SMTP allows you to first authenticate Yourself via POP3 and then relay your mails.
Pop-before-SMTP reads data from FIFO file (POP3-daemon writes to this FIFO) and adds RELAY hosts into access file. Next rebuilds database allowing IPs relay mails. Everything goes in real time allowing Your clients to send mails immediately after receiving post via POP3.
Enhancements:
- at syslog() program shows now the whole record added into database (before was bug),
- you can determine facility for syslog in conf section,
- now You can hash IP numbers in "access" file (before was bug if IP number was hashed, logrelaypop3 didnt add its into database),
- new parameter in conf section.
- LOGRELAY-POP3 for Zmailer & solid-pop3d support
- LOGRELAY-POP3 for Sendmail & ipop3 support
- LOGRELAY-POP3 for Sendmail & solid-pop3 support
<<lessPop-before-SMTP reads data from FIFO file (POP3-daemon writes to this FIFO) and adds RELAY hosts into access file. Next rebuilds database allowing IPs relay mails. Everything goes in real time allowing Your clients to send mails immediately after receiving post via POP3.
Enhancements:
- at syslog() program shows now the whole record added into database (before was bug),
- you can determine facility for syslog in conf section,
- now You can hash IP numbers in "access" file (before was bug if IP number was hashed, logrelaypop3 didnt add its into database),
- new parameter in conf section.
- LOGRELAY-POP3 for Zmailer & solid-pop3d support
- LOGRELAY-POP3 for Sendmail & ipop3 support
- LOGRELAY-POP3 for Sendmail & solid-pop3 support
Download (0.009MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
973 downloads
SMTP Relay Checker 2.0.3
SMTP Relay Checker is a fully configurable, multithreaded open mail relay scanner. more>>
SMTP Relay Checker is a fully configurable, multithreaded open mail relay scanner. It supports scanning of IP blocks, and can print the results to a Web page.
SMTP Relay Checker is intended for Systems Administrators to check IP blocks under their control.
Compilation / Installation
To build SmtpRC please run "make" in the package directory. This will build the package and create the binary "smtprc". To install the package, please run "make install".
By Default, the binary will be installed into /usr/local/bin/, configuration files will be installed under /usr/local/etc/smtprc/ and all documentation files will be installed under /usr/local/share/doc/smtprc/. Please see below for a full list of installed files.
/usr/local/bin/smtprc
/usr/local/bin/gsmtprc
/usr/local/etc/smtprc/auto.conf
/usr/local/etc/smtprc/email.tmpl
/usr/local/etc/smtprc/rcheck.conf
/usr/local/share/doc/smtprc/README
/usr/local/share/doc/smtprc/FAQ
/usr/local/man/man1/smtprc.1
/usr/local/man/man1/gsmtprc.1
Using Smtprc
SmtpRC can be run by specifying options on the command line, or by configuring an "auto configuration" file and letting SmtpRC parse the options from there. The latter is recommended.
When SmtpRC is installed, a example "auto configuration" file is installed in "/usr/local/etc/smtprc/auto.conf". Edit this file, changing the values to suit your specific network requirements and run smtprc with the following option (a full list of options
is detailed below):
"/usr/local/bin/smtprc -j /usr/local/etc/smtprc/auto.conf"
To be sure that a mailserver relays third-party email, SmtpRC will attempt to relay mail to an address specified. It is recommended that this address is a mailbox on the local machine that is being used to run SmtpRC - pop support is a planned feature, but for now, SmtpRC only supports checking local mailboxes (mbox and Maildir). Create a new user account (smtprc), specify the email address for this account, and the local mailbox (on the command line or in the "auto configuration" file), and SmtpRC will attempt to relay emails to this address and check for recieved emails after scanning.
There is also a GUI interface to smtprc (gsmtprc) that is installed in /usr/local/bin. This requires Perl Tk to run.
Enhancements:
- Fixes a race condition between the master and reaper threads.
<<lessSMTP Relay Checker is intended for Systems Administrators to check IP blocks under their control.
Compilation / Installation
To build SmtpRC please run "make" in the package directory. This will build the package and create the binary "smtprc". To install the package, please run "make install".
By Default, the binary will be installed into /usr/local/bin/, configuration files will be installed under /usr/local/etc/smtprc/ and all documentation files will be installed under /usr/local/share/doc/smtprc/. Please see below for a full list of installed files.
/usr/local/bin/smtprc
/usr/local/bin/gsmtprc
/usr/local/etc/smtprc/auto.conf
/usr/local/etc/smtprc/email.tmpl
/usr/local/etc/smtprc/rcheck.conf
/usr/local/share/doc/smtprc/README
/usr/local/share/doc/smtprc/FAQ
/usr/local/man/man1/smtprc.1
/usr/local/man/man1/gsmtprc.1
Using Smtprc
SmtpRC can be run by specifying options on the command line, or by configuring an "auto configuration" file and letting SmtpRC parse the options from there. The latter is recommended.
When SmtpRC is installed, a example "auto configuration" file is installed in "/usr/local/etc/smtprc/auto.conf". Edit this file, changing the values to suit your specific network requirements and run smtprc with the following option (a full list of options
is detailed below):
"/usr/local/bin/smtprc -j /usr/local/etc/smtprc/auto.conf"
To be sure that a mailserver relays third-party email, SmtpRC will attempt to relay mail to an address specified. It is recommended that this address is a mailbox on the local machine that is being used to run SmtpRC - pop support is a planned feature, but for now, SmtpRC only supports checking local mailboxes (mbox and Maildir). Create a new user account (smtprc), specify the email address for this account, and the local mailbox (on the command line or in the "auto configuration" file), and SmtpRC will attempt to relay emails to this address and check for recieved emails after scanning.
There is also a GUI interface to smtprc (gsmtprc) that is installed in /usr/local/bin. This requires Perl Tk to run.
Enhancements:
- Fixes a race condition between the master and reaper threads.
Download (0.053MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1313 downloads
Mail 2 Wordpress 1.02
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail. more>>
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail.
<<less Download (0.007MB)
Added: 2005-12-20 License: GPL (GNU General Public License) Price:
1404 downloads
MadMail 0.2
MadMail is a simple Webmail client which can handle POP3, SMTP, and IMAP servers. more>>
MadMail is a simple Webmail client which can handle POP3, SMTP, and IMAP servers. I
Main features:
- multi-language support
- no Database required
<<lessMain features:
- multi-language support
- no Database required
Download (0.055MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1229 downloads
MEsmtpd 1.04
MEsmtpd provides a small SMTP Daemon with From-header rewrite and SMTP-Auth. more>>
MEsmtpd provides a small SMTP Daemon with From-header rewrite and SMTP-Auth.
The main features of MEsmtpd are SMTP-Auth (RFC 2554) and rewriting the From: header (email body From: header and envelope from) based on an account-list (configuration file and auth data).
Some big companies dont allow plain SMTP because the From header (sender) is fakeable by the sender. Many companies use MAPI (MS Exchange) to solve this problem.
The alternative open source solution is MEsmtpd. It is an independent extension to sendmail, postfix or qmail.
Enhancements:
- added smtp Reset. Thanks to Paul!
<<lessThe main features of MEsmtpd are SMTP-Auth (RFC 2554) and rewriting the From: header (email body From: header and envelope from) based on an account-list (configuration file and auth data).
Some big companies dont allow plain SMTP because the From header (sender) is fakeable by the sender. Many companies use MAPI (MS Exchange) to solve this problem.
The alternative open source solution is MEsmtpd. It is an independent extension to sendmail, postfix or qmail.
Enhancements:
- added smtp Reset. Thanks to Paul!
Download (0.005MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
954 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above smtp search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed