Shea Martin | 1 Jul 2004 01:02

pure-pw useradd keeps sefaulting

solaris 8/SPARC
configured with:
export CC=cc
export CXX=CC
export CPP=/usr/lib/cpp
export LDFLAGS="-L/usr/local/lib"
export CFLAGS="-I/usr/local/include -xtarget=ultra"
export PERL="/usr/bin/perl"
export PATH=/usr/local/lib:/usr/ccs/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/lib

./configure --with-cookie --with-ftpwho --with-language=english \
          --with-peruserlimits --with-puredb --with-quotas \
          --with-throttling --with-uploadscript --with-virtualchroot

I exported:
PURE_DBFILE=/etc/puredb
PURE_PASSWD=/etc/purepasswd

ldd pure-pw gives:
        libcrypt_i.so.1 =>       /usr/lib/libcrypt_i.so.1
        libsendfile.so.1 =>      /usr/lib/libsendfile.so.1
        libnsl.so.1 =>   /usr/lib/libnsl.so.1
        libsocket.so.1 =>        /usr/lib/libsocket.so.1
        libc.so.1 =>     /usr/lib/libc.so.1
        libgen.so.1 =>   /usr/lib/libgen.so.1
        libdl.so.1 =>    /usr/lib/libdl.so.1
        libmp.so.2 =>    /usr/lib/libmp.so.2

The command
(Continue reading)

Gabriel Straight | 1 Jul 2004 09:51

RE: MAC TLS FTP Client

I am in desperate need of a MAC TLS FTP Client that actually works.  Glub or
LFTP do not seem to work.  Is there a MAC client that will work with
Pure-FTPD w/TLS enabled?  Thank you in advance for any info on this topic.
:)

Gabriel
Jedi/Sector One | 1 Jul 2004 10:07

Re: RE: MAC TLS FTP Client

On Thu, Jul 01, 2004 at 12:51:02AM -0700, Gabriel Straight wrote:
> I am in desperate need of a MAC TLS FTP Client that actually works.  Glub or
> LFTP do not seem to work.

  LFTP works very well. I'm using the version from Fink with no special
configuration but other versions are probably ok too.

  What exact issue do you have with LFTP? Any error message?
Gabriel Straight | 1 Jul 2004 10:27

RE: RE: MAC TLS FTP Client


I'm sorry.  Glub FTP and LFTP do work.  However, I'm looking for a GUI
TLS/Explicit FTP capable client.  I'm sorry for not specifying the GUI part
before.  It's the Glub GUI client that seems to only do Implicit
connections.  And, I can't find a MAC client anywhere with a GUI that
supports TLS explicitly.  Thanks. :)

Gabriel
Luis Miguel Cruz | 1 Jul 2004 11:26
Picon

pure-quotacheck

Is there anyone there using pure-quotacheck?
I am using pureftpd 1.0.19  and I would like to run a crontab job to 
check the pure-quotas at night. I would like to know if someone out 
there has it implemented.

Thanks.
Philon Terving | 1 Jul 2004 16:05
Picon

RE: RE: MAC TLS FTP Client

> I'm sorry.  Glub FTP and LFTP do work.  However, I'm looking for a GUI
> TLS/Explicit FTP capable client.  I'm sorry for not specifying the GUI part
> before.  It's the Glub GUI client that seems to only do Implicit
> connections.  And, I can't find a MAC client anywhere with a GUI that
> supports TLS explicitly.  Thanks. :)

FTPeel is the only client working with TLS, although at the moment only
connection-encryption is supported and that's what PureFTP can't do.

I talked with the developers and they are now working on an update with
support for controlchannel-encryption only.

UnlimitedFTP uses Java and a webbrowser, it does work on Mac but is too
unstable for me.

Regards,
philon
Aliep Gonzalez | 1 Jul 2004 19:51
Picon
Favicon

pure-ftpd-1.0.19 and privsep compilation problem on Tru64


Hi pure-ftpd managers,

I'm trying to compile pure-ftpd-1.0.19 on Tru64 Unix 5.1B running enhanced
(C2) security level. The configure stage goes fine (./configure
--with-privsep), without any errors, but when I run make install-strip; I
always get the same error:

if gcc -DHAVE_CONFIG_H -I. -I. -I..   -D_GNU_SOURCE=1 -I/usr/local/include
-DCONFDIR=\"/etc\" -DINCLUDE_IO_WRAPPERS=1 -g -O2 -MT pu\
then mv -f ".deps/pure_ftpd-privsep.Tpo" ".deps/pure_ftpd-privsep.Po"; else
rm -f ".deps/pure_ftpd-privsep.Tpo"; exit 1; fi
privsep.c: In function `privsep_sendfd':
privsep.c:62: error: structure has no member named `msg_control'
privsep.c:63: error: structure has no member named `msg_controllen'
privsep.c:64: error: structure has no member named `msg_flags'
privsep.c:65: error: structure has no member named `msg_controllen'
privsep.c:65: error: structure has no member named `msg_control'
privsep.c:77: error: structure has no member named `msg_controllen'
privsep.c: In function `privsep_recvfd':
privsep.c:107: error: structure has no member named `msg_control'
privsep.c:108: error: structure has no member named `msg_controllen'
privsep.c:109: error: structure has no member named `msg_flags'
privsep.c:110: error: structure has no member named `msg_controllen'
privsep.c:110: error: structure has no member named `msg_control'
privsep.c:120: error: structure has no member named `msg_controllen'
privsep.c:120: error: structure has no member named `msg_control'
make[2]: *** [pure_ftpd-privsep.o] Error 1
make[2]: Leaving directory `/usr/wrk/pure-ftpd-1.0.19/src'
make[1]: *** [install-recursive] Error 1
(Continue reading)

Jedi/Sector One | 1 Jul 2004 20:37

Re: pure-ftpd-1.0.19 and privsep compilation problem on Tru64

On Thu, Jul 01, 2004 at 01:51:47PM -0400, Aliep Gonzalez wrote:
> I'm trying to compile pure-ftpd-1.0.19 on Tru64 Unix 5.1B running enhanced
> (C2) security level. The configure stage goes fine (./configure
> --with-privsep), without any errors, but when I run make install-strip; I
> always get the same error:

  Unfortunately, it looks like Tru64 has a different ways of passing
descriptors through sockets.

  I'll try to see if this can be solved with online Tru64 man pages.
Jedi/Sector One | 1 Jul 2004 20:40

Re: pure-quotacheck

On Thu, Jul 01, 2004 at 11:26:57AM +0200, Luis Miguel Cruz wrote:
> Is there anyone there using pure-quotacheck?
> I am using pureftpd 1.0.19  and I would like to run a crontab job to 
> check the pure-quotas at night. I would like to know if someone out 
> there has it implemented.

  Yes, what backend are you using? puredb?
Luis Miguel Cruz | 2 Jul 2004 09:27
Picon

Re: pure-quotacheck

Yes

Jedi/Sector One wrote:
> On Thu, Jul 01, 2004 at 11:26:57AM +0200, Luis Miguel Cruz wrote:
> 
>>Is there anyone there using pure-quotacheck?
>>I am using pureftpd 1.0.19  and I would like to run a crontab job to 
>>check the pure-quotas at night. I would like to know if someone out 
>>there has it implemented.
> 
> 
>   Yes, what backend are you using? puredb?
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org
> For additional commands, e-mail: list-help <at> pureftpd.org
> 

Gmane