<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.inthewings.net/index.php?action=history&amp;feed=atom&amp;title=Addbugzilla.pl</id>
	<title>Addbugzilla.pl - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.inthewings.net/index.php?action=history&amp;feed=atom&amp;title=Addbugzilla.pl"/>
	<link rel="alternate" type="text/html" href="http://wiki.inthewings.net/index.php?title=Addbugzilla.pl&amp;action=history"/>
	<updated>2026-05-06T07:23:35Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>http://wiki.inthewings.net/index.php?title=Addbugzilla.pl&amp;diff=2181&amp;oldid=prev</id>
		<title>Jka at 16:48, 16 August 2007</title>
		<link rel="alternate" type="text/html" href="http://wiki.inthewings.net/index.php?title=Addbugzilla.pl&amp;diff=2181&amp;oldid=prev"/>
		<updated>2007-08-16T16:48:53Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This was a quick script I whipped up in order to add user accounts to Bugzilla when we needed them. We had blocked account creation on the Bugzilla website from just anyone in order to block spammers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/usr/bin/perl&lt;br /&gt;
&lt;br /&gt;
# We use strict, because that is a good thing. LWP::Simple is for connections&lt;br /&gt;
# to the web.&lt;br /&gt;
&lt;br /&gt;
use strict;&lt;br /&gt;
use LWP::Simple;&lt;br /&gt;
&lt;br /&gt;
my $email = $ARGV[0];&lt;br /&gt;
if (!$email) {&lt;br /&gt;
    print &amp;quot;Usage: addbugzilla.pl &amp;lt;email&amp;gt;\n&amp;quot;;&lt;br /&gt;
    exit;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
print &amp;quot;User&amp;#039;s full name: &amp;quot;;&lt;br /&gt;
my $name = &amp;lt;STDIN&amp;gt;;&lt;br /&gt;
&lt;br /&gt;
$name =~ s/ /\%20/g;&lt;br /&gt;
&lt;br /&gt;
my $url = &amp;#039;http://bugzilla.hpc.ufl.edu/createaccount.cgi?login=&amp;#039; .&lt;br /&gt;
    $email . &amp;#039;&amp;amp;realname=&amp;#039; . $name;&lt;br /&gt;
&lt;br /&gt;
my $content = get $url;&lt;br /&gt;
&lt;br /&gt;
print $name . &amp;quot; has been added to Bugzilla.\n&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jka</name></author>
		
	</entry>
</feed>