Report forwarded to debian-bugs-dist@lists.debian.org, James Treacy and others <debian-www@lists.debian.org>:
Bug#78526; Package www.debian.org.   debian-bugs-dist@lists.debian.orgJames Treacy and others  Subject: Bug#78526: www.debian.org: Add a WWW frontend to the BTS Reply-To: Javier Fernandez-Sanguino Pena , 78526@bugs.debian.org Resent-From: Javier Fernandez-Sanguino Pena Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: James Treacy and others Resent-Date: Fri, 01 Dec 2000 19:33:17 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by bugs@bugs.debian.org id=B.9756987144314 (code B ref -1); Fri, 01 Dec 2000 19:33:17 GMT Date: 1 Dec 2000 19:25:11 -0000 Message-ID: <20001201192511.21176.qmail@avalon.dat.etsit.upm.es> From: Javier Fernandez-Sanguino Pena To: submit@bugs.debian.org X-Mailer: bug 3.2.10 Delivered-To: submit@bugs.debian.org Package: www.debian.org Version: 20001201 Severity: wishlist (as sent to the debian-www mailing list) Even though we currently have 'bug' and 'reportbug' as a way to easily make users send bugs to the BTS, having dinner with other Debian developers (or wannabes) in the last Hispalinux Congress in Madrid, Spain, one of the people present (Jaime Villate) made the following, and interesting, proposition. Users tend to view the use of mail like a personal tool, whileas they are used to see the web as a way to communicate with other companies through form submission. Debian does not have a WWW interface to file bugs, should it be made? Some might think that if we used cgi posts (or whatever form available) the BTS would not be able to track the user that sent the BTS and could lead to spam in the BTS, or unavailability to track the problems further (since developers could not ask for more information)... then comes the inspiration: use ACTION=mailto:XXX@bugs.debian.org We could program a daemon (or even add this functionality to submit@bugs) that would receive the information sent by the user in the following form: package=XXXX&version=XXX&priority=XVASDFA&description=ASFasdlfjalfj and resend it with the nice: Package: Version: Priority: (description) That we all love :) and keeping the user's email in the bug. The user would receive (by email) the notification of the opening of the bug and further changes. Since currently many browsers have built in mail capabilities if properly configured and users use them at the same time, this might not seem a bad idea. Is it? I would love to see discussion on this issue and maybe help with the implementation (with a little help of Perl :) So, what do other developers think? Best regards Javi Proof of concept: HTML form -> (user sends email) -> automatic gatherer ---------->BTS (like deb-test.html) (parse_email | parse_query ) deb-test.html
Package:
Version:
Priority:
Description:
parse_email #!/usr/bin/perl # Reads a mail from stdin and calls another script #$debug=1; $query_started = 0; while ($line=) { chmop; if ( $line =~ /^From\s+/ ) { parsemail() if $query_started; print "Receiving an email\n" if $debug; $e_mail = ""; $query = ""; $query_started = 0; } $e_mail=$1 if $line =~ /^From: (.*)$/; $query = $query.$line if $query_started; $query_started = 1 if $line =~ /^$/; } parsemail() if $query_started; exit 0; sub parsemail { print "Now will call script with:\n" if $debug; print "e-mail: $e_mail\n" if $debug; print "query: $query\n" if $debug; if ($pid=fork) { waitpid($pid,0) } else { die "cannot fork: $!" unless defined $pid; $return=`./parse_query.pl -m $e_mail "$query"`; exit; } return 0; } parsequery.pl #!/usr/bin/perl # Receive a QUERY_STRING from the command line (as ARGV) and print contents # can be used with script that reads on stdin mails and calls this one with # the available options use Getopt::Std; use CGI::Request; # Retrieve options from command line getopts('m:'); $e_mail = $opt_m; $SENDTO = ""; # put a valid email here (for example submit@bugs.debian.org) # read to environment # process it #CGI::Request::Debug(0); $req= new CGI::Request; @names = $req->params; open (MAIL,"| mail $SENDTO") or die ("Could not send mail: $!"); # TODO: send as if sent by the original user foreach $name (@names) { @values = $req->param($name); foreach $value (@values) { print MAIL "\t$value\n"; } } close MAIL; exit 0; -- System Information Debian Release: 2.2 Kernel Version: Linux avalon 2.2.14 #3 jue feb 17 11:56:30 CET 2000 i686 unknown   Acknowledgement sent to Javier Fernandez-Sanguino Pena <jfs@dat.etsit.upm.es>:
New Bug report received and forwarded. Copy sent to James Treacy and others <debian-www@lists.debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Javier Fernandez-Sanguino Pena Subject: Bug#78526: Acknowledgement (www.debian.org: Add a WWW frontend to the BTS) Message-ID: In-Reply-To: <20001201192511.21176.qmail@avalon.dat.etsit.upm.es> References: <20001201192511.21176.qmail@avalon.dat.etsit.upm.es> X-Debian-PR-Message: ack 78526 Thank you for the problem report you have sent regarding Debian. This is an automatically generated reply, to let you know your message has been received. It is being forwarded to the developers mailing list for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): James Treacy and others If you wish to submit further information on your problem, please send it to 78526@bugs.debian.org (and *not* to bugs@bugs.debian.org). Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at submit) by bugs.debian.org; 1 Dec 2000 19:25:14 +0000 From jfs@dat.etsit.upm.es Fri Dec 01 13:25:14 2000 Return-path: Received: from buzz.etsit.upm.es [138.100.17.60] (qmailr) by master.debian.org with smtp (Exim 3.12 1 (Debian)) id 141vo2-00017N-00; Fri, 01 Dec 2000 13:25:14 -0600 Received: (qmail 21488 invoked from network); 1 Dec 2000 19:25:12 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 1 Dec 2000 19:25:12 -0000 Received: (qmail 21485 invoked from network); 1 Dec 2000 19:25:12 -0000 Received: from avalon.dat.etsit.upm.es (138.100.17.15) by buzz.etsit.upm.es with SMTP; 1 Dec 2000 19:25:12 -0000 Received: (qmail 21177 invoked by uid 1013); 1 Dec 2000 19:25:11 -0000 Date: 1 Dec 2000 19:25:11 -0000 Message-ID: <20001201192511.21176.qmail@avalon.dat.etsit.upm.es> From: Javier Fernandez-Sanguino Pena Subject: www.debian.org: Add a WWW frontend to the BTS To: submit@bugs.debian.org X-Mailer: bug 3.2.10 Delivered-To: submit@bugs.debian.org Package: www.debian.org Version: 20001201 Severity: wishlist (as sent to the debian-www mailing list) Even though we currently have 'bug' and 'reportbug' as a way to easily make users send bugs to the BTS, having dinner with other Debian developers (or wannabes) in the last Hispalinux Congress in Madrid, Spain, one of the people present (Jaime Villate) made the following, and interesting, proposition. Users tend to view the use of mail like a personal tool, whileas they are used to see the web as a way to communicate with other companies through form submission. Debian does not have a WWW interface to file bugs, should it be made? Some might think that if we used cgi posts (or whatever form available) the BTS would not be able to track the user that sent the BTS and could lead to spam in the BTS, or unavailability to track the problems further (since developers could not ask for more information)... then comes the inspiration: use ACTION=mailto:XXX@bugs.debian.org We could program a daemon (or even add this functionality to submit@bugs) that would receive the information sent by the user in the following form: package=XXXX&version=XXX&priority=XVASDFA&description=ASFasdlfjalfj and resend it with the nice: Package: Version: Priority: (description) That we all love :) and keeping the user's email in the bug. The user would receive (by email) the notification of the opening of the bug and further changes. Since currently many browsers have built in mail capabilities if properly configured and users use them at the same time, this might not seem a bad idea. Is it? I would love to see discussion on this issue and maybe help with the implementation (with a little help of Perl :) So, what do other developers think? Best regards Javi Proof of concept: HTML form -> (user sends email) -> automatic gatherer ---------->BTS (like deb-test.html) (parse_email | parse_query ) deb-test.html
Package:
Version:
Priority:
Description:
parse_email #!/usr/bin/perl # Reads a mail from stdin and calls another script #$debug=1; $query_started = 0; while ($line=) { chmop; if ( $line =~ /^From\s+/ ) { parsemail() if $query_started; print "Receiving an email\n" if $debug; $e_mail = ""; $query = ""; $query_started = 0; } $e_mail=$1 if $line =~ /^From: (.*)$/; $query = $query.$line if $query_started; $query_started = 1 if $line =~ /^$/; } parsemail() if $query_started; exit 0; sub parsemail { print "Now will call script with:\n" if $debug; print "e-mail: $e_mail\n" if $debug; print "query: $query\n" if $debug; if ($pid=fork) { waitpid($pid,0) } else { die "cannot fork: $!" unless defined $pid; $return=`./parse_query.pl -m $e_mail "$query"`; exit; } return 0; } parsequery.pl #!/usr/bin/perl # Receive a QUERY_STRING from the command line (as ARGV) and print contents # can be used with script that reads on stdin mails and calls this one with # the available options use Getopt::Std; use CGI::Request; # Retrieve options from command line getopts('m:'); $e_mail = $opt_m; $SENDTO = ""; # put a valid email here (for example submit@bugs.debian.org) # read to environment # process it #CGI::Request::Debug(0); $req= new CGI::Request; @names = $req->params; open (MAIL,"| mail $SENDTO") or die ("Could not send mail: $!"); # TODO: send as if sent by the original user foreach $name (@names) { @values = $req->param($name); foreach $value (@values) { print MAIL "\t$value\n"; } } close MAIL; exit 0; -- System Information Debian Release: 2.2 Kernel Version: Linux avalon 2.2.14 #3 jue feb 17 11:56:30 CET 2000 i686 unknown   Information forwarded to debian-bugs-dist@lists.debian.org, James Treacy and others <debian-www@lists.debian.org>:
Bug#78526; Package www.debian.org.   debian-bugs-dist@lists.debian.orgJames Treacy and others  Subject: Bug#78526: Use Freeradius BTS frontend Reply-To: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= , 78526@bugs.debian.org Resent-From: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: James Treacy and others Resent-Date: Fri, 05 Jan 2001 17:33:08 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by 78526-bugs@bugs.debian.org id=B78526.9787157437541 (code B ref 78526); Fri, 05 Jan 2001 17:33:08 GMT Date: Fri, 5 Jan 2001 18:29:00 +0100 From: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= To: 78526@bugs.debian.org Message-ID: <20010105182900.A1581@dat.etsit.upm.es> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0.1i Delivered-To: 78526@bugs.debian.org The Freeradius project (more specifically Chad Miller) have developed a WWW fronted to its own BTS as proposed in this bug report. It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug Please, I do think this idea is quite interesting (although I would use the browser's MUA capabilities in the last step) and think we could use this same code (ask Chad Miller for it) Regards Javi   Acknowledgement sent to =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= <jfs@computer.org>:
Extra info received and forwarded to list. Copy sent to James Treacy and others <debian-www@lists.debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= Subject: Bug#78526: Info received (was Use Freeradius BTS frontend) Message-ID: In-Reply-To: <20010105182900.A1581@dat.etsit.upm.es> References: <20010105182900.A1581@dat.etsit.upm.es> X-Debian-PR-Message: ack-info-maintonly 78526 Thank you for the additional information you have supplied regarding this problem report. It has been forwarded to the developer(s) and to the developers mailing list to accompany the original report. Your message has been sent to the package maintainer(s): James Treacy and others If you wish to continue to submit further information on your problem, please send it to 78526@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at 78526) by bugs.debian.org; 5 Jan 2001 17:29:03 +0000 From jfs@dat.etsit.upm.es Fri Jan 05 11:29:03 2001 Return-path: Received: from buzz.etsit.upm.es [138.100.17.60] (qmailr) by master.debian.org with smtp (Exim 3.12 1 (Debian)) id 14Eafn-0001x4-00; Fri, 05 Jan 2001 11:29:03 -0600 Received: (qmail 681 invoked from network); 5 Jan 2001 17:29:00 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 5 Jan 2001 17:29:00 -0000 Received: (qmail 678 invoked from network); 5 Jan 2001 17:29:00 -0000 Received: from avalon.dat.etsit.upm.es (138.100.17.15) by buzz.etsit.upm.es with SMTP; 5 Jan 2001 17:29:00 -0000 Received: (qmail 1656 invoked by uid 1013); 5 Jan 2001 17:29:00 -0000 Date: Fri, 5 Jan 2001 18:29:00 +0100 From: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= To: 78526@bugs.debian.org Subject: Use Freeradius BTS frontend Message-ID: <20010105182900.A1581@dat.etsit.upm.es> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0.1i Delivered-To: 78526@bugs.debian.org The Freeradius project (more specifically Chad Miller) have developed a WWW fronted to its own BTS as proposed in this bug report. It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug Please, I do think this idea is quite interesting (although I would use the browser's MUA capabilities in the last step) and think we could use this same code (ask Chad Miller for it) Regards Javi   Information forwarded to debian-bugs-dist@lists.debian.org, James Treacy and others <debian-www@lists.debian.org>:
Bug#78526; Package www.debian.org.   debian-bugs-dist@lists.debian.orgJames Treacy and others  Subject: Bug#78526: Use Freeradius BTS frontend Reply-To: Josip Rodin , 78526@bugs.debian.org Resent-From: Josip Rodin Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: James Treacy and others Resent-Date: Fri, 05 Jan 2001 21:03:02 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by 78526-bugs@bugs.debian.org id=B78526.97872798415015 (code B ref 78526); Fri, 05 Jan 2001 21:03:02 GMT Date: Fri, 5 Jan 2001 21:53:07 +0100 To: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= , 78526@bugs.debian.org Message-ID: <20010105215306.C16901@cibalia.gkvk.hr> References: <20010105182900.A1581@dat.etsit.upm.es> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20010105182900.A1581@dat.etsit.upm.es>; from jfs@computer.org on Fri, Jan 05, 2001 at 06:29:00PM +0100 From: Josip Rodin Delivered-To: 78526@bugs.debian.org On Fri, Jan 05, 2001 at 06:29:00PM +0100, Javier Fernández-Sanguino Peña wrote: > The Freeradius project (more specifically Chad Miller) have > developed a WWW fronted to its own BTS as proposed in this bug report. > It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug > > Please, I do think this idea is quite interesting (although I > would use the browser's MUA capabilities in the last step) and think we > could use this same code (ask Chad Miller for it) I'm not sure about the exact reason why we don't have our own web form to submit bugs, but I think it must be on purpose because nothing has been done OTOH maybe it's just laziness or fear not to break anything? :) -- Digital Electronic Being Intended for Assassination and Nullification   Acknowledgement sent to Josip Rodin <joy@cibalia.gkvk.hr>:
Extra info received and forwarded to list. Copy sent to James Treacy and others <debian-www@lists.debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Josip Rodin Subject: Bug#78526: Info received (was Bug#78526: Use Freeradius BTS frontend) Message-ID: In-Reply-To: <20010105215306.C16901@cibalia.gkvk.hr> References: <20010105215306.C16901@cibalia.gkvk.hr> X-Debian-PR-Message: ack-info-maintonly 78526 Thank you for the additional information you have supplied regarding this problem report. It has been forwarded to the developer(s) and to the developers mailing list to accompany the original report. Your message has been sent to the package maintainer(s): James Treacy and others If you wish to continue to submit further information on your problem, please send it to 78526@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at 78526) by bugs.debian.org; 5 Jan 2001 20:53:04 +0000 From joy@cibalia.gkvk.hr Fri Jan 05 14:53:04 2001 Return-path: Received: from cibalia.gkvk.hr [161.53.211.3] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 14EdrD-0003u3-00; Fri, 05 Jan 2001 14:53:03 -0600 Received: from joy by cibalia.gkvk.hr with local (Exim 3.12 #1 (Debian)) id 14EdrH-0004Tm-00; Fri, 05 Jan 2001 21:53:07 +0100 Date: Fri, 5 Jan 2001 21:53:07 +0100 To: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= , 78526@bugs.debian.org Subject: Re: Bug#78526: Use Freeradius BTS frontend Message-ID: <20010105215306.C16901@cibalia.gkvk.hr> References: <20010105182900.A1581@dat.etsit.upm.es> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20010105182900.A1581@dat.etsit.upm.es>; from jfs@computer.org on Fri, Jan 05, 2001 at 06:29:00PM +0100 From: Josip Rodin Delivered-To: 78526@bugs.debian.org On Fri, Jan 05, 2001 at 06:29:00PM +0100, Javier Fernández-Sanguino Peña wrote: > The Freeradius project (more specifically Chad Miller) have > developed a WWW fronted to its own BTS as proposed in this bug report. > It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug > > Please, I do think this idea is quite interesting (although I > would use the browser's MUA capabilities in the last step) and think we > could use this same code (ask Chad Miller for it) I'm not sure about the exact reason why we don't have our own web form to submit bugs, but I think it must be on purpose because nothing has been done OTOH maybe it's just laziness or fear not to break anything? :) -- Digital Electronic Being Intended for Assassination and Nullification   Information forwarded to debian-bugs-dist@lists.debian.org, James Treacy and others <debian-www@lists.debian.org>:
Bug#78526; Package www.debian.org.   debian-bugs-dist@lists.debian.orgJames Treacy and others  Subject: Bug#78526: Use Freeradius BTS frontend Reply-To: Javier Fernandez-Sanguino =?iso-8859-1?Q?Pe=F1a?= , 78526@bugs.debian.org Resent-From: Javier Fernandez-Sanguino =?iso-8859-1?Q?Pe=F1a?= Orignal-Sender: jfsp@esegi.es Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: James Treacy and others Resent-Date: Tue, 09 Jan 2001 15:04:36 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by 78526-bugs@bugs.debian.org id=B78526.97905209824163 (code B ref 78526); Tue, 09 Jan 2001 15:04:36 GMT Sender: jfsp@esegi.es Message-ID: <3A5B356A.BDFA5ADF@sgi.es> Date: Tue, 09 Jan 2001 16:59:38 +0100 From: Javier Fernandez-Sanguino =?iso-8859-1?Q?Pe=F1a?= Organization: SGI GMV X-Mailer: Mozilla 4.75 [es] (X11; U; Linux 2.2.17 i686) X-Accept-Language: es, en MIME-Version: 1.0 To: Josip Rodin CC: Javier =?iso-8859-1?Q?Fern=E1ndez=2DSanguino=20Pe=F1a?= , 78526@bugs.debian.org References: <20010105182900.A1581@dat.etsit.upm.es> <20010105215306.C16901@cibalia.gkvk.hr> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Delivered-To: 78526@bugs.debian.org How about discussing this on debian-www? I tried but nobody said anything, and after a few attempts I dismissed it (and openened the bug report). Nobody said anything about it being a problem. Regads Javi Josip Rodin escribió: > > On Fri, Jan 05, 2001 at 06:29:00PM +0100, Javier Fernández-Sanguino Peña wrote: > > The Freeradius project (more specifically Chad Miller) have > > developed a WWW fronted to its own BTS as proposed in this bug report. > > It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug > > > > Please, I do think this idea is quite interesting (although I > > would use the browser's MUA capabilities in the last step) and think we > > could use this same code (ask Chad Miller for it) > > I'm not sure about the exact reason why we don't have our own web form to > submit bugs, but I think it must be on purpose because nothing has been > done OTOH maybe it's just laziness or fear not to break anything? :) >   Acknowledgement sent to Javier Fernandez-Sanguino =?iso-8859-1?Q?Pe=F1a?= <jfernandez@sgi.es>:
Extra info received and forwarded to list. Copy sent to James Treacy and others <debian-www@lists.debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Javier Fernandez-Sanguino =?iso-8859-1?Q?Pe=F1a?= Subject: Bug#78526: Info received (was Bug#78526: Use Freeradius BTS frontend) Message-ID: In-Reply-To: <3A5B356A.BDFA5ADF@sgi.es> References: <3A5B356A.BDFA5ADF@sgi.es> X-Debian-PR-Message: ack-info-maintonly 78526 Thank you for the additional information you have supplied regarding this problem report. It has been forwarded to the developer(s) and to the developers mailing list to accompany the original report. Your message has been sent to the package maintainer(s): James Treacy and others If you wish to continue to submit further information on your problem, please send it to 78526@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at 78526) by bugs.debian.org; 9 Jan 2001 14:54:58 +0000 From jfernandez@sgi.es Tue Jan 09 08:54:57 2001 Return-path: Received: from caronte.gmv.es [195.235.177.2] (firewall-user) by master.debian.org with smtp (Exim 3.12 1 (Debian)) id 14G0Ar-0006GU-00; Tue, 09 Jan 2001 08:54:57 -0600 Received: by caronte.gmv.es; id PAA06389; Tue, 9 Jan 2001 15:54:46 +0100 Received: from unknown(192.168.18.16) by caronte.gmv.es via smap (V5.5) id xma006188; Tue, 9 Jan 01 15:54:35 +0100 Received: from sgi.es (pcjfsp.esegi.es [192.168.18.207]) by esegi.es (8.9.1b+Sun/8.9.1) with ESMTP id PAA08203; Tue, 9 Jan 2001 15:55:28 +0100 (MET) Sender: jfsp@esegi.es Message-ID: <3A5B356A.BDFA5ADF@sgi.es> Date: Tue, 09 Jan 2001 16:59:38 +0100 From: Javier Fernandez-Sanguino =?iso-8859-1?Q?Pe=F1a?= Organization: SGI GMV X-Mailer: Mozilla 4.75 [es] (X11; U; Linux 2.2.17 i686) X-Accept-Language: es, en MIME-Version: 1.0 To: Josip Rodin CC: Javier =?iso-8859-1?Q?Fern=E1ndez=2DSanguino=20Pe=F1a?= , 78526@bugs.debian.org Subject: Re: Bug#78526: Use Freeradius BTS frontend References: <20010105182900.A1581@dat.etsit.upm.es> <20010105215306.C16901@cibalia.gkvk.hr> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Delivered-To: 78526@bugs.debian.org How about discussing this on debian-www? I tried but nobody said anything, and after a few attempts I dismissed it (and openened the bug report). Nobody said anything about it being a problem. Regads Javi Josip Rodin escribió: > > On Fri, Jan 05, 2001 at 06:29:00PM +0100, Javier Fernández-Sanguino Peña wrote: > > The Freeradius project (more specifically Chad Miller) have > > developed a WWW fronted to its own BTS as proposed in this bug report. > > It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug > > > > Please, I do think this idea is quite interesting (although I > > would use the browser's MUA capabilities in the last step) and think we > > could use this same code (ask Chad Miller for it) > > I'm not sure about the exact reason why we don't have our own web form to > submit bugs, but I think it must be on purpose because nothing has been > done OTOH maybe it's just laziness or fear not to break anything? :) >   Information forwarded to debian-bugs-dist@lists.debian.org, James Treacy and others <debian-www@lists.debian.org>:
Bug#78526; Package www.debian.org.   debian-bugs-dist@lists.debian.orgJames Treacy and others  Subject: Bug#78526: Use Freeradius BTS frontend Reply-To: Josip Rodin , 78526@bugs.debian.org Resent-From: Josip Rodin Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: James Treacy and others Resent-Date: Sun, 14 Jan 2001 18:35:52 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by 78526-bugs@bugs.debian.org id=B78526.97949607813310 (code B ref 78526); Sun, 14 Jan 2001 18:35:52 GMT Date: Sun, 14 Jan 2001 19:14:53 +0100 To: =?iso-8859-1?Q?Javier_Fernandez-Sanguino_Pe=F1a?= Cc: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= , 78526@bugs.debian.org Message-ID: <20010114191453.B9310@cibalia.gkvk.hr> References: <20010105182900.A1581@dat.etsit.upm.es> <20010105215306.C16901@cibalia.gkvk.hr> <3A5B356A.BDFA5ADF@sgi.es> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <3A5B356A.BDFA5ADF@sgi.es>; from jfernandez@sgi.es on Tue, Jan 09, 2001 at 04:59:38PM +0100 From: Josip Rodin Delivered-To: 78526@bugs.debian.org On Tue, Jan 09, 2001 at 04:59:38PM +0100, Javier Fernandez-Sanguino Peña wrote: > > > The Freeradius project (more specifically Chad Miller) have > > > developed a WWW fronted to its own BTS as proposed in this bug report. > > > It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug > > > > > > Please, I do think this idea is quite interesting (although I > > > would use the browser's MUA capabilities in the last step) and think we > > > could use this same code (ask Chad Miller for it) > > > > I'm not sure about the exact reason why we don't have our own web form to > > submit bugs, but I think it must be on purpose because nothing has been > > done OTOH maybe it's just laziness or fear not to break anything? :) > > How about discussing this on debian-www? I tried but nobody said > anything, and after a few attempts I dismissed it (and openened the bug > report). Nobody said anything about it being a problem. This _is_ debian-www, the list is the maintainer for the www.debian.org pseudo-package :) -- Digital Electronic Being Intended for Assassination and Nullification   Acknowledgement sent to Josip Rodin <joy@cibalia.gkvk.hr>:
Extra info received and forwarded to list. Copy sent to James Treacy and others <debian-www@lists.debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Josip Rodin Subject: Bug#78526: Info received (was Bug#78526: Use Freeradius BTS frontend) Message-ID: In-Reply-To: <20010114191453.B9310@cibalia.gkvk.hr> References: <20010114191453.B9310@cibalia.gkvk.hr> X-Debian-PR-Message: ack-info-maintonly 78526 Thank you for the additional information you have supplied regarding this problem report. It has been forwarded to the developer(s) and to the developers mailing list to accompany the original report. Your message has been sent to the package maintainer(s): James Treacy and others If you wish to continue to submit further information on your problem, please send it to 78526@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at 78526) by bugs.debian.org; 14 Jan 2001 18:14:38 +0000 From joy@cibalia.gkvk.hr Sun Jan 14 12:14:37 2001 Return-path: Received: from cibalia.gkvk.hr [161.53.211.3] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 14Hrfp-0003SL-00; Sun, 14 Jan 2001 12:14:37 -0600 Received: from joy by cibalia.gkvk.hr with local (Exim 3.12 #1 (Debian)) id 14Hrg5-0002Th-00; Sun, 14 Jan 2001 19:14:53 +0100 Date: Sun, 14 Jan 2001 19:14:53 +0100 To: =?iso-8859-1?Q?Javier_Fernandez-Sanguino_Pe=F1a?= Cc: =?iso-8859-1?Q?Javier_Fern=E1ndez-Sanguino_Pe=F1a?= , 78526@bugs.debian.org Subject: Re: Bug#78526: Use Freeradius BTS frontend Message-ID: <20010114191453.B9310@cibalia.gkvk.hr> References: <20010105182900.A1581@dat.etsit.upm.es> <20010105215306.C16901@cibalia.gkvk.hr> <3A5B356A.BDFA5ADF@sgi.es> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <3A5B356A.BDFA5ADF@sgi.es>; from jfernandez@sgi.es on Tue, Jan 09, 2001 at 04:59:38PM +0100 From: Josip Rodin Delivered-To: 78526@bugs.debian.org On Tue, Jan 09, 2001 at 04:59:38PM +0100, Javier Fernandez-Sanguino Peña wrote: > > > The Freeradius project (more specifically Chad Miller) have > > > developed a WWW fronted to its own BTS as proposed in this bug report. > > > It can be checked in http://bugs.freeradius.org/cgi-bin-local/submitbug > > > > > > Please, I do think this idea is quite interesting (although I > > > would use the browser's MUA capabilities in the last step) and think we > > > could use this same code (ask Chad Miller for it) > > > > I'm not sure about the exact reason why we don't have our own web form to > > submit bugs, but I think it must be on purpose because nothing has been > > done OTOH maybe it's just laziness or fear not to break anything? :) > > How about discussing this on debian-www? I tried but nobody said > anything, and after a few attempts I dismissed it (and openened the bug > report). Nobody said anything about it being a problem. This _is_ debian-www, the list is the maintainer for the www.debian.org pseudo-package :) -- Digital Electronic Being Intended for Assassination and Nullification   Information forwarded to debian-bugs-dist@lists.debian.org, James Treacy and others <debian-www@lists.debian.org>:
Bug#78526; Package www.debian.org.   debian-bugs-dist@lists.debian.orgJames Treacy and others  Subject: Bug#78526: mailto-Action / reassign? Reply-To: Jens =?ISO-8859-1?Q?M=FCller?= , 78526@bugs.debian.org Resent-From: Jens =?ISO-8859-1?Q?M=FCller?= Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: James Treacy and others Resent-Date: Sun, 18 Feb 2001 01:03:20 GMT Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: report 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: X-Loop: owner@bugs.debian.org Received: via spool by 78526-bugs@bugs.debian.org id=B78526.98245781811483 (code B ref 78526); Sun, 18 Feb 2001 01:03:20 GMT X-Posting-Agent: Hamster/1.3.22.0 Message-ID: <00c801c09944$bbeb26b0$0101a8c0@enode> From: Jens =?ISO-8859-1?Q?M=FCller?= To: <78526@bugs.debian.org> Date: Sun, 18 Feb 2001 01:50:05 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Lines: 16 X-MDaemon-Deliver-To: 78526@bugs.debian.org X-Return-Path: jens@unfaehig.de X-MDRcpt-To: 78526@bugs.debian.org Delivered-To: 78526@bugs.debian.org First, I think that using mailto action is not a good idea. It makes necessary that the browser supports this protocol. What about the people who don't use integrated browser/mail packages, and whose browser is not correctly configured? What I would like more is a confirmation mail that has to be replied to in order to make the web submission valid. Btw, at the moment everyone can spam the DBS with invalid addresses, can't they? Well, shouldn't this bug maybe reassigned to bugs.debian.org? -- "We're going to have the best educated American people in the world." - Governor George W. Bush, 9/21/97   Acknowledgement sent to Jens =?ISO-8859-1?Q?M=FCller?= <jens@unfaehig.de>:
Extra info received and forwarded to list. Copy sent to James Treacy and others <debian-www@lists.debian.org>.   -t  From: owner@bugs.debian.org (Debian Bug Tracking System) To: Jens =?ISO-8859-1?Q?M=FCller?= Subject: Bug#78526: Info received (was mailto-Action / reassign?) Message-ID: In-Reply-To: <00c801c09944$bbeb26b0$0101a8c0@enode> References: <00c801c09944$bbeb26b0$0101a8c0@enode> X-Debian-PR-Message: ack-info-maintonly 78526 Thank you for the additional information you have supplied regarding this problem report. It has been forwarded to the developer(s) and to the developers mailing list to accompany the original report. Your message has been sent to the package maintainer(s): James Treacy and others If you wish to continue to submit further information on your problem, please send it to 78526@bugs.debian.org, as before. Please do not reply to the address at the top of this message, unless you wish to report a problem with the Bug-tracking system. Darren Benham (administrator, Debian Bugs database)   Received: (at 78526) by bugs.debian.org; 18 Feb 2001 00:56:58 +0000 From jens@unfaehig.de Sat Feb 17 18:56:58 2001 Return-path: Received: from p3e9bbdb2.dip.t-dialin.net (localhost) [::ffff:62.155.189.178] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 14UI9q-0002z8-00; Sat, 17 Feb 2001 18:56:58 -0600 Received: from enode by company.mail with SMTP (MDaemon.v3.1.0.R) for <78526@bugs.debian.org>; Sun, 18 Feb 2001 01:54:47 +0100 Received: from enode (127.0.0.1) by enode (62.155.189.178) with smtp ; Sun, 18 Feb 2001 01:50:05 +0100 X-Posting-Agent: Hamster/1.3.22.0 Message-ID: <00c801c09944$bbeb26b0$0101a8c0@enode> From: Jens =?ISO-8859-1?Q?M=FCller?= To: <78526@bugs.debian.org> Subject: mailto-Action / reassign? Date: Sun, 18 Feb 2001 01:50:05 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Lines: 16 X-MDaemon-Deliver-To: 78526@bugs.debian.org X-Return-Path: jens@unfaehig.de X-MDRcpt-To: 78526@bugs.debian.org Delivered-To: 78526@bugs.debian.org First, I think that using mailto action is not a good idea. It makes necessary that the browser supports this protocol. What about the people who don't use integrated browser/mail packages, and whose browser is not correctly configured? What I would like more is a confirmation mail that has to be replied to in order to make the web submission valid. Btw, at the moment everyone can spam the DBS with invalid addresses, can't they? Well, shouldn't this bug maybe reassigned to bugs.debian.org? -- "We're going to have the best educated American people in the world." - Governor George W. Bush, 9/21/97   Tags added: wontfix Request was from Josip Rodin <joy@cibalia.gkvk.hr> to control@bugs.debian.org.   Received: (at control) by bugs.debian.org; 25 Apr 2001 16:29:02 +0000 From joy@cibalia.gkvk.hr Wed Apr 25 11:29:02 2001 Return-path: Received: from cibalia.gkvk.hr [161.53.211.3] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 14sSA2-0007g5-00; Wed, 25 Apr 2001 11:29:02 -0500 Received: from joy by cibalia.gkvk.hr with local (Exim 3.12 #1 (Debian)) id 14sSBA-000716-00 for ; Wed, 25 Apr 2001 18:30:12 +0200 Date: Wed, 25 Apr 2001 18:30:12 +0200 To: control@bugs.debian.org Subject: some tuning Message-ID: <20010425183012.B26742@cibalia.gkvk.hr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i From: Josip Rodin Delivered-To: control@bugs.debian.org severity 35765 minor retitle 78307 provide http://cgi.debian.org/cgi-bin/copyright/ etc tag 78526 wontfix retitle 83701 packages.d.o should say on what platforms has a package been compiled retitle 88268 the note about outdatedness should have a link to the original tag 91287 moreinfo retitle 88350 version of Policy in stable should be made available severity 88350 wishlist retitle 90458 www.de.d.o defaults to Chinese in some cases [apache bug or misconfiguration?] retitle 92523 /devel/ definition of RC bug: severity >= serious, not >> -- Digital Electronic Being Intended for Assassination and Nullification   Information forwarded to debian-bugs-dist@lists.debian.org, Debian WWW Team <debian-www@lists.debian.org>:
Bug#78526; Package www.debian.org.   debian-bugs-dist@lists.debian.orgDebian WWW Team  X-Loop: owner@bugs.debian.org Subject: Bug#78526: Administrative Assistant - Virtual Office Reply-To: "garfield dilip" , 78526@bugs.debian.org Resent-From: "garfield dilip" Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Debian WWW Team Resent-Date: Sun, 07 Sep 2008 08:12:16 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.debian.org X-Debian-PR-Message: followup 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: wontfix Received: via spool by 78526-submit@bugs.debian.org id=B78526.122077505616939 (code B ref 78526); Sun, 07 Sep 2008 08:12:16 +0000 Received: (at 78526) by bugs.debian.org; 7 Sep 2008 08:10:56 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=0.5 required=4.0 tests=MONEY autolearn=no version=3.2.3-bugs.debian.org_2005_01_02 Received: from [213.154.68.181] by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KcFMD-0004JF-Eq for 78526@bugs.debian.org; Sun, 07 Sep 2008 08:10:56 +0000 Message-ID: <000501c910c1$02f3cde0$ecf1da8a@osnoqlp> From: "garfield dilip" To: <78526@bugs.debian.org> Date: Sun, 07 Sep 2008 06:23:21 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 We have reviewed your resume and would like to introduce you to our current vacancy. Luksus, with headquarters in Helsinki, Finland, serves the luxury lifestyle and offers unparalleled access to the finest luxury goods. We offer a unique mix of brands, partnerships, and product expertise. We are currently hiring, work at home positions, to provide administrative assistance with sales in North America. Candidates for the job should possess excellent organizational skills as well as the ability to efficiently multi-task. Ideal candidates have a strong focus on day-to-day operational excellence. The candidate should be motivated, proactive, be able to learn and adapt quickly. Other duties include, but are not limited to: * Incorporating effective priorities for the virtual office function * Administer day-to-day financial responsibilities for clients * Reporting online daily * Preparing brief summary reports, and weekly financial reports Salary part-time (3 hours per day, Monday-Friday): $1,200/month, plus commission. If you are interested in this position please send us an email to Sandra.Collins@luksus-jobs.org expressing your interest and we will forward you the detailed job description and the working agreement. Thank You, Luksus Team   Acknowledgement sent to "garfield dilip" <vco@ms15.hinet.net>:
Extra info received and forwarded to list. Copy sent to Debian WWW Team <debian-www@lists.debian.org>.   -t  Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.420 (Entity 5.420) Content-Type: text/plain; charset=utf-8 X-Loop: owner@bugs.debian.org From: owner@bugs.debian.org (Debian Bug Tracking System) To: "garfield dilip" Subject: Bug#78526: Info received (Administrative Assistant - Virtual Office) Message-ID: References: <000501c910c1$02f3cde0$ecf1da8a@osnoqlp> X-Debian-PR-Message: ack-info 78526 X-Debian-PR-Package: www.debian.org X-Debian-PR-Keywords: wontfix Reply-To: 78526@bugs.debian.org Thank you for the additional information you have supplied regarding this Bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Debian WWW Team If you wish to submit further information on this problem, please send it to 78526@bugs.debian.org, as before. Please do not send mail to owner@bugs.debian.org unless you wish to report a problem with the Bug-tracking system. --=20 78526: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D78526 Debian Bug Tracking System Contact owner@bugs.debian.org with problems   Received: (at 78526) by bugs.debian.org; 7 Sep 2008 08:10:56 +0000 From vco@ms15.hinet.net Sun Sep 07 08:10:56 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rietz.debian.org X-Spam-Level: X-Spam-Status: No, score=0.5 required=4.0 tests=MONEY autolearn=no version=3.2.3-bugs.debian.org_2005_01_02 Return-path: Received: from [213.154.68.181] by rietz.debian.org with esmtp (Exim 4.63) (envelope-from ) id 1KcFMD-0004JF-Eq for 78526@bugs.debian.org; Sun, 07 Sep 2008 08:10:56 +0000 Message-ID: <000501c910c1$02f3cde0$ecf1da8a@osnoqlp> From: "garfield dilip" To: <78526@bugs.debian.org> Subject: Administrative Assistant - Virtual Office Date: Sun, 07 Sep 2008 06:23:21 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 We have reviewed your resume and would like to introduce you to our current vacancy. Luksus, with headquarters in Helsinki, Finland, serves the luxury lifestyle and offers unparalleled access to the finest luxury goods. We offer a unique mix of brands, partnerships, and product expertise. We are currently hiring, work at home positions, to provide administrative assistance with sales in North America. Candidates for the job should possess excellent organizational skills as well as the ability to efficiently multi-task. Ideal candidates have a strong focus on day-to-day operational excellence. The candidate should be motivated, proactive, be able to learn and adapt quickly. Other duties include, but are not limited to: * Incorporating effective priorities for the virtual office function * Administer day-to-day financial responsibilities for clients * Reporting online daily * Preparing brief summary reports, and weekly financial reports Salary part-time (3 hours per day, Monday-Friday): $1,200/month, plus commission. If you are interested in this position please send us an email to Sandra.Collins@luksus-jobs.org expressing your interest and we will forward you the detailed job description and the working agreement. Thank You, Luksus Team