summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2007-05-28 19:31:50 +0000
committerStef Walter <stef@memberwebs.com>2007-05-28 19:31:50 +0000
commit65607ba6acb53fc4e06a4c57bff8e6a71c18de68 (patch)
tree990b16952f17431f30847eccae8b976386cf4552
parent6e3028d726a002212720b2b7f0f024129e348be0 (diff)
Use 'Stef' instead of 'Nate'
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog10
-rw-r--r--INSTALL17
-rw-r--r--Makefile.am8
-rw-r--r--NEWS1
-rw-r--r--README11
-rw-r--r--configure.in4
7 files changed, 47 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index f6b4ec8..e8e6e50 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,4 +1,4 @@
-Nate Nielsen <nielsen@memberwebs.com> used vm-pop3d code and gutted it to
+Stef Walter <stef@memberwebs.com> used vm-pop3d code and gutted it to
create nullpop.
---------------------------------------------------------------------------
diff --git a/ChangeLog b/ChangeLog
index ce80146..585e247 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1 +1,9 @@
-0.1 Initial release
+0.3
+ - Use my real name 'Stef Walter'
+ See: http://memberwebs.com/nielsen/
+
+0.2
+ - Added documentation
+
+0.1
+ - Initial release
diff --git a/INSTALL b/INSTALL
index e69de29..9838eee 100644
--- a/INSTALL
+++ b/INSTALL
@@ -0,0 +1,17 @@
+
+NULLPOP INSTALL
+================
+
+A basic install procedure looks like this.
+
+ # cd nullpop-0.x
+ # ./configure
+ # make
+ # make install
+
+By default nullpop will install to the /usr/local/libexec/ path. You may
+want to specify a different prefix with the --prefix argument to ./configure.
+
+Execute the following command for more options:
+
+ ./configure --help
diff --git a/Makefile.am b/Makefile.am
index 3ab7a5f..8e362c7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,10 @@
libexec_PROGRAMS = nullpop
-
nullpop_SOURCES = nullpop.c
+
+man_MANS = nullpop.8
+EXTRA_DIST = $(man_MANS) man2html.pl
+
+# Simple way to make docs
+html:
+ perl man2html.pl nullpop.8 > nullpop.8.html
diff --git a/NEWS b/NEWS
index e69de29..58378c1 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1 @@
+See ChangeLog
diff --git a/README b/README
index 00f6fdd..3854c95 100644
--- a/README
+++ b/README
@@ -1 +1,10 @@
-NULLPOP readme
+
+NULLPOP README
+===============
+
+nullpop is a POP3 server that allows logins, but never returns any email.
+This is useful for certain setups where the user needs an 'account' setup
+in their mail client, but no real mail will ever be received.
+
+For more information:
+http://memberwebs.com/swalter/software/nullpop/
diff --git a/configure.in b/configure.in
index 1a519be..3a50be0 100644
--- a/configure.in
+++ b/configure.in
@@ -1,8 +1,8 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(nullpop, 0.1, nielsen@memberwebs.com)
-AM_INIT_AUTOMAKE(nullpop, 0.1)
+AC_INIT(nullpop, 0.3, stef@memberwebs.com)
+AM_INIT_AUTOMAKE(nullpop, 0.3)
AC_CONFIG_SRCDIR([nullpop.c])
AM_CONFIG_HEADER([config.h])