Re: [SLUG] Re: Apache probs - Invalid command 'Alias', perhaps mis-spelled

2005-07-04 Thread Michael Lake

Matthew Palmer wrote:

On Mon, Jul 04, 2005 at 02:08:56PM +1000, Michael Lake wrote:

The problem was many and varied. For a start a Debian upgrade some time ago 
had added the following lines to my httpd conf file: 


# Please keep this LoadModule: line here, it is needed for installation.
Include /etc/apache-perl/modules.conf
Include /etc/apache/modules.conf

Mistake!: I'm running apache-perl and not apache and it was including two 
module.conf files which were slightly different. Thats why I was getting 
errors like module config_log_module is already loaded, skipping
I commented out the include for /etc/apache/modules.conf and restarted 
apache-perl.



Out of curiousity, why are you running apache-perl and not apache with
mod_perl?  I've never seen the attraction, myself (or for apache-ssl,
either).  I've heard speed mentioned, but I've never seen any stats to
support it, so I put it in the Gentoo bucket grin.


Actually I find it all very confusing sometimes. I have three machines
and what I have on them is the following Debian packages:

An Athlon A Laptop   A Virtual Server
-    
apache-perl   apache apache-perl
libapache-mod-perllibapache-mod-perl libapache-mod-perl

(In Debian libapache-mod-perl is a prerequisite for apache-perl.)

I also needed to manually add LoadModule auth_mysql_module 
/usr/lib/apache/1.3/mod_auth_mysql.so
to the modules.conf file cause for some reason /usr/sbin/apache-modconf 
apache-perl updated modules.conf but didn't add the required line.



A lack of properly formed -info file would cause apache-modconf to not see
the module, I believe.

The info file looked ok and it came with the libapache-mod-perl package.
Later I'll have a closer look at it on each of the three machines.

But now it seems the interface has changed. Even Crypt has changed to 
Encrypted!



I think you were using a non-Debian-packaged edition of mod-auth-mysql.
3.2-1 (the version in Woody) doesn't have the AMCryptedPasswords option
(Auth_MySQL_Encrypted_Passwords is the equivalent). 
Correct. I started off with that a few years ago - I was compiled and 
added in manually. At some time it got replaced with the Debian package.



There's lots of
different mod-auth-mysql modules out there, each with New! and Interesting!
configuration directives, and mod-auth-mysql has a tortured and fractured
history overall.  Feed me beer at a Spice Boys meet and I'll give you the
whole sorry, bitter tale.
Okies - that would be interesting. I didn't realise that there were more 
than one. That means I should see what one is in the Debian package


Package: libapache-mod-auth-mysql
Maintainer: Matthew Palmer [EMAIL PROTECTED]
Architecture: i386
Version: 4.3.9-2

Oh ! Matthew Palmer :-)

There is a mod_auth_mysql at http://sourceforge.net/projects/modauthmysql
Originally by Vivek Kheraby and maintained there by
Jerry Stuckle, Matthew Hodgson  Samuel Brauer

Where is the Debian one sourced from Matt ?


(apt-cache show libapache-mod-auth-mysql | grep ^Maintainer grin)

Yeah I see, :-)

Mike
--
Michael Lake
Chemistry, Materials  Forensic Science, UTS
Ph: 9514 1725 Fx: 9514 1460
[pls ignore idiot lawyer's msg below]



--
UTS CRICOS Provider Code:  00099F
DISCLAIMER: This email message and any accompanying attachments may contain
confidential information.  If you are not the intended recipient, do not
read, use, disseminate, distribute or copy this message or attachments.  If
you have received this message in error, please notify the sender immediately
and delete this message. Any views expressed in this message are those of the
individual sender, except where the sender expressly, and with authority,
states them to be the views the University of Technology Sydney. Before
opening any attachments, please check them for viruses and defects.
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] FC 4 apache installation trouble

2005-07-04 Thread pesoy misak
Dear Slugger

I just installed apache 2 that is shipped with FC 4
disc.
all the installation was fine and can access the
http://localhost displaying noindex.html.

problem:

when i dropped a directory under the /var/www/html/xxx
when i access in the http://localhost/xxx 

error 403 /xxx access denied

already changed permission also the error_logs said
that xxx directory is denied 

and also this happening with home user public_html 
I can't access anything with public_html with a proper
permission

any hints

many thanks in advance





 
Yahoo! Sports 
Rekindle the Rivalries. Sign up for Fantasy Football 
http://football.fantasysports.yahoo.com
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] FC 4 apache installation trouble

2005-07-04 Thread Michael Lake

pesoy misak wrote:

I just installed apache 2 that is shipped with FC 4
disc.
when i dropped a directory under the /var/www/html/xxx
when i access in the http://localhost/xxx 
error 403 /xxx access denied

already changed permission also the error_logs said
that xxx directory is denied 


The directory xxx must be able to be 'entered' by the web server for it 
to read the contents.


So if the directory is say owned by root:root it will need permissions 
like drwxr-xr-x so that 'others' i.e. apache can read and enter the 
directory.


If the directory is owned by say root:www and apache runs as user www 
then the directory permissions can be drwxr-xr--


A good way to see if apache can read the directory is to become root 
then su to the owner that apache runs as. If apache runs as www then

# su - www
$

Now try and change directory and see if you are 'let in' when you cd xxx
Bet you aren't :-)

Mike
--
Michael Lake
Chemistry, Materials  Forensic Science, UTS
Ph: 9514 1725 Fx: 9514 1460
[pls ignore idiot lawyer's msg below]



--
UTS CRICOS Provider Code:  00099F
DISCLAIMER: This email message and any accompanying attachments may contain
confidential information.  If you are not the intended recipient, do not
read, use, disseminate, distribute or copy this message or attachments.  If
you have received this message in error, please notify the sender immediately
and delete this message. Any views expressed in this message are those of the
individual sender, except where the sender expressly, and with authority,
states them to be the views the University of Technology Sydney. Before
opening any attachments, please check them for viruses and defects.
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


FW: [SLUG] FC 4 apache installation trouble

2005-07-04 Thread Phill
Have you disabled SELinux for httpd. I had some issues with apache until
this was done

Regards,
Phill O'Flynn


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Michael Lake
Sent: Monday, 4 July 2005 5:41 PM
To: slug@slug.org.au
Subject: Re: [SLUG] FC 4 apache installation trouble

pesoy misak wrote:
 I just installed apache 2 that is shipped with FC 4
 disc.
 when i dropped a directory under the /var/www/html/xxx
 when i access in the http://localhost/xxx
 error 403 /xxx access denied
 already changed permission also the error_logs said
 that xxx directory is denied

The directory xxx must be able to be 'entered' by the web server for it
to read the contents.

So if the directory is say owned by root:root it will need permissions
like drwxr-xr-x so that 'others' i.e. apache can read and enter the
directory.

If the directory is owned by say root:www and apache runs as user www
then the directory permissions can be drwxr-xr--

A good way to see if apache can read the directory is to become root
then su to the owner that apache runs as. If apache runs as www then
# su - www
$

Now try and change directory and see if you are 'let in' when you cd xxx
Bet you aren't :-)

Mike
--
Michael Lake
Chemistry, Materials  Forensic Science, UTS
Ph: 9514 1725 Fx: 9514 1460
[pls ignore idiot lawyer's msg below]



--
UTS CRICOS Provider Code:  00099F
DISCLAIMER: This email message and any accompanying attachments may
contain
confidential information.  If you are not the intended recipient, do not
read, use, disseminate, distribute or copy this message or attachments.
If
you have received this message in error, please notify the sender
immediately
and delete this message. Any views expressed in this message are those of
the
individual sender, except where the sender expressly, and with authority,
states them to be the views the University of Technology Sydney. Before
opening any attachments, please check them for viruses and defects.
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


smime.p7s
Description: S/MIME cryptographic signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] drupal distributed authentication

2005-07-04 Thread Conrad Parker
Dear Dr. Slug,

I'm considering using Drupal to build a community site, mainly for its
distributed authentication feature; a user can log into a new Drupal
site using their credentials from another Drupal site, as described at:

  http://www.spreadfirefox.com/?q=user/help

(drupal.org seems to be unreachable atm).

I'm aware that other CMSs exist, and that perhaps other systems like
MoveableType now have a similar feature. What I like about using Drupal
is that it encourages a distributed community of members from other
relevent, existing sites, such as ourmedia.org and spreadfirefox.com.

So, I'm after two bits of advice from anyone who's administered Drupal,
or who can convincingly impersonate a Drupal administrator:

1) Do you hate Drupal? Have you used it extensively and then switched
away from it? why?

2) How hard, or not, do you have to squint to see a resemblence between
a security model and Drupal's distributed authentication? For example, can
I choose not to accept authentication from certain sites? and is there
anything other than a distributed relaying of plaintext passwords?

cheers,

Conrad.
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] snapshot file systems

2005-07-04 Thread Sridhar Dhanapalan
On Mon, 4 Jul 2005 11:35, Julio Cesar Ody [EMAIL PROTECTED] wrote:
 Hi all,

 has anyone got any experience with GNU/Linux snapshot file systems?

 I googled around and found these:

 http://www-mddsp.enel.ucalgary.ca/People/adilger/snapfs/

 http://sourcefrog.net/projects/snapfs/

 Didn't get any of them installed yet because I won't put my hands
 (root) on any GNU/Linux OS in the next day or two.

 What I want is something similar to FreeBSD's snapshot file system,
 which creates a read-only mount point containing a snapshot of the
 data in a section/partition/whatever, where you can copy stuff from.

 Any help is appreciated. Cheers.

I'm not an expert in this area, but might UnionFS fit your needs?

http://www.fsl.cs.sunysb.edu/project-unionfs.html
http://www.oreillynet.com/pub/wlg/6654


-- 
Sridhar Dhanapalan  [Yama | http://www.pclinuxonline.com/]
  {GnuPG/OpenPGP: http://dhanapalan.webhop.net/yama.asc
   0x049D38B4 : A7A9 8A02 78CB AB1B FCE4 EEC6 2DD9 249B 049D 38B4}

I believe we are on an irreversible trend toward more freedom and democracy - 
but that could change. -- George W. Bush, 1998-05-22


pgpMw1HrgthdS.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Re: [SLUG] snapshot file systems

2005-07-04 Thread Sridhar Dhanapalan
On Mon, 4 Jul 2005 19:23, Sridhar Dhanapalan [EMAIL PROTECTED] wrote:
 On Mon, 4 Jul 2005 11:35, Julio Cesar Ody [EMAIL PROTECTED] wrote:
  Hi all,
 
  has anyone got any experience with GNU/Linux snapshot file systems?
 
  I googled around and found these:
 
  http://www-mddsp.enel.ucalgary.ca/People/adilger/snapfs/
 
  http://sourcefrog.net/projects/snapfs/
 
  Didn't get any of them installed yet because I won't put my hands
  (root) on any GNU/Linux OS in the next day or two.
 
  What I want is something similar to FreeBSD's snapshot file system,
  which creates a read-only mount point containing a snapshot of the
  data in a section/partition/whatever, where you can copy stuff from.
 
  Any help is appreciated. Cheers.

 I'm not an expert in this area, but might UnionFS fit your needs?

 http://www.fsl.cs.sunysb.edu/project-unionfs.html
 http://www.oreillynet.com/pub/wlg/6654

Replying to my own post...

LVM or EVMS might be worth looking at as well. AFAIK both can do snapshotting. 
Here's a good introductory article on EVMS:

  http://www.osnews.com/story.php?news_id=10288


-- 
Sridhar Dhanapalan  [Yama | http://www.pclinuxonline.com/]
  {GnuPG/OpenPGP: http://dhanapalan.webhop.net/yama.asc
   0x049D38B4 : A7A9 8A02 78CB AB1B FCE4 EEC6 2DD9 249B 049D 38B4}

Microsoft isn't evil, they just make really crappy operating systems.
-- Linus Torvalds


pgphcfDzeAhbd.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] auto update squidguard/chastity

2005-07-04 Thread Sonia Hamilton
IÂve installed squidguard/chastity on a firewall, to block p0rn.

Does anyone know of a website that provides a dynamically updated list I
could regularyl grab using cron.

IÂve googled, but nothing came up.

-- 
Sonia Hamilton. GPG key A8B77238.
.
Veni Vidi Linux!
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Radius Authentication

2005-07-04 Thread M. Salaque
Hello All,

Is it possible to authenticate  at my telnet/ssh/ftp
client against my radius server ?

so that i could control session timeout, multiple
login, usages record so easy. 


Regards
Salaque

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Radius Authentication

2005-07-04 Thread Sonia Hamilton

M. Salaque wrote:

Hello All,

Is it possible to authenticate  at my telnet/ssh/ftp
client against my radius server ?

so that i could control session timeout, multiple
login, usages record so easy. 


Check out pam (Pluggable Authentication Modules for Linux)

http://www.kernel.org/pub/linux/libs/pam/

--
Sonia Hamilton. GPG key A8B77238.
.
Veni Vidi Linux!
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] htdig or other searchers

2005-07-04 Thread telford
On Sun, Jul 03, 2005 at 04:58:10PM +1000, David wrote:

 Does htdig go to the server (thereby parsing includes?). The site 
 navigates perfectly from a browser.

Yes, in my experience it does, there are entries in the access_log.
Beware if you are running virtual servers because usually it connects
to 127.0.0.1 (but that's configurable). Also it has filters based on
file type, usually it avoids all CGI references.

- Tel
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] drupal distributed authentication

2005-07-04 Thread Erik de Castro Lopo
Conrad Parker wrote:

 Dear Dr. Slug,
 
 I'm considering using Drupal to build a community site,

Oooo, look, Drupal has just been mentioned on Slashdot:

http://it.slashdot.org/it/05/07/04/2153224.shtml?tid=95tid=172tid=169

 distributed authentication feature; a user can log into a new Drupal
 site using their credentials from another Drupal site, as described at:
 
   http://www.spreadfirefox.com/?q=user/help
 
 (drupal.org seems to be unreachable atm).

Maybe it was hacked via XML-RPC :-).

Erik
-- 
+---+
  Erik de Castro Lopo  [EMAIL PROTECTED] (Yes it's valid)
+---+
If you think C++ is not overly complicated, just what is a
protected abstract virtual base pure virtual private destructor
and when was the last time you needed one? -- Tom Cargill
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] htdig or other searchers

2005-07-04 Thread David
On Tue, Jul 05, 2005 at 07:55:20AM +1000, [EMAIL PROTECTED] wrote:
 On Sun, Jul 03, 2005 at 04:58:10PM +1000, David wrote:
 
  Does htdig go to the server (thereby parsing includes?). The site 
  navigates perfectly from a browser.
 
 Yes, in my experience it does, there are entries in the access_log.
 Beware if you are running virtual servers because usually it connects
 to 127.0.0.1 (but that's configurable). Also it has filters based on
 file type, usually it avoids all CGI references.

thanks for your reply, but as usual it was my ignorance that was the 
problem.. in htdig.conf I had put two start url's on seperate lines, 
assuming that \n was counted as white space... silly me.

I'm replying to my own question in case someone else makes the same 
mistake. It took me three days to figure it out.

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Asterisk PBX not outputting sound

2005-07-04 Thread Julio Cesar Ody
Hi all,

This post went to asterisk-users, at digium mailing lists, but either
my question is too dumb or those guys are too busy to help these days 
=)

I'm having issues in getting any sound using a fresh asterisk install
and a SJPhone to connect to it. I went by the instructions pointed at
the 10 minute guide, located here:

http://www.voip-info.org/tiki-index.php?page=Asterisk+quickstart.

I installed Asterisk on a Slackware 10.1, by using no more than make
 make install  make samples. Then I proceeded with installing
asterisk-addons and asterisk-sounds as suggested.

The thing is, soon as I get SJPhone to connect to asterisk (which
happens fine), I tried the echo service by dialing 600. Then I get:

  -- Executing Playback(SIP/julio-5ae7, demo-echotest) in new stack
  -- Playing 'demo-echotest' (language 'en')
Jul  4 14:35:42 WARNING[13521]: file.c:550 ast_readaudio_callback:
Failed to write frame
 == Spawn extension (default, 600, 1) exited non-zero on 'SIP/julio-5ae7'


On my SJPhone I can see that sound is being sent (the sound indicator
bar), but nothing is coming back to me. Then I dialed 1000, for the
congrats message: That's
what I get:

  -- Executing Goto(SIP/julio-f0ed, default|s|1) in new stack
  -- Goto (default,s,1)
  -- Executing Wait(SIP/julio-f0ed, 1) in new stack
  -- Executing Answer(SIP/julio-f0ed, ) in new stack
  -- Executing DigitTimeout(SIP/julio-f0ed, 5) in new stack
  -- Set Digit Timeout to 5
  -- Executing ResponseTimeout(SIP/julio-f0ed, 10) in new stack
  -- Set Response Timeout to 10
  -- Executing BackGround(SIP/julio-f0ed, demo-congrats) in new stack
  -- Playing 'demo-congrats' (language 'en')
Jul  4 14:37:05 WARNING[13523]: file.c:550 ast_readaudio_callback:
Failed to write frame
 == Spawn extension (default, s, 5) exited non-zero on 'SIP/julio-f0ed'


Given the error messages, I guess Asterisk is unable to write any
sound to a peer for some reason. Any ideas on why that could happen?
Thanks for any advice.


-- 
Julio C. Ody
http://rootshell.be/~julioody
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Two weeks till the Open Source Forum! - Open Source business methods

2005-07-04 Thread Pia Waugh
Hi all,

Another Open Source Forum has rolled around, this time we are looking at
sustainable Open Source business methods. We have some big names in our
space presenting how they have built a business on Open Source, and what
challenges and opportunities they have come across doing that.
 
Date -  19th July!

Find all details at http://linux.org.au/projects/forums/ and rsvp to me prior
to the date to reserve your spot. A nice lunch will be provided, so come
along and check it out.
 
We haven't planned anything for the next forum after this one, so please
drop your suggestions to me, and any other feedback on the forums.
 
Cheers,
Pia
 
-- 
Linux Australia http://linux.org.au/
 
Women hold up half the sky. - Mao Tse Tung
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] auto update squidguard/chastity

2005-07-04 Thread TongMaster
On Mon, 2005-07-04 at 07:24 -0400, Sonia Hamilton wrote:

 Does anyone know of a website that provides a dynamically updated list I
 could regularyl grab using cron.

IIRC, you setup a cron job to fetch it on a frequency that suits you
from the squidguard site. It's been 12+ months since I was last intimate
with Squid/squidguard but that's what's in the back of my sketchy
memory.

It may even be detailed in the squidguard docs/website.

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] wlan-ng with prism2_usb

2005-07-04 Thread Lindsay Holmwood

G'day all!

Firstly, a disclaimer:
Prism2_usb is the spawn of satan.

Moving on.

The commands you send to the device are long and horrible, and I find 
it's a lot easier to put all the commands in a script.


There are a lot of problems with the driver when it comes to changing 
settings once you've set them, so the first thing you need is unload and 
reload the drivers into the kernel with a:


rmmod prism2_usb
modprobe prism2_usb

Right now it'll have the driver loaded, but you won't be able to do 
anything with it. You'll need to enable the device so you can start 
sending commands to it.


wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable

So now you'll be able to tell the card what you want it to do. To 
associate with an access point with no wep:


wlanctl-ng wlan0 lnxreq_autojoin ssid=Your ssid here authtype=opensystem

To associate with an access point with wep:

wlanctl-ng wlan0 dot11req_mibset mibattribute=p2CnfRoamingMode=1
wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKeyID=0
wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11ExcludeUnencrypted=true
wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11PrivacyInvoked=true
wlanctl-ng wlan0 dot11req_mibset 
mibattribute=dot11WEPDefaultKey0=DE:AD:BE:AT:C0:FF:EE:CA:FE:CA:BB:A9:E0

wlanctl-ng wlan0 lnxreq_autojoin ssid=Your ssid here authtype=opensystem

Yes, that's right, you have to enter your WEP key in hex. I'd suggest
http://www.andrewscompanies.com/tools/wep.asp
for a quick way to convert your key to hex, unless you want to use 
deadbeatcoffeecafecabbage0.


To create an ad-hoc network:

wlanctl-ng wlan0 dot11req_start ssid=Your ssid here bsstype=independent \
dschannel=5 beaconperiod=100 dtimperiod=3 probedelay=100 \
cfpollable=false cfpollreq=false basicrate1=11 operationalrate1=11 \
basicrate2=8 operationalrate2=8 basicrate3=4 operationalrate3=4  \
basicrate4=2 operationalrate4=2

That was a long, wasn't it?

Now you know why it's so horrible. :-)

I've never tried getting stuff going with hotplug, so I don't know 
whether I can help you there. Generally I create a script for each 
network I want to associate with and then just invoke it in my 
initscripts or by hand.


I'm in the process (and have been for a while because i'm lazy) of 
writing a wrapper script similar in style to the wireless-tools 
programme iwconfig.


If I ever get it finished i'll post it here.

Lindsay


Howard Lowndes wrote:


I'm working on getting a DLink DWL122 USB wifi dongle to work.

I can get it to work when I manually type in the commands, but using 
the /etc/init.d/wlan rc script doesn't work.


I think it might have something to do with hotplug but I am not sure 
what.


Does anyone have a wlan rc script they are prepared to share other 
than the one that is in the wlan-ng package, or can offer some other 
solution, or suggest where I should be looking in hotplug.


System is FC4 with 2.6.12 kernel



--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Fwd: [SLUG] drupal distributed authentication

2005-07-04 Thread James Polley
note to self: must reply-all when you want to go to the list

-- Forwarded message --
From: James Polley [EMAIL PROTECTED]
Date: Jul 5, 2005 9:52 AM
Subject: Re: [SLUG] drupal distributed authentication
To: Conrad Parker [EMAIL PROTECTED]


I'm running drupal on my own personal site. So, I can't answer your
first question..

I'm not going to comment on resemblence between a security model and
Drupal's distributed authentication either, because I don't have the
time..

I can answer the other questions very simply though:

* The code, as provided, either allows auth from any site, or from
none. You could change this of course, the code is open...
* No, there's nothing other than relaying of plaintext passwords.

If your interested in distributed authentication, http://openid.net
looks like the best proposal I've seen so far... there's no drupal
module just yet though. Actually, there's no *anything* module just
yet, aside from a few test sites and Livejournal..

Incidentally, drupal.org is definitely up - and a new release to
address the issues in xml-rpc can be found at
http://drupal.org/drupal-4.6.2

Guess I'll be updating tonight *sigh*

On 7/4/05, Conrad Parker [EMAIL PROTECTED] wrote:
 Dear Dr. Slug,
 So, I'm after two bits of advice from anyone who's administered Drupal,
 or who can convincingly impersonate a Drupal administrator:

 1) Do you hate Drupal? Have you used it extensively and then switched
 away from it? why?

 2) How hard, or not, do you have to squint to see a resemblence between
 a security model and Drupal's distributed authentication? For example, can
 I choose not to accept authentication from certain sites? and is there
 anything other than a distributed relaying of plaintext passwords?

 cheers,

 Conrad.
 --
 SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
 Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html



--
There is nothing more worthy of contempt than a man who quote himself
in his email footer - Zhasper, 2005


-- 
There is nothing more worthy of contempt than a man who quote himself
in his email footer - Zhasper, 2005
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Templates and their manufacture.

2005-07-04 Thread Bill Bennett
As a given project (I wasn't paying attention at the time)
I have to make a template.

I thought a template was something like the preamble of the LaTeX
documents I have been preparing for years: paragraph indent, font
type, offsets etc.

Well, it is and it isn't.

The template I have been given is a GUI type that asks for
information and, when complete does something and tells you/displays
a message.

As a dedicated command line user and an equally dedicated avoider of
Microsoft, I am somewhat stuck.

Can anyone, please, suggest an application that will do what I have been
requested?

Regards,

Bill Bennett.
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


RE: [SLUG] Templates and their manufacture.

2005-07-04 Thread Rowling, Jill
HTML form?
Java app?

- Jill.

-Original Message-
From: Bill Bennett [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 5 July 2005 3:40 PM
To: slug@slug.org.au
Subject: [SLUG] Templates and their manufacture.


As a given project (I wasn't paying attention at the time)
I have to make a template.

I thought a template was something like the preamble of the LaTeX documents
I have been preparing for years: paragraph indent, font type, offsets etc.

Well, it is and it isn't.

The template I have been given is a GUI type that asks for information and,
when complete does something and tells you/displays a message.

As a dedicated command line user and an equally dedicated avoider of
Microsoft, I am somewhat stuck.

Can anyone, please, suggest an application that will do what I have been
requested?

Regards,

Bill Bennett.
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

--
IMPORTANT NOTICES
This email (including any documents referred to in, or attached, to this
email) may contain information that is personal, confidential or the subject
of copyright or other proprietary rights in favour of Aristocrat, its
affiliates or third parties. This email is intended only for the named
addressee. Any privacy, confidence, copyright or other proprietary rights in
favour of Aristocrat, its affiliates or third parties, is not lost because
this email was sent to you by mistake.

If you received this email by mistake you should: (i) not copy, disclose,
distribute or otherwise use it, or its contents, without the consent of
Aristocrat or the owner of the relevant rights; (ii) let us know of the
mistake by reply email or by telephone (+61 2 9413 6300); and (iii) delete
it from your system and destroy all copies.

Any personal information contained in this email must be handled in
accordance with applicable privacy laws.

Electronic and internet communications can be interfered with or affected by
viruses and other defects. As a result, such communications may not be
successfully received or, if received, may cause interference with the
integrity of receiving, processing or related systems (including hardware,
software and data or information on, or using, that hardware or software).
Aristocrat gives no assurances in relation to these matters.

If you have any doubts about the veracity or integrity of any electronic
communication we appear to have sent you, please call +61 2 9413 6300 for
clarification.
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Templates and their manufacture.

2005-07-04 Thread Robert Thorsby

On 2005.07.05 15:39 Bill Bennett wrote:

As a given project (I wasn't paying attention at
the time) I have to make a template.

The template I have been given is a GUI type
that asks for information and, when complete
does something and tells you/displays a message.

As a dedicated command line user and an equally
dedicated avoider of Microsoft, I am somewhat stuck.

Can anyone, please, suggest an application that
will do what I have been requested?


If it's something simple you're after, what about dialog or its 
variations (I prefer Xdialog).


HTH,

Robert Thorsby
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html