search for: maillock

Displaying 20 results from an estimated 48 matches for "maillock".

1999 Nov 22
0
Solaris 7 and sshd.c / HAVE_MAILLOCK_H
maillock.h defines MAILDIR, MAILDIR is needed in config.h, and config.h needs to be included after maillock.h... #ifdef HAVE_MAILLOCK_H # include <maillock.h> # include "config.h" #endif In order to get _PATH_MAILDIR defined properly... Marc G. Fournier mar...
1999 Dec 22
2
ANNOUNCE: openssh-1.2.1pre19
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 OpenSSH-1.2.1pre19 has been released. http://violet.ibs.com.au/openssh/files/MIRRORS.html The major change in this version is the integration of Andre Lucas' HPUX support. This adds a few other options which may be useful on other systems. Changelog: 19991221 - Integration of large HPUX patch from Andre Lucas <andre.lucas at
1999 Dec 22
2
ANNOUNCE: openssh-1.2.1pre19
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 OpenSSH-1.2.1pre19 has been released. http://violet.ibs.com.au/openssh/files/MIRRORS.html The major change in this version is the integration of Andre Lucas' HPUX support. This adds a few other options which may be useful on other systems. Changelog: 19991221 - Integration of large HPUX patch from Andre Lucas <andre.lucas at
1999 Nov 23
2
Fixes for Solaris
...lude <sys/socket.h> /* For SHUT_XXXX */ #ifdef HAVE_PATHS_H # include <paths.h> /* For _PATH_XXX */ #endif +#ifdef HAVE_UTMP_H +# include <utmp.h> /* For _PATH_XXX */ +#endif + #ifdef HAVE_SYS_TIME_H # include <sys/time.h> /* For timersub */ #endif +#ifdef HAVE_MAILLOCK_H +#include <maillock.h> +#endif + #ifndef SHUT_RDWR enum { @@ -174,6 +182,10 @@ #ifndef _PATH_STDPATH # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:" +#endif + +#ifndef _PATH_DEVNULL +# define _PATH_DEVNULL "/dev/null" #endif #ifndef _PATH_MAILDIR Index...
2000 Aug 01
0
MAIL on Solaris
On Solaris, the environment variable MAIL gets set to /var/mail//user, (with double // before user name),which breaks some MUAs, e.g. emacs' Rmail. The problem lies in the fact that /usr/include/maillock.h has: #define MAILDIR "/var/mail/" while session.c adds another / snprintf(buf, sizeof buf, "%.200s/%.50s", _PATH_MAILDIR, pw->pw_name); This only occurs on systems with maillock.h (i.e. not on linux) -- Luc Dierckx Systems Manager Laboratory for Comp...
2001 Jun 21
0
Bug: OpenSSH (port.) daemon sets $MAIL incorrectly on Solaris (others?)
.... Although this is usually harmless, since the pathname is still valid with the null pathname component, some of my users are reporting that the extra slash confuses rmail under emacs in such a way that it will not read the mailbox. The cause of the bug is that "defines.h" includes <maillock.h>, and under Solaris (and possibly other platforms on which HAVE_MAILLOCK_H is defined), /usr/include/maillock.h defines MAILDIR in a manner which includes the trailing slash: #define MAILDIR "/var/mail/" ... #if !defined(_PATH_MAILDIR) && defined(MAILDIR)...
2000 Aug 01
2
[2.1.1p4] utmp patch for SunOS 4.1.x
...ar/adm/lastlog + MANTYPE='$(CATMAN)' + mansubdir=cat ;; *-sni-sysv*) CFLAGS="$CFLAGS -I/usr/local/include" *************** *** 216,225 **** fi # Checks for header files. ! AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h lastlog.h limits.h login.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h stddef.h time.h usersec.h util.h utmp.h utmpx.h) # Checks for library func...
2001 Feb 16
1
OpenSSH 2.3.0p1 port to BSDI BSD/OS
...be authenticated, and 1 if authentication was Index: configure.in --- configure.in 2001/02/13 07:43:16 1.1 +++ configure.in 2001/02/13 22:00:07 @@ -284,7 +284,7 @@ fi # Checks for header files. -AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h getopt.h lastlog.h limits.h login.h login_cap.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h sys/un.h stddef.h time.h ttyent.h usersec.h util.h utmp.h utmpx.h vis.h) +AC_CH...
2001 Mar 29
3
Patches for OpenSSH 2.5.2p2: evaluate /etc/default/login, makefiles manpages
.../ if (options.use_login) --- configure.in.orig-2.5.2p2 Mon Mar 19 00:09:28 2001 +++ configure.in Wed Mar 21 17:20:12 2001 @@ -368,7 +368,7 @@ AC_FUNC_STRFTIME # Checks for header files. -AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h getopt.h glob.h lastlog.h limits.h login.h login_cap.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h regex.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/queue.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h sys/un.h stddef.h time.h ttyent.h usersec.h util.h utime.h...
2001 Aug 13
1
[PATCH] Maildir support
...h.in --- openssh-2.9p2/config.h.in Sun Jun 17 06:09:47 2001 +++ openssh-2.9p2.maildir/config.h.in Fri Aug 10 12:53:30 2001 @@ -237,8 +237,11 @@ /* to the conversation function with an extra level of indirection */ #undef PAM_SUN_CODEBASE -/* Set this to your mail directory if you don't have maillock.h */ +/* Set this to your mail directory if you don't have maillock.h or paths.h */ #undef MAIL_DIRECTORY + +/* Set this to enable support for Maildir style mailboxes. */ +#undef MAILDIR_FORMAT /* Data types */ #undef HAVE_U_INT diff -ur --exclude=configure openssh-2.9p2/configure.in opens...
1999 Dec 20
2
Portability hacks + alpha HPUX1020 port
...nds still use utmp...) - innetgr() protos if required - #ifdef blocks for innetgr lib function - *snprintf proto definitions if not present (HP) - utmpx compatibility hacks - search for xauth - check for updwtmpx lib func (HP) - check for ttcompat.h (HP) - check environment for mail directory if no maillock.h - variable for custom rsh path (HP uses remsh) - include bsd-login.h for systems w/o login lib func - X11 port forwarding on HPUX - macro to use setreuid() instead of seteuid(), which HP lacks *** Someone shout if this has any security implications ! *** - autoconf config.sub and config.guess (AC...
2000 Jun 13
2
2.2.1p1 / AIX 4.2.1.0.06 login nits
Hi. New (2.1.1p1) login code is nicer on AIX (4.2.1.0.06). Thanks. A couple of issues, though, which I haven't really dug into yet. I'm wondering if anyone else has seen them? If not, I'll investigate & report. 1. If I set "UseLogin" to "yes", everything seems fine except that the authentication agent forwarding doesn't work. The "SSH"
1999 Dec 21
0
Problem with UTMP recording
...SNPRINTF 1 /* Define if you have the <endian.h> header file. */ #define HAVE_ENDIAN_H 1 /* Define if you have the <lastlog.h> header file. */ #define HAVE_LASTLOG_H 1 /* Define if you have the <login.h> header file. */ /* #undef HAVE_LOGIN_H */ /* Define if you have the <maillock.h> header file. */ /* #undef HAVE_MAILLOCK_H */ /* Define if you have the <netgroup.h> header file. */ /* #undef HAVE_NETGROUP_H */ /* Define if you have the <paths.h> header file. */ #define HAVE_PATHS_H 1 /* Define if you have the <poll.h> header file. */ /* #undef HAV...
2001 Feb 12
5
SCO OS3 build broken (CVS 01/12/01)
It looks like something got broken in openbsd-compat/bsd-snprintf.c ... gcc -g -O2 -Wall -Dftruncate=chsize -I/usr/local/include -I/usr/local/ssl/includ e -I. -I.. -I../src/openbsd-compat -I../src/openbsd-compat/.. -DHAVE_CONFIG_H -c ../src/openbsd-compat/bsd-snprintf.c In file included from ../src/openbsd-compat/bsd-snprintf.c:72:
2003 Jun 22
2
Problem with Configure
...ng limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking login.h usability... no checking login.h presence... no checking for login.h... no checking login_cap.h usability... yes checking login_cap.h presence... yes checking for login_cap.h... yes checking maillock.h usability... no checking maillock.h presence... no checking for maillock.h... no checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking netgroup.h usability... no checking netgroup.h presence... no checking for netgroup.h... no checking netinet/in_...
2000 Apr 21
0
OpenSSH 1.2.3 on AIX 4.3.3
...ve the pututline function. */ +#undef HAVE_PUTUTLINE /* Define if you have the rresvport_af function. */ #undef HAVE_RRESVPORT_AF --- configure.in.orig Fri Mar 17 07:26:46 2000 +++ configure.in Fri Apr 21 08:23:28 2000 @@ -110,7 +110,7 @@ AC_CHECK_HEADERS(bstring.h endian.h lastlog.h login.h maillock.h netdb.h netgroup.h paths.h poll.h pty.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/select.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h stddef.h util.h utmp.h utmpx.h) # Checks for library functions. -AC_CHECK_FUNCS(arc4random bindresvport_af...
2000 Jan 18
1
Error when compiling for Solaris7
...checking for login in -lutil... (cached) no checking for yp_match in -lnsl... (cached) yes checking for main in -lsocket... (cached) yes checking for bstring.h... (cached) no checking for endian.h... (cached) no checking for lastlog.h... (cached) yes checking for login.h... (cached) no checking for maillock.h... (cached) yes checking for netdb.h... (cached) yes checking for netgroup.h... (cached) no checking for paths.h... (cached) no checking for poll.h... (cached) yes checking for pty.h... (cached) no checking for shadow.h... (cached) yes checking for security/pam_appl.h... (cached) yes checking for...
2006 Feb 06
1
Compile warning report of openssh 4.3p1 on Intel Macs
...cking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking login.h usability... no checking login.h presence... no checking for login.h... no checking login_cap.h usability... no checking login_cap.h presence... no checking for login_cap.h... no checking maillock.h usability... no checking maillock.h presence... no checking for maillock.h... no checking ndir.h usability... no checking ndir.h presence... no checking for ndir.h... no checking net/if.h usability... no checking net/if.h presence... yes configure: WARNING: net/if.h: present but cannot be compile...
2001 Aug 13
1
[jakob@crt.se: Re: [PATCH] Maildir support]
...problems for me personally at work. Here's the deal with an example: If you do a configure, on a Solaris 2.7 box, and then build sshd, when you log in you get this is you echo $MAIL, MAIL=/var/mail//<username> . These two slashes get botched because of the way Sun defines MAILDIR in maillock.h #define MAILDIR "/var/mail/" So, this (even though broke in Sun's case because of the trailing "/"), is what the guy is talking about. This example is for the Mbox not Maildir mail format which how mail is stored. So in this case we have the same problem though...
2006 Apr 23
0
Configuration Warnings OpenSSH 4.3p2
...the compiler will take precedence configure: WARNING: ## ------------------------------------------- ## configure: WARNING: ## Report this to openssh-unix-dev at mindrot.org ## configure: WARNING: ## ------------------------------------------- ## checking for login_cap.h... yes checking maillock.h usability... no checking maillock.h presence... no checking for maillock.h... no checking ndir.h usability... no checking ndir.h presence... no checking for ndir.h... no checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking netgroup.h usability......