Compare commits
10 Commits
ae5a180410
...
bd28a4cc37
| Author | SHA1 | Date | |
|---|---|---|---|
| bd28a4cc37 | |||
|
|
e56c851d3d | ||
|
|
188ae0935a | ||
|
|
dd519cccb2 | ||
|
|
e8498b8f6a | ||
|
|
6a411a6fab | ||
|
|
719cc56ca3 | ||
|
|
618ccc5adc | ||
|
|
91d6a40b7a | ||
|
|
bfaab8dffd |
2
.gitignore
vendored
2
.gitignore
vendored
@ -34,6 +34,8 @@ Makefile.in
|
||||
/doc/petidomo.aux
|
||||
/doc/petidomo.css
|
||||
/doc/petidomo.dvi
|
||||
/doc/petidomo.fdb_latexmk
|
||||
/doc/petidomo.fls
|
||||
/doc/petidomo.html
|
||||
/doc/petidomo.idv
|
||||
/doc/petidomo.lg
|
||||
|
||||
@ -12,6 +12,7 @@ addons:
|
||||
- texlive
|
||||
- texlive-latex-extra
|
||||
- tex4ht
|
||||
- latexmk
|
||||
|
||||
install:
|
||||
- git clone --depth=1 git://git.savannah.gnu.org/gnulib.git
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
ACLOCAL_AMFLAGS = -I build-aux
|
||||
AM_YFLAGS = -d
|
||||
|
||||
SUBDIRS = libgnu libargv libtext liblists librfc822 libmpools libconfigfile doc
|
||||
SUBDIRS = libgnu libargv libtext liblists libmpools librfc822 libconfigfile doc
|
||||
|
||||
sbin_PROGRAMS = petidomo
|
||||
|
||||
|
||||
@ -4,6 +4,8 @@ set -eu
|
||||
|
||||
if [ -x "gnulib/gnulib-tool" ]; then
|
||||
gnulibtool=gnulib/gnulib-tool
|
||||
elif [ -x "../gnulib/gnulib-tool" ]; then
|
||||
gnulibtool=../gnulib/gnulib-tool
|
||||
else
|
||||
gnulibtool=gnulib-tool
|
||||
fi
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
How to use the Petidomo 2.x mailing list server
|
||||
***********************************************
|
||||
How to use the Petidomo mailing list server
|
||||
*******************************************
|
||||
|
||||
Petidomo is an automatic mailing list server, which maintains mailing lists
|
||||
without any human interaction. The program understands a set of commands
|
||||
|
||||
@ -3,7 +3,7 @@ dnl configure.ac -- Process this file with autoconf to produce a configure scrip
|
||||
AC_INIT([petidomo],[m4_esyscmd(build-aux/git-version-gen .tarball-version)],[simons@cryp.to],[petidomo],[https://github.com/peti/petidomo])
|
||||
AC_CONFIG_SRCDIR([petidomo.h])
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
AM_INIT_AUTOMAKE([1.11 -Wall gnu subdir-objects])
|
||||
AM_INIT_AUTOMAKE([1.11 -Wall foreign subdir-objects])
|
||||
AC_CONFIG_MACRO_DIR([build-aux])
|
||||
|
||||
AC_COPYRIGHT([dnl
|
||||
|
||||
@ -8,7 +8,7 @@ htmldir = $(pkgdatadir)/html
|
||||
dist_html_DATA = petidomo.html petidomo.css
|
||||
|
||||
petidomo.html: $(srcdir)/petidomo.tex
|
||||
latex $<
|
||||
latexmk $<
|
||||
htlatex $<
|
||||
|
||||
petidomo.css: petidomo.html
|
||||
@ -17,6 +17,6 @@ petidomo.css: petidomo.html
|
||||
CLEANFILES = \
|
||||
petidomo.4ct petidomo.4tc petidomo.aux petidomo.css petidomo.dvi \
|
||||
petidomo.html petidomo.idv petidomo.lg petidomo.log petidomo.tmp \
|
||||
petidomo.toc petidomo.xref
|
||||
petidomo.toc petidomo.xref petidomo.fdb_latexmk petidomo.fls
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
BIN
doc/petidomo.pdf
Normal file
BIN
doc/petidomo.pdf
Normal file
Binary file not shown.
@ -8,9 +8,9 @@ noinst_HEADERS = rfc822.h
|
||||
librfc822_a_SOURCES = address.y address_scan.l address_sep.c decomment.c
|
||||
|
||||
noinst_PROGRAMS = test
|
||||
test_SOURCES = test.c ../libmpools/mpools.c ../liblists/lists.c
|
||||
test_SOURCES = test.c
|
||||
test_CPPFLAGS = -I$(srcdir)/../libgnu
|
||||
test_LDADD = librfc822.a ../libgnu/libgnu.a
|
||||
test_LDADD = librfc822.a ../libgnu/libgnu.a ../libmpools/libmpools.a ../liblists/liblists.a
|
||||
|
||||
EXTRA_DIST = testaddresslines parse_address.c
|
||||
|
||||
|
||||
6
main.c
6
main.c
@ -46,9 +46,9 @@ main(int argc, char * argv[])
|
||||
char * incoming_mail;
|
||||
argv_t args[] =
|
||||
{
|
||||
{ARGV_MAND, "mode", ARGV_CHAR_P, &mode, "mode", "listserv, deliver, approve or dump."},
|
||||
{ARGV_MAYBE, "listname", ARGV_CHAR_P, &listname, "listname", "Default mailing list."},
|
||||
{ARGV_MAYBE, "masterconf", ARGV_CHAR_P, &masterconfig_path, "masterconf", "Path to petidomo.conf."},
|
||||
{ARGV_MAND, "mode", ARGV_CHAR_P, &mode, "mode", "listserv, deliver, approve or dump"},
|
||||
{ARGV_MAYBE, "listname", ARGV_CHAR_P, &listname, "listname", "default mailing list name"},
|
||||
{ARGV_MAYBE, "masterconf", ARGV_CHAR_P, &masterconfig_path, "masterconf", "path to global petidomo.conf"},
|
||||
{ARGV_MAYBE, "approved", ARGV_BOOL, &g_is_approved, "approved", "approved flag."},
|
||||
{ARGV_LAST}
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user