summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2003-11-06 18:11:33 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2003-11-06 18:11:33 +0000
commitbfcbc48ddf4d13c73b09ed66499781f451dcaf81 (patch)
tree11d7c60d75bc9b234c0bcaf99d4b48c815608599
parent16f6c417c9f877ccb6b40fc3dd87b831a7761797 (diff)
RedHat RPM spec file (Robert Scheck).
-rw-r--r--NEWS2
-rw-r--r--esmtp.spec53
2 files changed, 54 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 8c15dc8..2a9487d 100644
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ News
* Version 0.4.2 (under development):
* Detailed documentation on how to use the StartTLS extension. More
- verbosity on StarTLS error messages.
+ verbosity on StartTLS error messages.
* New 'preconnect' keyword to execute a command prior to opening an SMTP
connection (Daniel Richard G.).
diff --git a/esmtp.spec b/esmtp.spec
new file mode 100644
index 0000000..fd98ea4
--- /dev/null
+++ b/esmtp.spec
@@ -0,0 +1,53 @@
+Summary: User configurable relay-only Mail Transfer Agent (MTA)
+Name: esmtp
+Version: 0.4.1
+Release: 1
+Source: http://belnet.dl.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.bz2
+Url: http://esmtp.sourceforge.net/
+License: GPL
+Group: Networking/Mail
+BuildRoot: %{_tmppath}/%{name}-root
+Requires: libesmtp
+BuildRequires: libesmtp-devel
+Packager: Robert Scheck <esmtp@robert-scheck.de>
+Vendor: Robert Scheck <esmtp@robert-scheck.de>
+
+%description
+ESMTP is a user configurable relay-only Mail Transfer Agent (MTA) with a
+sendmail-compatible syntax. It's based on libESMTP supporting the AUTH
+(including the CRAM-MD5 and NTLM SASL mechanisms) and the StartTLS SMTP
+extensions.
+
+So these are ESMTP features:
+ * requires no administration privileges
+ * individual user configuration
+ * sendmail command line compatible
+ * supports the AUTH SMTP extension, with the CRAM-MD5 and NTLM SASL
+ mechanisms
+ * support the StartTLS SMTP extension
+ * does not receive mail, expand aliases or manage a queue
+
+%prep
+%setup -q
+
+%build
+%configure
+make
+
+%install
+%makeinstall
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%doc AUTHORS README TODO ChangeLog sample.esmtprc
+%{_bindir}/esmtp
+%{_mandir}/man1/esmtp.1.gz
+%{_mandir}/man5/esmtprc.5.gz
+
+%changelog
+* Mon Oct 27 2003 Robert Scheck <esmtp@robert-scheck.de> 0.4.1-1
+- Update to 0.4.1
+- Initial Release for Red Hat Linux