SubEtha SMTP 2.0.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SubEtha SMTP 2.0.1 (Default branch)
# 1  
Old 01-25-2008
SubEtha SMTP 2.0.1 (Default branch)

SubEthaSMTP is an easy to understand Java library that provides a receptive SMTP server component. By plugging this component into your Java application, you can easily receive SMTP mail using a simple abstract Java interface. Also included is a small sub-project called Wiser, an easy to use incoming mail testing framework. It is based on top of Apache MINA for high performance new I/O (NIO) operation. License: The Apache License 2.0 Changes:
An issue with Wiser not storing messages for re-use has been fixed. Major refactoring to prevent OOM and improve perfs when dealing with large attached files. The returned hostname is now locahost when null. A -1 value has been added to override limits on setMaxConnections() and setMaxRecipients(). Handling of auth mechanisms has been fixed to require a configured auth mechanism when needed. A missing space char in the extended HELO AUTH string has been fixed. This release will prevent an SLF4J error on startup by linking the jdk14 logging facility.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
MSG2SMTP(1)						      General Commands Manual						       MSG2SMTP(1)

NAME
msg2smtp - a 'bridge' between MUA and GNU Anubis SYNOPSIS
msg2smtp -h HOST [-p PORT] [-e HELO_DOMAIN] [-U USERNAME] [-P PASSWORD] [-m MECHANISM] [-d] DESCRIPTION
This manual page documents briefly the msg2smtp command. msg2smtp is a program that takes a mail message on STDIN and relays it to an SMTP server. MUA (Mutt) --> msg2smtp.pl --> Anubis --> remote or local MTA This can be used whenever you want to convert a mail message on STDIN and talk to an SMTP server as output. Just like sendmail do. If you want to use this script with Mutt, add this to Mutt configuration file: set sendmail="/PATHTO/msg2smtp.pl -h localhost" If you run GNU Anubis on port 4000, you would put this line in your muttrc: set sendmail="/PATHTO/msg2smtp.pl -h localhost -p 4000" OPTIONS
A summary of options is included below: -h HOST hostname of SMTP server, often 'localhost', -p PORT port of the SMTP server, -e HELO_DOMAIN domain we use when to say helo to smtp server, -U USERNAME ESMTP auth username, -P PASSWORD ESMTP auth password, -m MECHANISM ESMTP auth mechanism - default is PLAIN, -d shows SMTP conversation and perl debugging. SEE ALSO
anubis(1), sendmail(1), mutt(1). AUTHOR
msg2smtp was written by Michael de Beer <michael@debeer.org>. This manual page was written by Krzysztof Burghardt <krzysztof@burghardt.pl>, for the Debian project (but may be used by others). 2007 Aug 26 MSG2SMTP(1)