diff options
author | Stef Walter <stef@memberwebs.com> | 2007-05-28 19:31:50 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2007-05-28 19:31:50 +0000 |
commit | 65607ba6acb53fc4e06a4c57bff8e6a71c18de68 (patch) | |
tree | 990b16952f17431f30847eccae8b976386cf4552 | |
parent | 6e3028d726a002212720b2b7f0f024129e348be0 (diff) |
Use 'Stef' instead of 'Nate'
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | INSTALL | 17 | ||||
-rw-r--r-- | Makefile.am | 8 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | README | 11 | ||||
-rw-r--r-- | configure.in | 4 |
7 files changed, 47 insertions, 6 deletions
@@ -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. --------------------------------------------------------------------------- @@ -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 @@ -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 @@ -0,0 +1 @@ +See ChangeLog @@ -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]) |