You can subscribe to this list here.
2001 |
Jan
(13) |
Feb
(24) |
Mar
(23) |
Apr
(11) |
May
(18) |
Jun
(90) |
Jul
(29) |
Aug
(26) |
Sep
(37) |
Oct
(10) |
Nov
(31) |
Dec
(11) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(45) |
Feb
(18) |
Mar
(12) |
Apr
(7) |
May
(10) |
Jun
(62) |
Jul
(8) |
Aug
(40) |
Sep
(41) |
Oct
(43) |
Nov
(29) |
Dec
(36) |
2003 |
Jan
(25) |
Feb
(9) |
Mar
(11) |
Apr
(13) |
May
(19) |
Jun
(19) |
Jul
(11) |
Aug
(4) |
Sep
(109) |
Oct
(73) |
Nov
(69) |
Dec
(21) |
2004 |
Jan
(21) |
Feb
(33) |
Mar
(31) |
Apr
(25) |
May
(33) |
Jun
(42) |
Jul
(47) |
Aug
(12) |
Sep
(41) |
Oct
(47) |
Nov
(30) |
Dec
(19) |
2005 |
Jan
(6) |
Feb
(23) |
Mar
(21) |
Apr
(26) |
May
(21) |
Jun
(16) |
Jul
(17) |
Aug
(7) |
Sep
(8) |
Oct
(13) |
Nov
(7) |
Dec
(10) |
2006 |
Jan
(10) |
Feb
(3) |
Mar
|
Apr
(2) |
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(4) |
2007 |
Jan
(2) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(1) |
Jun
(6) |
Jul
(6) |
Aug
(8) |
Sep
(3) |
Oct
(21) |
Nov
(4) |
Dec
(6) |
2008 |
Jan
(11) |
Feb
(28) |
Mar
(26) |
Apr
(9) |
May
(2) |
Jun
(10) |
Jul
(1) |
Aug
(20) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(4) |
Feb
(10) |
Mar
(1) |
Apr
(24) |
May
(22) |
Jun
(18) |
Jul
(15) |
Aug
(21) |
Sep
(4) |
Oct
(7) |
Nov
(6) |
Dec
|
2010 |
Jan
|
Feb
(2) |
Mar
(13) |
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
(4) |
Sep
(6) |
Oct
(1) |
Nov
(1) |
Dec
|
2011 |
Jan
(18) |
Feb
(2) |
Mar
(23) |
Apr
(4) |
May
(5) |
Jun
(1) |
Jul
|
Aug
|
Sep
(9) |
Oct
|
Nov
(5) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
(31) |
Apr
(3) |
May
|
Jun
(2) |
Jul
(6) |
Aug
|
Sep
|
Oct
(4) |
Nov
|
Dec
(7) |
2014 |
Jan
|
Feb
(1) |
Mar
(9) |
Apr
(4) |
May
(7) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(4) |
Dec
|
2016 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Gehrigal - W. <we...@ge...> - 2002-12-03 21:58:38
|
hi >> my $q = new CGI; >> >> my $file = $q->param("file") || &error( "No File received!"); >I know it shouldn't matter, but it seems to be a bad idea to name a >variable and a file handle the same...IMHO. Could cause confusion. There is no problem to do this... the variablename and parametername are to different things. >I would do an open as binary here, otherwise the output will always be >ascii (I think...would have to go back and do some reading on that). I think i have to use the binmode only on Windowsserver. On Unixservers this cgi function will not work. bye Alex |
From: Gehrigal - W. <we...@ge...> - 2002-12-03 21:53:32
|
hi Jamie thanks! - But when i try yourt solution i get allways this output message: "Missing Content-Disposition header" >I'm not too familiar with the CGI module, but using webmin's API you could >write : >&ReadParseMime(); >my $full_filename="$skin_dir"."/".$in{'file_name'}; >open(OUTPUT, ">$full_filename"); >print OUTPUT $in{'file'}; >close(OUTPUT); |
From: Tony S. <tsh...@ma...> - 2002-12-03 14:59:13
|
> my $q = new CGI; > > my $file = $q->param("file") || &error( "No File received!"); I know it shouldn't matter, but it seems to be a bad idea to name a variable and a file handle the same...IMHO. Could cause confusion. I would do an open as binary here, otherwise the output will always be ascii (I think...would have to go back and do some reading on that). > open(OUTPUT, ">$full_filename"); > while (read( $fh, $buffer, 512000) ){ print OUTPUT $buffer;} > close (OUTPUT); > |
From: Jamie C. <jca...@we...> - 2002-12-02 21:22:11
|
Gehrigal - Webminprojects wrote: > Hi all, > > at the moment i am working on a new module for webmin. > In this module the user should be able to upload files. > But there is a bug in my perlscripte, and so the uploaded file will be > allways 0 byte. > > ..... > my $q = new CGI; > > my $file = $q->param("file") || &error( "No File received!"); > my $file_name = $q->param("file_name") || & error ( "There was no > Filename!"); > my $fh = $q->upload("file"); > my $buffer = ""; > > > my $full_filename="$skin_dir"."/"."$file_name"; > > open(OUTPUT, ">$full_filename"); > while (read( $fh, $buffer, 512000) ){ print OUTPUT $buffer;} > close (OUTPUT); I'm not too familiar with the CGI module, but using webmin's API you could write : &ReadParseMime(); my $full_filename="$skin_dir"."/".$in{'file_name'}; open(OUTPUT, ">$full_filename"); print OUTPUT $in{'file'}; close(OUTPUT); - Jamie |
From: Gehrigal - W. <we...@ge...> - 2002-12-02 18:57:03
|
Hi all, at the moment i am working on a new module for webmin. In this module the user should be able to upload files. But there is a bug in my perlscripte, and so the uploaded file will be allways 0 byte. ..... my $q = new CGI; my $file = $q->param("file") || &error( "No File received!"); my $file_name = $q->param("file_name") || & error ( "There was no Filename!"); my $fh = $q->upload("file"); my $buffer = ""; my $full_filename="$skin_dir"."/"."$file_name"; open(OUTPUT, ">$full_filename"); while (read( $fh, $buffer, 512000) ){ print OUTPUT $buffer;} close (OUTPUT); ...... Any ideas? thx Alex |
From: paul.reilly <pau...@di...> - 2002-11-28 12:31:37
|
Have you tried http://www.webmin.com/modules.html Paul. |
From: Arunvijai <ar...@vi...> - 2002-11-28 11:33:11
|
Dear Jamie Cameron I am a New user and Developer of Webmin. I am plannig to write webmin modules for some products. i am in ambiguous state of getting the help from web. Please specify me some tutorials on building a webmin module for a product. Everyday i am searching the web to find a right tutorial. So please help me. thank you |
From: Jamie C. <jca...@we...> - 2002-11-26 22:57:00
|
Guillaume Devoyon wrote: > Hello, > i've made my own module for webmin. > When i install it, I install an classical webmin and after i install the new > repository in /usr/libexec/webmin. > I change the *.acl and all the category files in order to use mine. > I have also made under /etc an "emplacement" repository where i've put an > config file as described in the module document. > My problem is that webmin seem to not use it... > Of course, everything in the script is ok because they are working fine > under my development plateform.(for information i use the > foreign_config(module) function. > > Do i miss something in configuration file ? Any contents of the file /etc/webmin/modulename/config will be read into the global %config hash when your module calls &init_config(). Every CGI program should call that function, usually by require'ing a library that does it. Does that make things any clearer? - Jamie |
From: Guillaume D. <gui...@in...> - 2002-11-26 08:41:07
|
Hello, i've made my own module for webmin. When i install it, I install an classical webmin and after i install the new repository in /usr/libexec/webmin. I change the *.acl and all the category files in order to use mine. I have also made under /etc an "emplacement" repository where i've put an config file as described in the module document. My problem is that webmin seem to not use it... Of course, everything in the script is ok because they are working fine under my development plateform.(for information i use the foreign_config(module) function. Do i miss something in configuration file ? i use webmin 0,970 Guillaume |
From: Jamie C. <jca...@we...> - 2002-11-23 11:47:35
|
Are you running webmin 1.020 or later? The error log only came into existance in that version .. - Jamie Guillaume Devoyon wrote: > hi, > i don't have it !, i had already a look in this directory but i don't h= ave > this file, > Maybe i have to activate them ? > I saw nothing on the config file of webmin about activation of error lo= gs.. >=20 > Guillaume >=20 > -----Message d'origine----- > De : web...@li... > [mailto:web...@li...]De la part de Jamie > Cameron > Envoy=E9 : samedi 23 novembre 2002 01:07 > =C0 : web...@li... > Objet : Re: miniserv logs ? >=20 >=20 > "Guillaume Devoyon" <gui...@in...> wrote .. >=20 >>Hello, >>i would like to activate an log as "error.log" for Apache for the minis= erv >>Do you know how i can activate it ? (it must existe no ?) >=20 >=20 > There is already one .. it is at /var/webmin/miniserv.error >=20 > - Jamie |
From: Guillaume D. <gui...@in...> - 2002-11-23 10:46:39
|
hi, i don't have it !, i had already a look in this directory but i don't have this file, Maybe i have to activate them ? I saw nothing on the config file of webmin about activation of error logs.. Guillaume -----Message d'origine----- De : web...@li... [mailto:web...@li...]De la part de Jamie Cameron Envoyé : samedi 23 novembre 2002 01:07 À : web...@li... Objet : Re: miniserv logs ? "Guillaume Devoyon" <gui...@in...> wrote .. > Hello, > i would like to activate an log as "error.log" for Apache for the miniserv > Do you know how i can activate it ? (it must existe no ?) There is already one .. it is at /var/webmin/miniserv.error - Jamie |
From: Jamie C. <jca...@we...> - 2002-11-23 00:07:32
|
"Guillaume Devoyon" <gui...@in...> wrote .. > Hello, > i would like to activate an log as "error.log" for Apache for the miniserv > Do you know how i can activate it ? (it must existe no ?) There is already one .. it is at /var/webmin/miniserv.error - Jamie |
From: Guillaume D. <gui...@in...> - 2002-11-22 15:24:19
|
Hello, i would like to activate an log as "error.log" for Apache for the miniserv Do you know how i can activate it ? (it must existe no ?) Guillaume |
From: Joe C. <jo...@sw...> - 2002-11-14 19:44:55
|
There is no existing code that does this. But you could get halfway there without code...Setup anonymous group so it has permission only to use the Webmin users module. The user can then create whatever user they want with full admin permissions. This doesn't solve the problem of anonymous users still having this capability after the first such user is created. To do what you're asking requires a new module (perhaps with some small bits stripped out of the Webmin Users and Groups module). This can then be installed as the only module an anonymous user can use. And you can include self-destruction (or self-disabling) code to make it go away after a root user is created. First, I'd suggest you look at anonymous module permissions and how they work. Then write a module that does what you want to do, which you give permission to use to the anonymous group. Then instruct your users on how to get to the anonymous module (you could also hack Webmin so that it automatically goes to anonymous if no users are configured...). Any of this requires some work, and reading a lot of Webmin code. Now that I'm thinking of all that is going to go into something like this, I think I'd hire Jamie to do it for me! ;-) support wrote: > Mr. Cooper, > > which code would you recommend I look at, if I want to do this sort of > thing? > > thanks, > > Diego > > > ----- Original Message ----- > From: "Joe Cooper" > To: > Sent: Thursday, November 14, 2002 1:19 PM > Subject: Re: webmin login? > > > > >If I wanted to accomplish something like this, I would start with an > >anonymous module, which only has the ability to create a root user once > >and then converts itself to non-anonymous or simply removes itself. Be > >careful with this sort of thing, though...it is asking for security > holes. > > > >support wrote: > > > > > >>howdy, > >> > >>I was wondering if the webmin login page can be disabled once. > >> > >>what i would like to do... > >> > >>For example, the first time webmin is used you go directly into webmin > >>menu, > >>then the user can go into "create account" menu and setup "login and > >>password"... > >> > >>then after the "root' account is created, all cookies, etc.. from the > >>login > >>page are enabled... > >> > >>thanks, > >> > >>diego -- Joe Cooper <jo...@sw...> Web caching appliances and support. http://www.swelltech.com |
From: support <su...@ea...> - 2002-11-14 19:25:11
|
Mr. Cooper, which code would you recommend I look at, if I want to do this sort of thing? thanks, Diego ----- Original Message ----- From: "Joe Cooper" <jo...@sw...> To: <web...@li...> Sent: Thursday, November 14, 2002 1:19 PM Subject: Re: webmin login? > If I wanted to accomplish something like this, I would start with an > anonymous module, which only has the ability to create a root user once > and then converts itself to non-anonymous or simply removes itself. Be > careful with this sort of thing, though...it is asking for security holes. > > support wrote: > > > howdy, > > > > I was wondering if the webmin login page can be disabled once. > > > > what i would like to do... > > > > For example, the first time webmin is used you go directly into webmin > > menu, > > then the user can go into "create account" menu and setup "login and > > password"... > > > > then after the "root' account is created, all cookies, etc.. from the > > login > > page are enabled... > > > > thanks, > > > > diego > > > > > > > > > > ----- Original Message ----- > > From: "Jamie Cameron" > > To: > > Sent: Wednesday, November 13, 2002 4:39 PM > > Subject: Re: (no subject) > > > > > > > > >pau...@di... wrote .. > > > > > >>When writing a webmin theme, is it possible to use this theme to force > > >>webmin > > >>to use a different login page ?? > > > > > >Yes - you could create your own version of session_login.cgi in your > > >theme's directory that is a modified version of the one in the webmin > > root > > >directory. Just make sure that it does all the same things with cookies > > >as the original does, and outputs a login form with the same fields. > > > > > > - Jamie > > > > > > > > > --- > > [This E-mail scanned for viruses by Declude Virus] > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by: To learn the basics of securing > > your web site with SSL, click here to get a FREE TRIAL of a Thawte > > Server Certificate: http://www.gothawte.com/rd524.html > > - > > Forwarded by the Webmin development list at web...@we... > > To remove yourself from this list, go to > > http://lists.sourceforge.net/lists/listinfo/webadmin-devel > > > > -- > Joe Cooper <jo...@sw...> > Web caching appliances and support. > http://www.swelltech.com > > > > ------------------------------------------------------- > This sf.net email is sponsored by: To learn the basics of securing > your web site with SSL, click here to get a FREE TRIAL of a Thawte > Server Certificate: http://www.gothawte.com/rd524.html > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel > --- > [This E-mail scanned for viruses by Declude Virus] > > --- [This E-mail scanned for viruses by Declude Virus] |
From: Joe C. <jo...@sw...> - 2002-11-14 19:19:14
|
If I wanted to accomplish something like this, I would start with an anonymous module, which only has the ability to create a root user once and then converts itself to non-anonymous or simply removes itself. Be careful with this sort of thing, though...it is asking for security holes. support wrote: > howdy, > > I was wondering if the webmin login page can be disabled once. > > what i would like to do... > > For example, the first time webmin is used you go directly into webmin > menu, > then the user can go into "create account" menu and setup "login and > password"... > > then after the "root' account is created, all cookies, etc.. from the > login > page are enabled... > > thanks, > > diego > > > > > ----- Original Message ----- > From: "Jamie Cameron" > To: > Sent: Wednesday, November 13, 2002 4:39 PM > Subject: Re: (no subject) > > > > >pau...@di... wrote .. > > > >>When writing a webmin theme, is it possible to use this theme to force > >>webmin > >>to use a different login page ?? > > > >Yes - you could create your own version of session_login.cgi in your > >theme's directory that is a modified version of the one in the webmin > root > >directory. Just make sure that it does all the same things with cookies > >as the original does, and outputs a login form with the same fields. > > > > - Jamie > > > > > --- > [This E-mail scanned for viruses by Declude Virus] > > > > ------------------------------------------------------- > This sf.net email is sponsored by: To learn the basics of securing > your web site with SSL, click here to get a FREE TRIAL of a Thawte > Server Certificate: http://www.gothawte.com/rd524.html > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel -- Joe Cooper <jo...@sw...> Web caching appliances and support. http://www.swelltech.com |
From: support <su...@ea...> - 2002-11-14 19:00:59
|
howdy, I was wondering if the webmin login page can be disabled once. what i would like to do... For example, the first time webmin is used you go directly into webmin menu, then the user can go into "create account" menu and setup "login and password"... then after the "root' account is created, all cookies, etc.. from the login page are enabled... thanks, diego ----- Original Message ----- From: "Jamie Cameron" <jca...@we...> To: <web...@li...> Sent: Wednesday, November 13, 2002 4:39 PM Subject: Re: (no subject) > pau...@di... wrote .. > > When writing a webmin theme, is it possible to use this theme to force > > webmin > > to use a different login page ?? > > Yes - you could create your own version of session_login.cgi in your > theme's directory that is a modified version of the one in the webmin root > directory. Just make sure that it does all the same things with cookies > as the original does, and outputs a login form with the same fields. > > - Jamie > --- [This E-mail scanned for viruses by Declude Virus] |
From: Jamie C. <jca...@we...> - 2002-11-13 22:39:53
|
pau...@di... wrote .. > When writing a webmin theme, is it possible to use this theme to force > webmin > to use a different login page ?? Yes - you could create your own version of session_login.cgi in your theme's directory that is a modified version of the one in the webmin root directory. Just make sure that it does all the same things with cookies as the original does, and outputs a login form with the same fields. - Jamie |
From: <pau...@di...> - 2002-11-13 12:00:09
|
When writing a webmin theme, is it possible to use this theme to force webmin to use a different login page ?? Thanks, Paul. |
From: <pau...@di...> - 2002-11-13 11:49:33
|
When writing a new Webmin theme, is is possible to change the login page also ?? Thanks, Paul. |
From: Garrison, M. <Mar...@pb...> - 2002-11-07 20:39:37
|
Actually the ppp module (under serial port configuration) set that up correctly, it put in the following line: 2:2345:respawn:/usr/local/sbin/mgetty /dev/term/a in order for the module to find mgetty I had to add /usr/local/sbin to the path in /etc/webmin/config -------------------------------------------------------------------- Thanks for the info .. I will change the module to use those /dev/term/* devices on Solaris. One question by the way - what did you put in your /etc/inittab file to get mgetty to run on Solaris? - Jamie |
From: Jamie C. <jca...@we...> - 2002-11-07 01:45:43
|
Thanks for the info .. I will change the module to use those /dev/term/* devices on Solaris. One question by the way - what did you put in your /etc/inittab file to get mgetty to run on Solaris? - Jamie Garrison, Mark wrote: > One change in the perl that I had to make to get thinks working for mgetty > configuration was to change a few regexp's (or is that regex's?) for the > serial device. The module assumes that the serial device is /dev/ttyS*, on > solaris it is /dev/term/* (I use /dev/term/a). I had forgotten about those > mods when I sent the first message. > > -----Original Message----- > From: Garrison, Mark > Sent: Monday, November 04, 2002 3:48 PM > To: 'web...@li...' > Subject: PPP module for Solaris > > > I've enabled the PPP module for Solaris 8 on a SunBlade 100 and it works > fine, can we get that enabled in the distribution. I used pppd 2.3.11 and > mgetty 1.0.0. Here's my config-solaris settings: > > pap_file=/etc/ppp/pap-secrets > ppp_options=/etc/ppp/options > encrypt_pass=1 > dialin_config=/usr/local/etc/mgetty+sendfax/dialin.config > login_config=/usr/local/etc/mgetty+sendfax/login.config > > > ------------------------------------------------------- > This sf.net email is sponsored by: See the NEW Palm > Tungsten T handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel > > |
From: Garrison, M. <Mar...@pb...> - 2002-11-06 16:27:30
|
One change in the perl that I had to make to get thinks working for mgetty configuration was to change a few regexp's (or is that regex's?) for the serial device. The module assumes that the serial device is /dev/ttyS*, on solaris it is /dev/term/* (I use /dev/term/a). I had forgotten about those mods when I sent the first message. -----Original Message----- From: Garrison, Mark Sent: Monday, November 04, 2002 3:48 PM To: 'web...@li...' Subject: PPP module for Solaris I've enabled the PPP module for Solaris 8 on a SunBlade 100 and it works fine, can we get that enabled in the distribution. I used pppd 2.3.11 and mgetty 1.0.0. Here's my config-solaris settings: pap_file=/etc/ppp/pap-secrets ppp_options=/etc/ppp/options encrypt_pass=1 dialin_config=/usr/local/etc/mgetty+sendfax/dialin.config login_config=/usr/local/etc/mgetty+sendfax/login.config |
From: Jamie C. <jca...@we...> - 2002-11-04 23:40:01
|
"Garrison, Mark" <Mar...@pb...> wrote .. > I've enabled the PPP module for Solaris 8 on a SunBlade 100 and it works > fine, can we get that enabled in the distribution. I used pppd 2.3.11 > and > mgetty 1.0.0. Here's my config-solaris settings: > > pap_file=/etc/ppp/pap-secrets > ppp_options=/etc/ppp/options > encrypt_pass=1 > dialin_config=/usr/local/etc/mgetty+sendfax/dialin.config > login_config=/usr/local/etc/mgetty+sendfax/login.config Thanks for the info .. I will use your config to have to module support Solaris in the next release. - Jamie |
From: Garrison, M. <Mar...@pb...> - 2002-11-04 20:47:55
|
I've enabled the PPP module for Solaris 8 on a SunBlade 100 and it works fine, can we get that enabled in the distribution. I used pppd 2.3.11 and mgetty 1.0.0. Here's my config-solaris settings: pap_file=/etc/ppp/pap-secrets ppp_options=/etc/ppp/options encrypt_pass=1 dialin_config=/usr/local/etc/mgetty+sendfax/dialin.config login_config=/usr/local/etc/mgetty+sendfax/login.config |