Re: Extremely slow authentication via SSH on FreeBSD 6.0

2006-01-08 Thread Derek Musselmann

On Jan 8, 2006, at 7:21 PM, Garrett Cooper wrote:
	I'm having a hard time authenticating after upgrading the kernel  
and some packages, and I was wondering if someone could help me out  
with this issue. I marked the trouble points and included my  
sshd_config.


I noticed in your sshd_config that you have:

# Change to yes to enable built-in password authentication.
PasswordAuthentication yes
PermitEmptyPasswords no

# Change to no to disable PAM authentication
ChallengeResponseAuthentication no


By default, ssh uses PAM for authentication.  By commenting those  
lines out, it doesn't mean that password checking won't be done, just  
that it will be handled with PAM.


And then later in the file you have:
UsePAM yes

Try commenting out the PasswordAuthentication, PermitEmptyPasswords,  
and ChallengeResponse lines.


-
Derek Musselmann
http://www.disflux.com



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: adding virtual webmail users, freebsd6

2006-01-08 Thread Derek Musselmann
Yes, it is doable with postfix and it's not too complicated.  You'll  
basically need a database for the backend (mysql, postgresql) and a  
few config changes to postfix.


There are several tutorials available on the postfix website:
http://www.postfix.org/docs.html

-----
Derek Musselmann
http://www.disflux.com



On Jan 8, 2006, at 3:54 PM, Dave wrote:


Hello,
   I'm setting up a webmail solution on freebsd6. So far i've got  
the underlying MTA Postfix working. I've installed Squirrelmail  
from ports so far all of this installed fine. Now i want to give  
another user an administrative function, adding virtual users, so  
that i won't have to manually add real users whenever a new account  
is needed. Is this doable?

Thanks.
Dave.



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: good blogging port?

2006-01-07 Thread Derek Musselmann
The best blogging software for php/pgsql in my opinion is  
Serendipity.  It has a great plugin architecture and works very well.


-
Derek Musselmann
http://www.disflux.com



On Jan 7, 2006, at 12:01 PM, Jeff D. Hamann wrote:


I need to start a blog. does anyone have any recommendations for a
blogging tools from the ports collection? Preferrably one I can  
hook up to

php and postgresql..


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


problems with mod_auth_pam

2006-01-05 Thread Derek Musselmann

Hello all,
I have a working version of Apache (1.3.34) and am trying to use  
mod_auth_pam to allow access to a directory.  The modules all load  
and I get no error messages.  When I try to authenticate using my  
username/password I get this in the Apache error logs:
Permission denied: access to /dspam/ failed for 192.168.1.100,  
reason: authentication error


It will absolutely not accept my password and I don't know if there  
are any logs someplace else telling me why.  I have tried different  
browsers (Mozilla, Firefox, IE, Safari) with the same result.


My /etc/pam.d/httpd:
auth   requiredpam_unix.so debug
accountrequired pam_unix.so debug

And my httpd.conf:

  Options +ExecCGI
  AuthPAM_Enabled on
  AuthName "DSPAM"
  AuthType Basic
  Require valid-user


Any help is greatly appreciated!

Derek Musselmann



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


XFree86 DRI and DRM

2002-07-15 Thread Derek Musselmann

First off, I don't know if I am posting to the right list or not.  

Well, I have been playing around trying to get DRI and DRM working with
FreeBSD.  I can successfully get native binaries working.  However, I am
having problems with running a Linux GL application (quake 3).  As soon
as it started my box would *ALMOST* lockup.  (I could move the mouse but
couldn't do anything else.)  

I asked some questions and was told to checkout the latest CVS version
of XFree86.

I CVSup'ed the latest version and proceeded to build.  However, after a
successful build, DRM is not working even natively.  I have tried
several different things but to no avail.  The DRM kernel module is
being loaded on boot:

info: [drm] Checking PCI vendor=4098, device=20825
drm0:  port 0x2000-0x20ff mem
0xe810-0xe810,0xf000-0xf7ff irq 10 at device 5.0 on pci1
info: [drm] AGP at 0xec00 64MB
info: [drm] Initialized radeon 1.1.1 20010405 on minor 0

My /var/log/XFree86.0.log is showing that it is loading the dri/drm
modules:

(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/freebsd/libdrm.a
(II) Module drm: vendor="The XFree86 Project"

(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
(II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o
ABI class: XFree86 XInput driver, version 0.3
(II) ATI: ATI driver (version 6.4.13) for chipsets: ati, ativga
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.o

However, there are supposed to be [drm] entries in the log.  I see none
of these and yet there are no errors.  The consequence?  No DRI, as
evidenced by glxinfo:

name of display: :0.0
display: :0  screen: 0
direct rendering: No
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context
client glx vendor string: SGI
client glx version string: 1.2
client glx extensions:
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context
GLX extensions:
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.3 Mesa 4.0.2

If I install X 4.2.0 from the ports, DRI/DRM works fine.

Any suggestions?

I am running 4.6-STABLE with a radeon 7000 AGP 64MB.

TIA,
Derek Musselmann




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: desktop icons in enlightenment 0.16-5

2002-07-13 Thread Derek Musselmann

You can always run Gnome on top of Enlightenment.  A lot of people seem
to use that solution and are happy with it.

Derek Musselmann

On Sat, 2002-07-13 at 11:23, Petre Bandac wrote:
> it seems I'm not capable to get me some desktop icons ... the icon box stores only 
>the minimized applications
> 
> I want a nice iconbar like gnome/kde have - is it possible or do I have to change 
>the wm ?




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message