Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
85252ec2
...
85252ec2a54dfa20a91895fa8e1c4edc483a142c
authored
2001-11-10 22:17:05 +0000
by
Jeff Bailey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Remove hardcoded /etc from APOP database file
1 parent
4c4d9851
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletions
ChangeLog
configure.in
pop3d/pop3d.h
ChangeLog
View file @
85252ec
2001-11-10 Jeff Bailey <jbailey@outpost.dnsalias.org>
* pop3d/pop3d.h: Use SYSCONFDIR, not hardcoded /etc
* doc/man/.cvsignore: New File
* doc/Makefile.am: Add man to SUBDIRS
* configure.in: Build doc/man/Makefile
Provide -DSYSCONFDIR in CPPFLAGS
* doc/man/pop3d.1: New File
...
...
configure.in
View file @
85252ec
...
...
@@ -227,6 +227,9 @@ if test x"${usedb2}" = x"yes"; then
LIBS="$LIBS -ldb"])
fi
dnl Make sysconfdir available to the application
CPPFLAGS="$CPPFLAGS -DSYSCONFDIR=\\\"\$(sysconfdir)\\\""
dnl Check for Guile
AC_SUBST(GUILE_INCLUDES)
AC_SUBST(GUILE_LIBS)
...
...
pop3d/pop3d.h
View file @
85252ec
...
...
@@ -58,7 +58,7 @@
/* APOP password file, without .db or .passwd, which are added based on file
type automatically */
#define APOP_PASSFILE
"/etc
/apop"
#define APOP_PASSFILE
SYSCONFDIR"
/apop"
/* Size of the MD5 digest for APOP */
#define APOP_DIGEST 70
...
...
Please
register
or
sign in
to post a comment