#!/usr/bin/perl # A very simple perl web server used by Webmin # Require basic libraries package miniserv; use Socket; use POSIX; use Sys::Hostname; # Find and read config file if (@ARGV != 1) { die "Usage: miniserv.pl "; } if ($ARGV[0] =~ /^\//) { $conf = $ARGV[0]; } else { chop($pwd = `pwd`); $conf = "$pwd/$ARGV[0]"; } open(CONF, $conf) || die "Failed to open config file $conf : $!"; while() { s/\r|\n//g; if (/^#/ || !/\S/) { next; } /^([^=]+)=(.*)$/; $name = $1; $val = $2; $name =~ s/^\s+//g; $name =~ s/\s+$//g; $val =~ s/^\s+//g; $val =~ s/\s+$//g; $config{$name} = $val; } close(CONF); # Check is SSL is enabled and available if ($config{'ssl'}) { eval "use Net::SSLeay"; if (!$@) { $use_ssl = 1; # These functions only exist for SSLeay 1.0 eval "Net::SSLeay::SSLeay_add_ssl_algorithms()"; eval "Net::SSLeay::load_error_strings()"; if (defined(&Net::SSLeay::X509_STORE_CTX_get_current_cert) && defined(&Net::SSLeay::CTX_load_verify_locations) && defined(&Net::SSLeay::CTX_set_verify)) { $client_certs = 1; } } } # Check if the syslog module is available to log hacking attempts if ($config{'syslog'}) { eval "use Sys::Syslog qw(:DEFAULT setlogsock)"; if (!$@) { $use_syslog = 1; } } # check if the PAM module is available to authenticate eval "use Authen::PAM"; if (!$@) { # check if the PAM authentication can be used by opening a handle if (! ref($pamh = new Authen::PAM("miniserv", "root", \&pam_conv_func))) { print STDERR "PAM module available, but error during init !\n"; print STDERR "Disabling PAM functions.\n"; } else { $use_pam = 1; } } # check if the TCP-wrappers module is available if ($config{'libwrap'}) { eval "use Authen::Libwrap qw(hosts_ctl STRING_UNKNOWN)"; if (!$@) { $use_libwrap = 1; } } # Get miniserv's perl path and location $miniserv_path = $0; open(SOURCE, $miniserv_path); =~ /^#!(\S+)/; $perl_path = $1; close(SOURCE); @miniserv_argv = @ARGV; # Check vital config options %vital = ("port", 80, "root", "./", "server", "MiniServ/0.01", "index_docs", "index.html index.htm index.cgi", "addtype_html", "text/html", "addtype_txt", "text/plain", "addtype_gif", "image/gif", "addtype_jpg", "image/jpeg", "addtype_jpeg", "image/jpeg", "realm", "MiniServ", "session_login", "/session_login.cgi" ); foreach $v (keys %vital) { if (!$config{$v}) { if ($vital{$v} eq "") { die "Missing config option $v"; } $config{$v} = $vital{$v}; } } if (!$config{'sessiondb'}) { $config{'pidfile'} =~ /^(.*)\/[^\/]+$/; $config{'sessiondb'} = "$1/sessiondb"; } die "Session authentication cannot be used in inetd mode" if ($config{'inetd'} && $config{'session'}); # init days and months for http_date @weekday = ( "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ); @month = ( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ); # Change dir to the server root chdir($config{'root'}); $user_homedir = (getpwuid($<))[7]; # Read users file if ($config{'userfile'}) { open(USERS, $config{'userfile'}); while() { s/\r|\n//g; local @user = split(/:/, $_); $users{$user[0]} = $user[1]; $certs{$user[0]} = $user[3] if ($user[3]); if ($user[4] =~ /^allow\s+(.*)/) { $allow{$user[0]} = [ &to_ipaddress(split(/\s+/, $1)) ]; } elsif ($user[4] =~ /^deny\s+(.*)/) { $deny{$user[0]} = [ &to_ipaddress(split(/\s+/, $1)) ]; } } close(USERS); } # Setup SSL if possible and if requested if ($use_ssl) { $ssl_ctx = Net::SSLeay::CTX_new() || die "Failed to create SSL context : $!"; $client_certs = 0 if (!$config{'ca'} || !%certs); if ($client_certs) { Net::SSLeay::CTX_load_verify_locations( $ssl_ctx, $config{'ca'}, ""); Net::SSLeay::CTX_set_verify( $ssl_ctx, &Net::SSLeay::VERIFY_PEER, \&verify_client); } Net::SSLeay::CTX_use_RSAPrivateKey_file( $ssl_ctx, $config{'keyfile'}, &Net::SSLeay::FILETYPE_PEM) || die "Failed to open SSL key"; Net::SSLeay::CTX_use_certificate_file( $ssl_ctx, $config{'keyfile'}, &Net::SSLeay::FILETYPE_PEM); } # Setup syslog support if possible and if requested if ($use_syslog) { eval { openlog("miniserv", "cons,pid,ndelay", "daemon") }; $use_syslog = 0 if ($@); } # Read MIME types file and add extra types if ($config{"mimetypes"} ne "") { open(MIME, $config{"mimetypes"}); while() { chop; s/#.*$//; if (/^(\S+)\s+(.*)$/) { $type = $1; @exts = split(/\s+/, $2); foreach $ext (@exts) { $mime{$ext} = $type; } } } close(MIME); } foreach $k (keys %config) { if ($k !~ /^addtype_(.*)$/) { next; } $mime{$1} = $config{$k}; } # get the time zone if ($config{'log'}) { local(@gmt, @lct, $days, $hours, $mins); @make_date_marr = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); @gmt = gmtime(time()); @lct = localtime(time()); $days = $lct[3] - $gmt[3]; $hours = ($days < -1 ? 24 : 1 < $days ? -24 : $days * 24) + $lct[2] - $gmt[2]; $mins = $hours * 60 + $lct[1] - $gmt[1]; $timezone = ($mins < 0 ? "-" : "+"); $mins = abs($mins); $timezone .= sprintf "%2.2d%2.2d", $mins/60, $mins%60; } if ($config{'inetd'}) { # We are being run from inetd - go direct to handling the request $SIG{'HUP'} = 'IGNORE'; $SIG{'TERM'} = 'DEFAULT'; $SIG{'PIPE'} = 'DEFAULT'; open(SOCK, "+>&STDIN"); # Check if it is time for the logfile to be cleared if ($config{'logclear'}) { local $write_logtime = 0; local @st = stat("$config{'logfile'}.time"); if (@st) { if ($st[9]+$config{'logtime'}*60*60 < time()){ # need to clear log $write_logtime = 1; unlink($config{'logfile'}); } } else { $write_logtime = 1; } if ($write_logtime) { open(LOGTIME, ">$config{'logfile'}.time"); print LOGTIME time(),"\n"; close(LOGTIME); } } # Initialize SSL for this connection if ($use_ssl) { $ssl_con = Net::SSLeay::new($ssl_ctx); Net::SSLeay::set_fd($ssl_con, fileno(SOCK)); #Net::SSLeay::use_RSAPrivateKey_file( # $ssl_con, $config{'keyfile'}, # &Net::SSLeay::FILETYPE_PEM); #Net::SSLeay::use_certificate_file( # $ssl_con, $config{'keyfile'}, # &Net::SSLeay::FILETYPE_PEM); Net::SSLeay::accept($ssl_con) || exit; } # Work out the hostname for this web server if (!$config{'host'}) { ($myport, $myaddr) = unpack_sockaddr_in(getsockname(SOCK)); $myname = gethostbyaddr($myaddr, AF_INET); if ($myname eq "") { $myname = inet_ntoa($myaddr); } $host = $myname; } else { $host = $config{'host'}; } $port = $config{'port'}; while(&handle_request(getpeername(SOCK), getsockname(SOCK))) { } close(SOCK); exit; } # Open main socket $proto = getprotobyname('tcp'); socket(MAIN, PF_INET, SOCK_STREAM, $proto) || die "Failed to open main socket : $!"; setsockopt(MAIN, SOL_SOCKET, SO_REUSEADDR, pack("l", 1)); $baddr = $config{"bind"} ? inet_aton($config{"bind"}) : INADDR_ANY; for($i=0; $i<5; $i++) { last if (bind(MAIN, sockaddr_in($config{port}, $baddr))); sleep(1); } die "Failed to bind port $config{port} : $!" if ($i == 5); listen(MAIN, SOMAXCONN); if ($config{'listen'}) { # Open the socket that allows other miniserv servers to find this one $proto = getprotobyname('udp'); if (socket(LISTEN, PF_INET, SOCK_DGRAM, $proto)) { setsockopt(LISTEN, SOL_SOCKET, SO_REUSEADDR, pack("l", 1)); bind(LISTEN, sockaddr_in($config{'listen'}, INADDR_ANY)); listen(LISTEN, SOMAXCONN); } else { print STDERR "Failed to open listening socket : $!\n"; $config{'listen'} = 0; } } # Split from the controlling terminal if (fork()) { exit; } setsid(); # write out the PID file open(PIDFILE, "> $config{'pidfile'}"); printf PIDFILE "%d\n", getpid(); close(PIDFILE); # Start the log-clearing process, if needed. This checks every minute # to see if the log has passed its reset time, and if so clears it if ($config{'logclear'}) { if (!($logclearer = fork())) { while(1) { local $write_logtime = 0; local @st = stat("$config{'logfile'}.time"); if (@st) { if ($st[9]+$config{'logtime'}*60*60 < time()){ # need to clear log $write_logtime = 1; unlink($config{'logfile'}); } } else { $write_logtime = 1; } if ($write_logtime) { open(LOGTIME, ">$config{'logfile'}.time"); print LOGTIME time(),"\n"; close(LOGTIME); } sleep(5*60); } exit; } push(@childpids, $logclearer); } # Setup the logout time dbm if needed if ($config{'session'}) { eval "use SDBM_File"; dbmopen(%sessiondb, $config{'sessiondb'}, 0700); eval { $sessiondb{'1111111111'} = 'foo bar' }; if ($@) { dbmclose(%sessiondb); eval "use NDBM_File"; dbmopen(%sessiondb, $config{'sessiondb'}, 0700); } } # Run the main loop $SIG{'HUP'} = 'miniserv::trigger_restart'; $SIG{'TERM'} = 'miniserv::term_handler'; $SIG{'PIPE'} = 'IGNORE'; @deny = &to_ipaddress(split(/\s+/, $config{"deny"})); @allow = &to_ipaddress(split(/\s+/, $config{"allow"})); $p = 0; while(1) { # wait for a new connection, or a message from a child process undef($rmask); vec($rmask, fileno(MAIN), 1) = 1; if ($config{'passdelay'} || $config{'session'}) { for($i=0; $i<@passin; $i++) { vec($rmask, fileno($passin[$i]), 1) = 1; } } vec($rmask, fileno(LISTEN), 1) = 1 if ($config{'listen'}); local $sel = select($rmask, undef, undef, 10); if ($need_restart) { &restart_miniserv(); } local $time_now = time(); # Clean up finished processes local($pid); do { $pid = waitpid(-1, WNOHANG); @childpids = grep { $_ != $pid } @childpids; } while($pid > 0); # run the unblocking procedure to check if enough time has passed to # unblock hosts that heve been blocked because of password failures if ($config{'blockhost_failures'}) { $i = 0; while ($i <= $#deny) { if ($blockhosttime{$deny[$i]} && $config{'blockhost_time'} != 0 && ($time_now - $blockhosttime{$deny[$i]}) >= $config{'blockhost_time'}) { # the host can be unblocked now $hostfail{$deny[$i]} = 0; splice(@deny, $i, 1); } $i++; } } if ($config{'session'}) { # Remove sessions with more than 7 days of inactivity foreach $s (keys %sessiondb) { local ($user, $ltime) = split(/\s+/, $sessiondb{$s}); if ($time_now - $ltime > 7*24*60*60) { delete($sessiondb{$s}); } } } next if ($sel <= 0); if (vec($rmask, fileno(MAIN), 1)) { # got new connection $acptaddr = accept(SOCK, MAIN); if (!$acptaddr) { next; } # create pipes if ($config{'passdelay'} || $config{'session'}) { $PASSINr = "PASSINr$p"; $PASSINw = "PASSINw$p"; $PASSOUTr = "PASSOUTr$p"; $PASSOUTw = "PASSOUTw$p"; $p++; pipe($PASSINr, $PASSINw); pipe($PASSOUTr, $PASSOUTw); select($PASSINw); $| = 1; select($PASSINr); $| = 1; select($PASSOUTw); $| = 1; select($PASSOUTw); $| = 1; } select(STDOUT); # Check username of connecting user local ($peerp, $peera) = unpack_sockaddr_in($acptaddr); $localauth_user = undef; if ($config{'localauth'} && inet_ntoa($peera) eq "127.0.0.1") { if (open(TCP, "/proc/net/tcp")) { # Get the info direct from the kernel while() { s/^\s+//; local @t = split(/[\s:]+/, $_); if ($t[1] eq '0100007F' && $t[2] eq sprintf("%4.4X", $peerp)) { $localauth_user = getpwuid($t[11]); last; } } close(TCP); } else { # Call lsof for the info local $lsofpid = open(LSOF, "$config{'localauth'} -i TCP\@127.0.0.1:$peerp |"); while() { if (/^(\S+)\s+(\d+)\s+(\S+)/ && $2 != $$ && $2 != $lsofpid) { $localauth_user = $3; } } close(LSOF); } } # fork the subprocess if (!($handpid = fork())) { # setup signal handlers $SIG{'TERM'} = 'DEFAULT'; $SIG{'PIPE'} = 'DEFAULT'; #$SIG{'CHLD'} = 'IGNORE'; $SIG{'HUP'} = 'IGNORE'; # Initialize SSL for this connection if ($use_ssl) { $ssl_con = Net::SSLeay::new($ssl_ctx); Net::SSLeay::set_fd($ssl_con, fileno(SOCK)); #Net::SSLeay::use_RSAPrivateKey_file( # $ssl_con, $config{'keyfile'}, # &Net::SSLeay::FILETYPE_PEM); #Net::SSLeay::use_certificate_file( # $ssl_con, $config{'keyfile'}, # &Net::SSLeay::FILETYPE_PEM); Net::SSLeay::accept($ssl_con) || exit; } # close useless pipes if ($config{'passdelay'} || $config{'session'}) { foreach $p (@passin) { close($p); } foreach $p (@passout) { close($p); } close($PASSINr); close($PASSOUTw); } close(MAIN); # Work out the hostname for this web server if (!$config{'host'}) { ($myport, $myaddr) = unpack_sockaddr_in(getsockname(SOCK)); $myname = gethostbyaddr($myaddr, AF_INET); if ($myname eq "") { $myname = inet_ntoa($myaddr); } $host = $myname; } else { $host = $config{'host'}; } $port = $config{'port'}; local $switched = 0; if ($config{'remoteuser'} && $localauth_user && !$<) { # Switch to the UID of the remote user local @u = getpwnam($localauth_user); if (@u) { $( = $u[3]; $) = "$u[3] $u[3]"; $< = $> = $u[2]; $switched = 1; } } if ($config{'switchuser'} && !$< && !$switched) { # Switch to the UID of server user local @u = getpwnam($config{'switchuser'}); if (@u) { $( = $u[3]; $) = "$u[3] $u[3]"; $< = $> = $u[2]; } } while(&handle_request($acptaddr, getsockname(SOCK))) { } shutdown(SOCK, 1); close(SOCK); close($PASSINw); close($PASSOUTw); exit; } push(@childpids, $handpid); if ($config{'passdelay'} || $config{'session'}) { close($PASSINw); close($PASSOUTr); push(@passin, $PASSINr); push(@passout, $PASSOUTw); } close(SOCK); } if ($config{'listen'} && vec($rmask, fileno(LISTEN), 1)) { # Got UDP packet from another miniserv server local $rcvbuf; local $from = recv(LISTEN, $rcvbuf, 1024, 0); next if (!$from); local $fromip = inet_ntoa((unpack_sockaddr_in($from))[1]); local $toip = inet_ntoa((unpack_sockaddr_in( getsockname(LISTEN)))[1]); if ((!@deny || !&ip_match($fromip, $toip, @deny)) && (!@allow || &ip_match($fromip, $toip, @allow))) { send(LISTEN, "$config{'host'}:$config{'port'}:". "$use_ssl", 0, $from); } } # check for password-timeout messages from subprocesses for($i=0; $i<@passin; $i++) { if (vec($rmask, fileno($passin[$i]), 1)) { # this sub-process is asking about a password $infd = $passin[$i]; $outfd = $passout[$i]; $inline = <$infd>; if ($inline =~ /^delay\s+(\S+)\s+(\S+)\s+(\d+)/) { # Got a delay request from a subprocess.. for # valid logins, there is no delay (to prevent # denial of service attacks), but for invalid # logins the delay increases with each failed # attempt. if ($3) { # login OK.. no delay print $outfd "0 0\n"; $hostfail{$2} = 0; } else { # login failed.. $hostfail{$2}++; # add the host to the block list if necessary if ($config{'blockhost_failures'} && $hostfail{$2} >= $config{'blockhost_failures'}) { push(@deny, $2); $blockhosttime{$2} = $time_now; $blocked = 1; if ($use_syslog) { local $logtext = "Security alert: Host $2 ". "blocked after $config{'blockhost_failures'} ". "failed logins for user $1"; syslog("crit", $logtext); } } else { $blocked = 0; } $dl = $userdlay{$1} - int(($time_now - $userlast{$1})/50); $dl = $dl < 0 ? 0 : $dl+1; print $outfd "$dl $blocked\n"; $userdlay{$1} = $dl; } $userlast{$1} = $time_now; } elsif ($inline =~ /^verify\s+(\S+)/) { # Verifying a session ID local $session_id = $1; if (!defined($sessiondb{$session_id})) { print $outfd "0 0\n"; } else { local ($user, $ltime) = split(/\s+/, $sessiondb{$session_id}); if ($config{'logouttime'} && $time_now - $ltime > $config{'logouttime'}*60) { print $outfd "1 ",$time_now - $ltime,"\n"; delete($sessiondb{$session_id}); } else { print $outfd "2 $user\n"; $sessiondb{$session_id} = "$user $time_now"; } } } elsif ($inline =~ /^new\s+(\S+)\s+(\S+)/) { # Creating a new session $sessiondb{$1} = "$2 $time_now"; } elsif ($inline =~ /^delete\s+(\S+)/) { # Logging out a session print $outfd $sessiondb{$1} ? 1 : 0,"\n"; delete($sessiondb{$1}); } else { # close pipe close($infd); close($outfd); $passin[$i] = $passout[$i] = undef; } } } @passin = grep { defined($_) } @passin; @passout = grep { defined($_) } @passout; } # handle_request(remoteaddress, localaddress) # Where the real work is done sub handle_request { $acptip = inet_ntoa((unpack_sockaddr_in($_[0]))[1]); $localip = $_[1] ? inet_ntoa((unpack_sockaddr_in($_[1]))[1]) : undef; if ($config{'loghost'}) { $acpthost = gethostbyaddr(inet_aton($acptip), AF_INET); $acpthost = $acptip if (!$acpthost); } else { $acpthost = $acptip; } $datestr = &http_date(time()); $ok_code = 200; $ok_message = "Document follows"; # Wait at most 60 secs for start of headers (but only for the first time) if (!$checked_timeout) { local $rmask; vec($rmask, fileno(SOCK), 1) = 1; local $sel = select($rmask, undef, undef, 60); $sel || &http_error(400, "Timeout"); $checked_timeout++; } # Read the HTTP request and headers ($reqline = &read_line()) =~ s/\r|\n//g; if (!($reqline =~ /^(GET|POST|HEAD)\s+(.*)\s+HTTP\/1\..$/)) { &http_error(400, "Bad Request"); } $method = $1; $request_uri = $page = $2; %header = (); local $lastheader; while(1) { ($headline = &read_line()) =~ s/\r|\n//g; last if ($headline eq ""); if ($headline =~ /^(\S+):\s+(.*)$/) { $header{$lastheader = lc($1)} = $2; } elsif ($headline =~ /^\s+(.*)$/) { $header{$lastheader} .= $headline; } else { &http_error(400, "Bad Header $headline"); } } if (defined($header{'host'})) { if ($header{'host'} =~ /^([^:]+):([0-9]+)$/) { $host = $1; $port = $2; } else { $host = $header{'host'}; } } undef(%in); if ($page =~ /^([^\?]+)\?(.*)$/) { # There is some query string information $page = $1; $querystring = $2; if ($querystring !~ /=/) { $queryargs = $querystring; $queryargs =~ s/\+/ /g; $queryargs =~ s/%(..)/pack("c",hex($1))/ge; $querystring = ""; } else { # Parse query-string parameters local @in = split(/\&/, $querystring); foreach $i (@in) { local ($k, $v) = split(/=/, $i, 2); $k =~ s/\+/ /g; $k =~ s/%(..)/pack("c",hex($1))/ge; $v =~ s/\+/ /g; $v =~ s/%(..)/pack("c",hex($1))/ge; $in{$k} = $v; } } } $posted_data = undef; if ($method eq 'POST' && $header{'content-type'} eq 'application/x-www-form-urlencoded') { # Read in posted query string information $clen = $header{"content-length"}; while(length($posted_data) < $clen) { $buf = &read_data($clen - length($posted_data)); if (!length($buf)) { &http_error(500, "Failed to read POST request"); } $posted_data .= $buf; } local @in = split(/\&/, $posted_data); foreach $i (@in) { local ($k, $v) = split(/=/, $i, 2); $k =~ s/\+/ /g; $k =~ s/%(..)/pack("c",hex($1))/ge; $v =~ s/\+/ /g; $v =~ s/%(..)/pack("c",hex($1))/ge; $in{$k} = $v; } } # replace %XX sequences in page $page =~ s/%(..)/pack("c",hex($1))/ge; # check address against access list if (@deny && &ip_match($acptip, $localip, @deny) || @allow && !&ip_match($acptip, $localip, @allow)) { &http_error(403, "Access denied for $acptip"); return 0; } if ($use_libwrap) { # Check address with TCP-wrappers if (!hosts_ctl("miniserv", STRING_UNKNOWN, $acptip, STRING_UNKNOWN)) { &http_error(403, "Access denied for $acptip"); return 0; } } # check for the logout flag file, and if existant deny authentication if ($config{'logout'} && -r $config{'logout'}.$in{'miniserv_logout_id'}) { $deny_authentication++; open(LOGOUT, $config{'logout'}.$in{'miniserv_logout_id'}); chop($count = ); close(LOGOUT); $count--; if ($count > 0) { open(LOGOUT, ">$config{'logout'}$in{'miniserv_logout_id'}"); print LOGOUT "$count\n"; close(LOGOUT); } else { unlink($config{'logout'}.$in{'miniserv_logout_id'}); } } # Check for password if needed if (%users) { $validated = 0; $blocked = 0; # Session authentication is never used for connections by # another miniserv server if ($header{'user-agent'} =~ /miniserv/i) { $config{'session'} = 0; } # check for SSL authentication if ($use_ssl && $verified_client) { $peername = Net::SSLeay::X509_NAME_oneline( Net::SSLeay::X509_get_subject_name( Net::SSLeay::get_peer_certificate( $ssl_con))); foreach $u (keys %certs) { if ($certs{$u} eq $peername) { $authuser = $u; $validated = 2; last; } } } # Check for normal HTTP authentication if (!$validated && !$deny_authentication && !$config{'session'} && $header{authorization} =~ /^basic\s+(\S+)$/i) { # authorization given.. ($authuser, $authpass) = split(/:/, &b64decode($1)); $validated = &validate_user($authuser, $authpass); if ($config{'passdelay'} && !$config{'inetd'}) { # check with main process for delay print $PASSINw "delay $authuser $acptip $validated\n"; <$PASSOUTr> =~ /(\d+) (\d+)/; $blocked = $2; sleep($1); } } # Check for new session validation if ($config{'session'} && !$deny_authentication && $page eq $config{'session_login'}) { local $ok = &validate_user($in{'user'}, $in{'pass'}); # check if the test cookie is set if ($header{'cookie'} !~ /testing=1/ && $in{'user'}) { &http_error(500, "No cookies", "Your browser does not support cookies, ". "which are required for Webmin to work in ". "session authentication mode"); } # check with main process for delay if ($config{'passdelay'} && $in{'user'}) { print $PASSINw "delay $in{'user'} $acptip $ok\n"; <$PASSOUTr> =~ /(\d+) (\d+)/; $blocked = $2; sleep($1); } if ($ok) { # Logged in OK! Tell the main process about the new SID local $sid = time(); local $mul = 1; foreach $c (split(//, crypt($in{'pass'}, substr($$, -2)))) { $sid += ord($c) * $mul; $mul *= 3; } print $PASSINw "new $sid $in{'user'}\n"; # Set cookie and redirect &write_data("HTTP/1.0 302 Moved Temporarily\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{'server'}\r\n"); $portstr = $port == 80 && !$use_ssl ? "" : $port == 443 && $use_ssl ? "" : ":$port"; $prot = $use_ssl ? "https" : "http"; if ($in{'save'}) { &write_data("Set-Cookie: sid=$sid; path=/; expires=\"Fri, 1-Jan-2038 00:00:01\"\r\n"); } else { &write_data("Set-Cookie: sid=$sid; path=/\r\n"); } &write_data("Location: $prot://$host$portstr$in{'page'}\r\n"); &write_keep_alive(0); &write_data("\r\n"); &log_request($acpthost, $authuser, $reqline, 302, 0); return 0; } elsif ($in{'logout'} && $header{'cookie'} =~ /sid=(\d+)/) { # Logout clicked .. remove the session print $PASSINw "delete $1\n"; local $dummy = <$PASSINr>; $logout = 1; $already_session_id = undef; } else { # Login failed .. display the form again $failed_user = $in{'user'}; $request_uri = $in{'page'}; $already_session_id = undef; } } # Check for an existing session if ($config{'session'} && !$validated) { if ($already_session_id) { $session_id = $already_session_id; $authuser = $already_authuser; $validated = 1; } elsif (!$deny_authentication && $header{'cookie'} =~ /sid=(\d+)/) { $session_id = $1; print $PASSINw "verify $session_id\n"; <$PASSOUTr> =~ /(\d+)\s+(\S+)/; if ($1 == 2) { # Valid session continuation $validated = 1; $authuser = $2; $already_session_id = $session_id; $already_authuser = $authuser; } elsif ($1 == 1) { # Session timed out $timed_out = $2; } else { # Invalid session ID .. don't set verified } } } # Check for local authentication if ($localauth_user) { if (defined($users{$localauth_user})) { $validated = 1; $authuser = $localauth_user; } else { $localauth_user = undef; } } if (!$validated) { if ($blocked == 0) { # No password given.. ask if ($config{'session'}) { # Force CGI for session login $validated = 1; if ($logout) { $querystring .= "&logout=1&page=/"; } else { $querystring = "page=".&urlize($request_uri); } $querystring .= "&failed=$failed_user" if ($failed_user); $querystring .= "&timed_out=$timed_out" if ($timed_out); $queryargs = ""; $page = $config{'session_login'}; } else { # Ask for login with HTTP authentication &write_data("HTTP/1.0 401 Unauthorized\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{'server'}\r\n"); &write_data("WWW-authenticate: Basic ". "realm=\"$config{'realm'}\"\r\n"); &write_keep_alive(0); &write_data("Content-type: text/html\r\n"); &write_data("\r\n"); &reset_byte_count(); &write_data("\n"); &write_data("Unauthorized\n"); &write_data("

Unauthorized

\n"); &write_data("A password is required to access this\n"); &write_data("web server. Please try again.

\n"); &write_data("\n"); &log_request($acpthost, undef, $reqline, 401, &byte_count()); return 0; } } else { # when the host has been blocked, give it an error message &http_error(403, "Access denied for $acptip. The host has been blocked " ."because of too many authentication failures."); } } # Check per-user IP access control if ($deny{$authuser} && &ip_match($acptip, $localip, @{$deny{$authuser}}) || $allow{$authuser} && !&ip_match($acptip, $localip, @{$allow{$authuser}})) { &http_error(403, "Access denied for $acptip"); return 0; } } # Figure out what kind of page was requested rerun: $simple = &simplify_path($page, $bogus); $simple =~ s/[\000-\037]//g; if ($bogus) { &http_error(400, "Invalid path"); } undef($full); if ($config{'preroot'}) { # Look in the template root directory first $is_directory = 1; $sofar = ""; $full = $config{"preroot"} . $sofar; $scriptname = $simple; foreach $b (split(/\//, $simple)) { if ($b ne "") { $sofar .= "/$b"; } $full = $config{"preroot"} . $sofar; @st = stat($full); if (!@st) { undef($full); last; } # Check if this is a directory if (-d $full) { # It is.. go on parsing $is_directory = 1; next; } else { $is_directory = 0; } # Check if this is a CGI program if (&get_type($full) eq "internal/cgi") { $pathinfo = substr($simple, length($sofar)); $pathinfo .= "/" if ($page =~ /\/$/); $scriptname = $sofar; last; } } if ($full) { if ($sofar eq '') { $cgi_pwd = $config{'root'}; } else { "$config{'root'}$sofar" =~ /^(.*\/)[^\/]+$/; $cgi_pwd = $1; } if ($is_directory) { # Check for index files in the directory foreach $idx (split(/\s+/, $config{"index_docs"})) { $idxfull = "$full/$idx"; if (-r $idxfull && !(-d $idxfull)) { $full = $idxfull; $is_directory = 0; $scriptname .= "/" if ($scriptname ne "/"); last; } } } } } if (!$full || $is_directory) { $sofar = ""; $full = $config{"root"} . $sofar; $scriptname = $simple; foreach $b (split(/\//, $simple)) { if ($b ne "") { $sofar .= "/$b"; } $full = $config{"root"} . $sofar; @st = stat($full); if (!@st) { &http_error(404, "File not found"); } # Check if this is a directory if (-d $full) { # It is.. go on parsing next; } # Check if this is a CGI program if (&get_type($full) eq "internal/cgi") { $pathinfo = substr($simple, length($sofar)); $pathinfo .= "/" if ($page =~ /\/$/); $scriptname = $sofar; last; } } $full =~ /^(.*\/)[^\/]+$/; $cgi_pwd = $1; } # check filename against denyfile regexp local $denyfile = $config{'denyfile'}; if ($denyfile && $full =~ /$denyfile/) { &http_error(403, "Access denied to $page"); return 0; } # Reached the end of the path OK.. see what we've got if (-d $full) { # See if the URL ends with a / as it should if ($page !~ /\/$/) { # It doesn't.. redirect &write_data("HTTP/1.0 302 Moved Temporarily\r\n"); $portstr = $port == 80 && !$use_ssl ? "" : $port == 443 && $use_ssl ? "" : ":$port"; &write_data("Date: $datestr\r\n"); &write_data("Server: $config{server}\r\n"); $prot = $use_ssl ? "https" : "http"; &write_data("Location: $prot://$host$portstr$page/\r\n"); &write_keep_alive(0); &write_data("\r\n"); &log_request($acpthost, $authuser, $reqline, 302, 0); return 0; } # A directory.. check for index files foreach $idx (split(/\s+/, $config{"index_docs"})) { $idxfull = "$full/$idx"; if (-r $idxfull && !(-d $idxfull)) { $cgi_pwd = $full; $full = $idxfull; $scriptname .= "/" if ($scriptname ne "/"); last; } } } if (-d $full) { # This is definately a directory.. list it &write_data("HTTP/1.0 $ok_code $ok_message\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{server}\r\n"); &write_data("Content-type: text/html\r\n"); &write_keep_alive(0); &write_data("\r\n"); &reset_byte_count(); &write_data("

Index of $simple

\n"); &write_data("
\n");
	&write_data(sprintf "%-35.35s %-20.20s %-10.10s\n",
			"Name", "Last Modified", "Size");
	&write_data("
\n"); opendir(DIR, $full); while($df = readdir(DIR)) { if ($df =~ /^\./) { next; } (@stbuf = stat("$full/$df")) || next; if (-d "$full/$df") { $df .= "/"; } @tm = localtime($stbuf[9]); $fdate = sprintf "%2.2d/%2.2d/%4.4d %2.2d:%2.2d:%2.2d", $tm[3],$tm[4]+1,$tm[5]+1900, $tm[0],$tm[1],$tm[2]; $len = length($df); $rest = " "x(35-$len); &write_data(sprintf "%-${len}.${len}s$rest %-20.20s %-10.10s\n", $df, $df, $fdate, $stbuf[7]); } closedir(DIR); &log_request($acpthost, $authuser, $reqline, $ok_code, &byte_count()); return 0; } # CGI or normal file local $rv; if (&get_type($full) eq "internal/cgi") { # A CGI program to execute $envtz = $ENV{"TZ"}; $envuser = $ENV{"USER"}; $envpath = $ENV{"PATH"}; foreach (keys %ENV) { delete($ENV{$_}); } $ENV{"PATH"} = $envpath if ($envpath); $ENV{"TZ"} = $envtz if ($envtz); $ENV{"USER"} = $envuser if ($envuser); $ENV{"HOME"} = $user_homedir; $ENV{"SERVER_SOFTWARE"} = $config{"server"}; $ENV{"SERVER_NAME"} = $host; $ENV{"SERVER_ADMIN"} = $config{"email"}; $ENV{"SERVER_ROOT"} = $config{"root"}; $ENV{"SERVER_PORT"} = $port; $ENV{"REMOTE_HOST"} = $acpthost; $ENV{"REMOTE_ADDR"} = $acptip; $ENV{"REMOTE_USER"} = $authuser if (defined($authuser)); $ENV{"SSL_USER"} = $peername if ($validated == 2); $ENV{"DOCUMENT_ROOT"} = $config{"root"}; $ENV{"GATEWAY_INTERFACE"} = "CGI/1.1"; $ENV{"SERVER_PROTOCOL"} = "HTTP/1.0"; $ENV{"REQUEST_METHOD"} = $method; $ENV{"SCRIPT_NAME"} = $scriptname; $ENV{"REQUEST_URI"} = $request_uri; $ENV{"PATH_INFO"} = $pathinfo; $ENV{"PATH_TRANSLATED"} = "$config{root}/$pathinfo"; $ENV{"QUERY_STRING"} = $querystring; $ENV{"MINISERV_CONFIG"} = $conf; $ENV{"HTTPS"} = "ON" if ($use_ssl); $ENV{"SESSION_ID"} = $session_id if ($session_id); $ENV{"LOCAL_USER"} = $localauth_user if ($localauth_user); if (defined($header{"content-length"})) { $ENV{"CONTENT_LENGTH"} = $header{"content-length"}; } if (defined($header{"content-type"})) { $ENV{"CONTENT_TYPE"} = $header{"content-type"}; } foreach $h (keys %header) { ($hname = $h) =~ tr/a-z/A-Z/; $hname =~ s/\-/_/g; $ENV{"HTTP_$hname"} = $header{$h}; } $ENV{"PWD"} = $cgi_pwd; foreach $k (keys %config) { if ($k =~ /^env_(\S+)$/) { $ENV{$1} = $config{$k}; } } delete($ENV{'HTTP_AUTHORIZATION'}); $ENV{'HTTP_COOKIE'} =~ s/;?\s*sid=(\d+)//; # Check if the CGI can be handled internally open(CGI, $full); local $first = ; close(CGI); $first =~ s/[#!\r\n]//g; $nph_script = ($full =~ /\/nph-([^\/]+)$/); if (!$config{'forkcgis'} && $first eq $perl_path && $] >= 5.004) { # setup environment for eval chdir($ENV{"PWD"}); @ARGV = split(/\s+/, $queryargs); $0 = $full; if ($posted_data) { # Already read the post input $postinput = $posted_data; } elsif ($method eq "POST") { $clen = $header{"content-length"}; while(length($postinput) < $clen) { $buf = &read_data($clen - length($postinput)); if (!length($buf)) { &http_error(500, "Failed to read ". "POST request"); } $postinput .= $buf; } } $SIG{'CHLD'} = 'DEFAULT'; eval { # Have SOCK closed if the perl exec's something use Fcntl; fcntl(SOCK, F_SETFD, FD_CLOEXEC); }; shutdown(SOCK, 0); if ($config{'log'}) { open(MINISERVLOG, ">>$config{'logfile'}"); chmod(0600, $config{'logfile'}); } $doing_eval = 1; eval { package main; tie(*STDOUT, 'miniserv'); tie(*STDIN, 'miniserv'); do $miniserv::full; die $@ if ($@); }; $doing_eval = 0; if ($@) { # Error in perl! &http_error(500, "Perl execution failed", $@); } elsif (!$doneheaders && !$nph_script) { &http_error(500, "Missing Headers"); } #close(SOCK); $rv = 0; } else { # fork the process that actually executes the CGI pipe(CGIINr, CGIINw); pipe(CGIOUTr, CGIOUTw); pipe(CGIERRr, CGIERRw); if (!($cgipid = fork())) { chdir($ENV{"PWD"}); close(SOCK); open(STDIN, "<&CGIINr"); open(STDOUT, ">&CGIOUTw"); open(STDERR, ">&CGIERRw"); close(CGIINw); close(CGIOUTr); close(CGIERRr); exec($full, split(/\s+/, $queryargs)); print STDERR "Failed to exec $full : $!\n"; exit; } close(CGIINr); close(CGIOUTw); close(CGIERRw); # send post data if ($posted_data) { # already read the posted data print CGIINw $posted_data; } elsif ($method eq "POST") { $got = 0; $clen = $header{"content-length"}; while($got < $clen) { $buf = &read_data($clen-$got); if (!length($buf)) { kill('TERM', $cgipid); &http_error(500, "Failed to read ". "POST request"); } $got += length($buf); print CGIINw $buf; } } close(CGIINw); shutdown(SOCK, 0); if (!$nph_script) { # read back cgi headers select(CGIOUTr); $|=1; select(STDOUT); $got_blank = 0; while(1) { $line = ; $line =~ s/\r|\n//g; if ($line eq "") { if ($got_blank || %cgiheader) { last; } $got_blank++; next; } ($line =~ /^(\S+):\s+(.*)$/) || &http_error(500, "Bad Header", &read_errors(CGIERRr)); $cgiheader{lc($1)} = $2; } if ($cgiheader{"location"}) { &write_data("HTTP/1.0 302 Moved Temporarily\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{'server'}\r\n"); &write_keep_alive(0); # ignore the rest of the output. This is a hack, but # is necessary for IE in some cases :( close(CGIOUTr); close(CGIERRr); } elsif ($cgiheader{"content-type"} eq "") { &http_error(500, "Missing Content-Type Header", &read_errors(CGIERRr)); } else { &write_data("HTTP/1.0 $ok_code $ok_message\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{'server'}\r\n"); &write_keep_alive(0); } foreach $h (keys %cgiheader) { &write_data("$h: $cgiheader{$h}\r\n"); } &write_data("\r\n"); } &reset_byte_count(); while($line = ) { &write_data($line); } close(CGIOUTr); close(CGIERRr); $rv = 0; } } else { # A file to output local @st = stat($full); open(FILE, $full) || &http_error(404, "Failed to open file"); &write_data("HTTP/1.0 $ok_code $ok_message\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{server}\r\n"); &write_data("Content-type: ".&get_type($full)."\r\n"); &write_data("Content-length: $st[7]\r\n"); &write_data("Last-Modified: ".&http_date($st[9])."\r\n"); &write_keep_alive(); &write_data("\r\n"); &reset_byte_count(); while(read(FILE, $buf, 1024) > 0) { &write_data($buf); } close(FILE); $rv = &check_keep_alive(); } # log the request &log_request($acpthost, $authuser, $reqline, $cgiheader{"location"} ? "302" : $ok_code, &byte_count()); return $rv; } # http_error(code, message, body, [dontexit]) sub http_error { close(CGIOUT); local $eh = $error_handler_recurse ? undef : $config{"error_handler_$_[0]"} ? $config{"error_handler_$_[0]"} : $config{'error_handler'} ? $config{'error_handler'} : undef; if ($eh) { # Call a CGI program for the error $page = "/$eh"; $querystring = "code=$_[0]&message=".&urlize($_[1]). "&body=".&urlize($_[2]); $error_handler_recurse++; $ok_code = $_[0]; $ok_message = $_[1]; goto rerun; } else { # Use the standard error message display &write_data("HTTP/1.0 $_[0] $_[1]\r\n"); &write_data("Server: $config{server}\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Content-type: text/html\r\n"); &write_keep_alive(0); &write_data("\r\n"); &reset_byte_count(); &write_data("

Error - $_[1]

\n"); if ($_[2]) { &write_data("
$_[2]
\n"); } } &log_request($acpthost, $authuser, $reqline, $_[0], &byte_count()) if ($reqline); shutdown(SOCK, 1); exit if (!$_[3]); } sub get_type { if ($_[0] =~ /\.([A-z0-9]+)$/) { $t = $mime{$1}; if ($t ne "") { return $t; } } return "text/plain"; } # simplify_path(path, bogus) # Given a path, maybe containing stuff like ".." and "." convert it to a # clean, absolute form. sub simplify_path { local($dir, @bits, @fixedbits, $b); $dir = $_[0]; $dir =~ s/^\/+//g; $dir =~ s/\/+$//g; @bits = split(/\/+/, $dir); @fixedbits = (); $_[1] = 0; foreach $b (@bits) { if ($b eq ".") { # Do nothing.. } elsif ($b eq "..") { # Remove last dir if (scalar(@fixedbits) == 0) { $_[1] = 1; return "/"; } pop(@fixedbits); } else { # Add dir to list push(@fixedbits, $b); } } return "/" . join('/', @fixedbits); } # b64decode(string) # Converts a string from base64 format to normal sub b64decode { local($str) = $_[0]; local($res); $str =~ tr|A-Za-z0-9+=/||cd; $str =~ s/=+$//; $str =~ tr|A-Za-z0-9+/| -_|; while ($str =~ /(.{1,60})/gs) { my $len = chr(32 + length($1)*3/4); $res .= unpack("u", $len . $1 ); } return $res; } # ip_match(remoteip, localip, [match]+) # Checks an IP address against a list of IPs, networks and networks/masks sub ip_match { local(@io, @mo, @ms, $i, $j); @io = split(/\./, $_[0]); local $hn; if (!defined($hn = $ip_match_cache{$_[0]})) { $hn = gethostbyaddr(inet_aton($_[0]), AF_INET); $hn = "" if ((&to_ipaddress($hn))[0] ne $_[0]); $ip_match_cache{$_[0]} = $hn; } for($i=2; $i<@_; $i++) { local $mismatch = 0; if ($_[$i] =~ /^(\S+)\/(\S+)$/) { # Compare with network/mask @mo = split(/\./, $1); @ms = split(/\./, $2); for($j=0; $j<4; $j++) { if ((int($io[$j]) & int($ms[$j])) != int($mo[$j])) { $mismatch = 1; } } } elsif ($_[$i] =~ /^\*(\S+)$/) { # Compare with hostname regexp $mismatch = 1 if ($hn !~ /$1$/); } elsif ($_[$i] eq 'LOCAL') { # Compare with local network local @lo = split(/\./, $_[1]); if ($lo[0] < 128) { $mismatch = 1 if ($lo[0] != $io[0]); } elsif ($lo[0] < 192) { $mismatch = 1 if ($lo[0] != $io[0] || $lo[1] != $io[1]); } else { $mismatch = 1 if ($lo[0] != $io[0] || $lo[1] != $io[1] || $lo[2] != $io[2]); } } else { # Compare with IP or network @mo = split(/\./, $_[$i]); while(@mo && !$mo[$#mo]) { pop(@mo); } for($j=0; $j<@mo; $j++) { if ($mo[$j] != $io[$j]) { $mismatch = 1; } } } return 1 if (!$mismatch); } return 0; } # restart_miniserv() # Called when a SIGHUP is received to restart the web server. This is done # by exec()ing perl with the same command line as was originally used sub restart_miniserv { close(SOCK); close(MAIN); foreach $p (@passin) { close($p); } foreach $p (@passout) { close($p); } if ($logclearer) { kill('TERM', $logclearer); } exec($perl_path, $miniserv_path, @miniserv_argv); die "Failed to restart miniserv with $perl_path $miniserv_path"; } sub trigger_restart { $need_restart = 1; } sub to_ipaddress { local (@rv, $i); foreach $i (@_) { if ($i =~ /(\S+)\/(\S+)/ || $i =~ /^\*\S+$/ || $i eq 'LOCAL') { push(@rv, $i); } else { push(@rv, join('.', unpack("CCCC", inet_aton($i)))); } } return @rv; } # read_line() # Reads one line from SOCK or SSL sub read_line { local($idx, $more, $rv); if ($use_ssl) { while(($idx = index($read_buffer, "\n")) < 0) { # need to read more.. if (!($more = Net::SSLeay::read($ssl_con))) { # end of the data $rv = $read_buffer; undef($read_buffer); return $rv; } $read_buffer .= $more; } $rv = substr($read_buffer, 0, $idx+1); $read_buffer = substr($read_buffer, $idx+1); return $rv; } else { return ; } } # read_data(length) # Reads up to some amount of data from SOCK or the SSL connection sub read_data { if ($use_ssl) { local($rv); if (length($read_buffer)) { $rv = $read_buffer; undef($read_buffer); return $rv; } else { return Net::SSLeay::read($ssl_con, $_[0]); } } else { local $buf; read(SOCK, $buf, $_[0]) || return undef; return $buf; } } # write_data(data) # Writes a string to SOCK or the SSL connection sub write_data { if ($use_ssl) { Net::SSLeay::write($ssl_con, $_[0]); } else { syswrite(SOCK, $_[0], length($_[0])); } $write_data_count += length($_[0]); } # reset_byte_count() sub reset_byte_count { $write_data_count = 0; } # byte_count() sub byte_count { return $write_data_count; } # log_request(hostname, user, request, code, bytes) sub log_request { if ($config{'log'}) { local(@tm, $dstr, $user, $ident, $headers); if ($config{'logident'}) { # add support for rfc1413 identity checking here } else { $ident = "-"; } @tm = localtime(time()); $dstr = sprintf "%2.2d/%s/%4.4d:%2.2d:%2.2d:%2.2d %s", $tm[3], $make_date_marr[$tm[4]], $tm[5]+1900, $tm[2], $tm[1], $tm[0], $timezone; $user = $_[1] ? $_[1] : "-"; if (fileno(MINISERVLOG)) { seek(MINISERVLOG, 0, 2); } else { open(MINISERVLOG, ">>$config{'logfile'}"); chmod(0600, $config{'logfile'}); } foreach $h (split(/\s+/, $config{'logheaders'})) { $headers .= " $h=\"$header{$h}\""; } print MINISERVLOG "$_[0] $ident $user [$dstr] \"$_[2]\" ", "$_[3] $_[4]$headers\n"; close(MINISERVLOG); } } # read_errors(handle) # Read and return all input from some filehandle sub read_errors { local($fh, $_, $rv); $fh = $_[0]; while(<$fh>) { $rv .= $_; } return $rv; } sub write_keep_alive { local $mode; if (@_) { $mode = $_[0]; } else { $mode = &check_keep_alive(); } &write_data("Connection: ".($mode ? "Keep-Alive" : "close")."\r\n"); } sub check_keep_alive { return $header{'connection'} =~ /keep-alive/i; } sub term_handler { if (@childpids) { kill('TERM', @childpids); } exit(1); } sub http_date { local @tm = gmtime($_[0]); return sprintf "%s, %d %s %d %2.2d:%2.2d:%2.2d GMT", $weekday[$tm[6]], $tm[3], $month[$tm[4]], $tm[5]+1900, $tm[2], $tm[1], $tm[0]; } sub TIEHANDLE { my $i; bless \$i, shift; } sub WRITE { $r = shift; my($buf,$len,$offset) = @_; &write_to_sock(substr($buf, $offset, $len)); } sub PRINT { $r = shift; $$r++; &write_to_sock(@_); } sub PRINTF { shift; my $fmt = shift; &write_to_sock(sprintf $fmt, @_); } sub READ { $r = shift; substr($_[0], $_[2], $_[1]) = substr($postinput, $postpos, $_[1]); $postpos += $_[1]; } sub OPEN { print STDERR "open() called - should never happen!\n"; } sub READLINE { if ($postpos >= length($postinput)) { return undef; } local $idx = index($postinput, "\n", $postpos); if ($idx < 0) { local $rv = substr($postinput, $postpos); $postpos = length($postinput); return $rv; } else { local $rv = substr($postinput, $postpos, $idx-$postpos+1); $postpos = $idx+1; return $rv; } } sub GETC { return $postpos >= length($postinput) ? undef : substr($postinput, $postpos++, 1); } sub CLOSE { } sub DESTROY { } # write_to_sock(data, ...) sub write_to_sock { foreach $d (@_) { if ($doneheaders || $miniserv::nph_script) { &write_data($d); } else { $headers .= $d; while(!$doneheaders && $headers =~ s/^(.*)(\r)?\n//) { if ($1 =~ /^(\S+):\s+(.*)$/) { $cgiheader{lc($1)} = $2; } elsif ($1 !~ /\S/) { $doneheaders++; } else { &http_error(500, "Bad Header"); } } if ($doneheaders) { if ($cgiheader{"location"}) { &write_data( "HTTP/1.0 302 Moved Temporarily\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{server}\r\n"); &write_keep_alive(0); } elsif ($cgiheader{"content-type"} eq "") { &http_error(500, "Missing Content-Type Header"); } else { &write_data("HTTP/1.0 $ok_code $ok_message\r\n"); &write_data("Date: $datestr\r\n"); &write_data("Server: $config{server}\r\n"); &write_keep_alive(0); } foreach $h (keys %cgiheader) { &write_data("$h: $cgiheader{$h}\r\n"); } &write_data("\r\n"); &reset_byte_count(); &write_data($headers); } } } } sub verify_client { local $cert = Net::SSLeay::X509_STORE_CTX_get_current_cert($_[1]); if ($cert) { local $errnum = Net::SSLeay::X509_STORE_CTX_get_error($_[1]); $verified_client = 1 if (!$errnum); } return 1; } sub END { if ($doing_eval) { # A CGI program called exit! This is a horrible hack to # finish up before really exiting close(SOCK); &log_request($acpthost, $authuser, $reqline, $cgiheader{"location"} ? "302" : $ok_code, &byte_count()); } } # urlize # Convert a string to a form ok for putting in a URL sub urlize { local($tmp, $tmp2, $c); $tmp = $_[0]; $tmp2 = ""; while(($c = chop($tmp)) ne "") { if ($c !~ /[A-z0-9]/) { $c = sprintf("%%%2.2X", ord($c)); } $tmp2 = $c . $tmp2; } return $tmp2; } # validate_user(username, password) sub validate_user { return 0 if (!$_[0] || !$users{$_[0]}); if ($users{$_[0]} eq 'x' && $use_pam) { $pam_username = $_[0]; $pam_password = $_[1]; local $pamh = new Authen::PAM("miniserv", $pam_username, \&pam_conv_func); if (!ref($pamh)) { print STDERR "PAM init failed : $pamh\n"; return 0; } local $pam_ret = $pamh->pam_authenticate(); return $pam_ret == PAM_SUCCESS ? 1 : 0; } else { return $users{$_[0]} eq crypt($_[1], $users{$_[0]}) ? 1 : 0; } } # the PAM conversation function for interactive logins sub pam_conv_func { my @res; while ( @_ ) { my $code = shift; my $msg = shift; my $ans = ""; $ans = $pam_username if ($code == PAM_PROMPT_ECHO_ON() ); $ans = $pam_password if ($code == PAM_PROMPT_ECHO_OFF() ); push @res, PAM_SUCCESS(); push @res, $ans; } push @res, PAM_SUCCESS(); return @res; } '100%'> -rw-r--r--zarb-ml/mageia-webteam/2011-April.txt.gzbin0 -> 43331 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-April/000622.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000623.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000624.html139
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000625.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000626.html133
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000627.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000628.html64
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000629.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000630.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000631.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000632.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000633.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000634.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000635.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000636.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000637.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000638.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000639.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000640.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000641.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000642.html124
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000643.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000644.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000645.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000646.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000647.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000648.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000649.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000650.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000651.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000652.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000653.html128
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000654.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000655.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000656.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000657.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000658.html111
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000659.html117
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000660.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000661.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000662.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000663.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000664.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000665.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000666.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000667.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000668.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000669.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000670.html123
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000671.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000672.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000673.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000674.html113
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000675.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000676.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000677.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000678.html111
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000679.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000680.html127
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000681.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000682.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000683.html128
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000684.html128
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000685.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000686.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000687.html126
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000688.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000689.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000690.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000691.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000692.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000693.html128
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000694.html131
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000695.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000696.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000697.html139
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000698.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000699.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000700.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000701.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000702.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000703.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000704.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000705.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000706.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000707.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000708.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000709.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000710.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000711.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000712.html113
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000713.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000714.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000715.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000716.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000717.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000718.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000719.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000720.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000721.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000722.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000723.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000724.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000725.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000726.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000727.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000728.html131
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000729.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000730.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000731.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000732.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000733.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000734.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000735.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000736.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000737.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000738.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000739.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000740.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000741.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000742.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000743.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000744.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000745.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000746.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000747.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000748.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000749.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000750.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000751.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000752.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000753.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000754.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000755.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000756.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000757.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000758.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000759.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000760.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000761.html124
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000762.html113
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000763.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000764.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000765.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000766.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000767.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000768.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000769.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000770.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000771.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000772.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000773.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000774.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000775.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000776.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000777.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000778.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000779.html118
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000780.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000781.html118
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000782.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000783.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000784.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000785.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000786.html121
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000787.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000788.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000789.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000790.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000791.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000792.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000793.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000794.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000795.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000796.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000797.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000798.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000799.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000800.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000801.html125
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000802.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000803.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000804.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000805.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000806.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000807.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000808.html108
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000809.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000810.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000811.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000812.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000813.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000814.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000815.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000816.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000817.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000818.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000819.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000820.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000821.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-April/000822.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-April/author.html1052
-rw-r--r--zarb-ml/mageia-webteam/2011-April/date.html1052
l---------zarb-ml/mageia-webteam/2011-April/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-April/subject.html1052
-rw-r--r--zarb-ml/mageia-webteam/2011-April/thread.html1317
-rw-r--r--zarb-ml/mageia-webteam/2011-August.txt.gzbin0 -> 5924 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-August/001322.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001323.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001324.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001325.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001326.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001327.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001328.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001329.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001330.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001331.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001332.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001333.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001334.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001335.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001336.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001337.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001338.html112
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001339.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-August/001340.html138
-rw-r--r--zarb-ml/mageia-webteam/2011-August/author.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-August/date.html142
l---------zarb-ml/mageia-webteam/2011-August/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-August/subject.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-August/thread.html165
-rw-r--r--zarb-ml/mageia-webteam/2011-December.txt.gzbin0 -> 16814 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-December/001579.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001580.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001581.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001582.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001583.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001584.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001585.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001586.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001587.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001588.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001589.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001590.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001591.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001592.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001593.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001594.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001595.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001596.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001597.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001598.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001599.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001600.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001601.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001602.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001603.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001604.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001605.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001606.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001607.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001608.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001609.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001610.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001611.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001612.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001613.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001614.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001615.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001616.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001617.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001618.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001619.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001620.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001621.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001622.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001623.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001624.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001625.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001626.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001627.html113
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001628.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001629.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001630.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001631.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001632.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001633.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001634.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001635.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001636.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001637.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001638.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001639.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001640.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001641.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001642.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001643.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001644.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001645.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001646.html108
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001647.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001648.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001649.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001650.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001651.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001652.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001653.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001654.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001655.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001656.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001657.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001658.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001659.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001660.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001661.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001662.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001663.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-December/001664.html64
-rw-r--r--zarb-ml/mageia-webteam/2011-December/author.html477
-rw-r--r--zarb-ml/mageia-webteam/2011-December/date.html477
l---------zarb-ml/mageia-webteam/2011-December/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-December/subject.html477
-rw-r--r--zarb-ml/mageia-webteam/2011-December/thread.html575
-rw-r--r--zarb-ml/mageia-webteam/2011-February.txt.gzbin0 -> 39193 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-February/000209.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000210.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000211.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000212.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000213.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000214.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000215.html119
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000216.html145
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000217.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000218.html153
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000219.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000220.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000221.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000222.html62
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000223.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000224.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000225.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000226.html109
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000227.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000228.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000229.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000230.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000231.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000232.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000233.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000234.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000235.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000236.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000237.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000238.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000239.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000240.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000241.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000242.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000243.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000244.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000245.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000246.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000247.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000248.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000249.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000250.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000251.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000252.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000253.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000254.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000255.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000256.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000257.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000258.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000259.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000260.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000261.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000262.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000263.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000264.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000265.html121
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000266.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000267.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000268.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000269.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000270.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000271.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000272.html150
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000273.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000274.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000275.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000276.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000277.html124
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000278.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000279.html130
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000280.html124
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000281.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000282.html123
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000283.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000284.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000285.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000286.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000287.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000288.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000289.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000290.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000291.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000292.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000293.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000294.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000295.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000296.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000297.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000298.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000299.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000300.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000301.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000302.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000303.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000304.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000305.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000306.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000307.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000308.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000309.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000310.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000311.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000312.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000313.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000314.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000315.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000316.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000317.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000318.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000319.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000320.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000321.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000322.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000323.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000324.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000325.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000326.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000327.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000328.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000329.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000330.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000331.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000332.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000333.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000334.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000335.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000336.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000337.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000338.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000339.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000340.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000341.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000342.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000343.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000344.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000345.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000346.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000347.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000348.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000349.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000350.html64
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000351.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000352.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000353.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000354.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000355.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000356.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000357.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000358.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000359.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000360.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000361.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000362.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000363.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000364.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000365.html133
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000366.html167
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000367.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000368.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000369.html168
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000370.html148
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000371.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000372.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000373.html139
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000374.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000375.html109
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000376.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000377.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000378.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000379.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000380.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000381.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000382.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000383.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000384.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000385.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-February/000386.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-February/author.html937
-rw-r--r--zarb-ml/mageia-webteam/2011-February/date.html937
l---------zarb-ml/mageia-webteam/2011-February/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-February/subject.html937
-rw-r--r--zarb-ml/mageia-webteam/2011-February/thread.html1189
-rw-r--r--zarb-ml/mageia-webteam/2011-January.txt.gzbin0 -> 68134 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-January/000083.html114
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000084.html125
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000085.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000086.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000087.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000088.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000089.html64
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000090.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000091.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000092.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000093.html121
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000094.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000095.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000096.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000097.html123
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000098.html171
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000099.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000100.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000101.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000102.html111
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000103.html113
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000104.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000105.html117
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000106.html64
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000107.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000108.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000109.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000110.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000111.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000112.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000113.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000114.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000115.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000116.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000117.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000118.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000119.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000120.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000121.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000122.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000123.html264
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000124.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000125.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000126.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000127.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000128.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000129.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000130.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000131.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000132.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000133.html151
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000134.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000135.html129
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000136.html124
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000137.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000138.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000139.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000140.html153
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000141.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000142.html116
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000143.html151
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000144.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000145.html123
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000146.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000147.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000148.html324
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000149.html168
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000150.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000151.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000152.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000153.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000154.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000155.html157
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000156.html335
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000157.html144
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000158.html161
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000159.html378
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000160.html116
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000161.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000162.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000163.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000164.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000165.html62
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000166.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000167.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000168.html118
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000169.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000170.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000171.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000172.html109
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000173.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000174.html103
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000175.html124
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000176.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000177.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000178.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000179.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000180.html124
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000181.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000182.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000183.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000184.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000185.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000186.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000187.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000188.html116
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000189.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000190.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000191.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000192.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000193.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000194.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000195.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000196.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000197.html151
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000198.html126
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000199.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000200.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000201.html134
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000202.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000203.html119
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000204.html144
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000205.html128
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000206.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000207.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-January/000208.html62
-rw-r--r--zarb-ml/mageia-webteam/2011-January/author.html677
-rw-r--r--zarb-ml/mageia-webteam/2011-January/date.html677
l---------zarb-ml/mageia-webteam/2011-January/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-January/subject.html677
-rw-r--r--zarb-ml/mageia-webteam/2011-January/thread.html909
-rw-r--r--zarb-ml/mageia-webteam/2011-July.txt.gzbin0 -> 21162 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-July/001255.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001256.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001257.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001258.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001259.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001260.html149
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001261.html133
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001262.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001263.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001264.html151
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001265.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001266.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001267.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001268.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001269.html282
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001270.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001271.html147
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001272.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001273.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001274.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001275.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001276.html332
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001277.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001278.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001279.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001280.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001281.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001282.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001283.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001284.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001285.html61
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001286.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001287.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001288.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001289.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001290.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001291.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001292.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001293.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001294.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001295.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001296.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001297.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001298.html63
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001299.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001300.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001301.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001302.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001303.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001304.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001305.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001306.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001307.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001309.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001310.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001311.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001312.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001313.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001314.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001315.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001316.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001317.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001318.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001319.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001320.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-July/001321.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-July/author.html377
-rw-r--r--zarb-ml/mageia-webteam/2011-July/date.html377
l---------zarb-ml/mageia-webteam/2011-July/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-July/subject.html377
-rw-r--r--zarb-ml/mageia-webteam/2011-July/thread.html469
-rw-r--r--zarb-ml/mageia-webteam/2011-June.txt.gzbin0 -> 94950 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-June/001020.html128
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001021.html165
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001022.html112
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001023.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001024.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001025.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001026.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001027.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001028.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001029.html131
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001030.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001031.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001032.html143
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001033.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001034.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001035.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001036.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001037.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001038.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001039.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001040.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001041.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001042.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001043.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001044.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001045.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001046.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001047.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001048.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001049.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001050.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001051.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001052.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001053.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001054.html108
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001055.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001056.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001057.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001058.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001059.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001060.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001061.html130
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001062.html112
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001063.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001064.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001065.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001066.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001067.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001068.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001069.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001070.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001071.html109
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001072.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001073.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001074.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001075.html129
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001076.html129
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001077.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001078.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001079.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001080.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001081.html127
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001082.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001089.html1003
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001090.html60
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001091.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001092.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001093.html127
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001094.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001095.html114
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001096.html108
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001097.html111
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001098.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001099.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001100.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001101.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001102.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001103.html130
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001104.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001105.html131
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001106.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001107.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001108.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001109.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001110.html138
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001111.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001112.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001113.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001114.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001115.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001116.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001117.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001118.html135
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001119.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001120.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001121.html145
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001122.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001123.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001124.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001125.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001126.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001127.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001128.html144
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001129.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001130.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001131.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001132.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001133.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001134.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001135.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001136.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001137.html63
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001138.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001139.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001140.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001141.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001142.html150
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001143.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001144.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001145.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001146.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001147.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001148.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001149.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001150.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001151.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001152.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001153.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001154.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001155.html143
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001156.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001157.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001158.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001159.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001160.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001161.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001162.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001163.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001164.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001165.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001166.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001167.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001168.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001169.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001170.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001171.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001172.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001173.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001174.html143
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001175.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001176.html146
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001177.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001178.html147
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001179.html149
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001180.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001181.html148
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001182.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001183.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001184.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001185.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001186.html150
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001187.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001188.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001189.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001190.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001191.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001192.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001193.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001194.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001195.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001196.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001197.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001198.html155
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001199.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001200.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001201.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001202.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001203.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001204.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001205.html155
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001206.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001207.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001208.html114
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001209.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001210.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001211.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001212.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001213.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001214.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001215.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001216.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001217.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001218.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001219.html119
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001220.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001221.html159
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001222.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001223.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001224.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001225.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001226.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001227.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001228.html123
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001229.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001230.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001231.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001232.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001233.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001234.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001235.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001236.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001237.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001238.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001239.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001240.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001241.html153
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001242.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001243.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001244.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001245.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001246.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001247.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001248.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001249.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001250.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001251.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001252.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001253.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001254.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-June/001308.html789
-rw-r--r--zarb-ml/mageia-webteam/2011-June/author.html1197
-rw-r--r--zarb-ml/mageia-webteam/2011-June/date.html1197
l---------zarb-ml/mageia-webteam/2011-June/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-June/subject.html1197
-rw-r--r--zarb-ml/mageia-webteam/2011-June/thread.html1515
-rw-r--r--zarb-ml/mageia-webteam/2011-March.txt.gzbin0 -> 71604 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-March/000387.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000388.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000389.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000390.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000391.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000392.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000393.html138
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000394.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000395.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000396.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000397.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000398.html63
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000399.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000400.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000401.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000402.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000403.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000404.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000405.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000406.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000407.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000408.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000409.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000410.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000411.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000412.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000413.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000414.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000415.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000416.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000417.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000418.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000419.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000420.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000421.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000422.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000423.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000424.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000425.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000426.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000427.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000428.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000429.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000430.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000431.html211
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000432.html189
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000433.html251
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000434.html236
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000435.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000436.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000437.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000438.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000439.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000440.html119
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000441.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000442.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000443.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000444.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000445.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000446.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000447.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000448.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000449.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000450.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000451.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000452.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000453.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000454.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000455.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000456.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000457.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000458.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000459.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000460.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000461.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000462.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000463.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000464.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000465.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000466.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000467.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000468.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000469.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000470.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000471.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000472.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000473.html143
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000474.html128
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000475.html144
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000476.html173
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000477.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000478.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000479.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000480.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000481.html64
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000482.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000483.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000484.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000485.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000486.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000487.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000488.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000489.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000490.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000491.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000492.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000493.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000494.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000495.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000496.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000497.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000498.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000499.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000500.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000501.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000502.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000503.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000504.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000505.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000506.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000507.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000508.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000509.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000510.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000511.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000512.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000513.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000514.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000515.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000516.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000517.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000518.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000519.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000520.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000521.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000522.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000523.html107
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000524.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000525.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000526.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000527.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000528.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000529.html119
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000530.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000531.html108
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000532.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000533.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000534.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000535.html122
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000536.html126
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000537.html114
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000538.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000539.html154
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000540.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000541.html130
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000542.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000543.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000544.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000545.html113
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000546.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000547.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000548.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000549.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000550.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000551.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000552.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000553.html107
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000554.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000555.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000556.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000557.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000558.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000559.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000560.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000561.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000562.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000563.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000564.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000565.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000566.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000567.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000568.html132
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000569.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000570.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000571.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000572.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000573.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000574.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000575.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000576.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000577.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000578.html109
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000579.html111
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000580.html62
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000581.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000582.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000583.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000584.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000585.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000586.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000587.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000588.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000589.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000590.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000591.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000592.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000593.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000594.html107
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000595.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000596.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000597.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000598.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000599.html139
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000600.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000601.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000602.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000603.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000604.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000605.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000606.html112
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000607.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000608.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000609.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000610.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000611.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000612.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000613.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000614.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000615.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000616.html108
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000617.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000618.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000619.html123
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000620.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-March/000621.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-March/author.html1222
-rw-r--r--zarb-ml/mageia-webteam/2011-March/date.html1222
l---------zarb-ml/mageia-webteam/2011-March/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-March/subject.html1222
-rw-r--r--zarb-ml/mageia-webteam/2011-March/thread.html1577
-rw-r--r--zarb-ml/mageia-webteam/2011-May.txt.gzbin0 -> 41681 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-May/000823.html116
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000824.html118
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000825.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000826.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000827.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000828.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000829.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000830.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000831.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000832.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000833.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000834.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000835.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000836.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000837.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000838.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000839.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000840.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000841.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000842.html126
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000843.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000844.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000845.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000846.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000847.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000848.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000849.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000850.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000851.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000852.html120
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000853.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000854.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000855.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000856.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000857.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000858.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000859.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000860.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000861.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000862.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000863.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000864.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000865.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000866.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000867.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000868.html121
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000869.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000870.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000871.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000872.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000873.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000874.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000875.html108
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000876.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000877.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000878.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000879.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000880.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000881.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000882.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000883.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000884.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000885.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000886.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000887.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000888.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000889.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000890.html132
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000891.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000892.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000893.html125
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000894.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000895.html132
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000896.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000897.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000898.html134
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000899.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000900.html135
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000901.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000902.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000903.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000904.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000905.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000906.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000907.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000908.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000909.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000910.html109
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000911.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000912.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000913.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000914.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000915.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000916.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000917.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000918.html142
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000919.html141
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000920.html149
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000921.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000922.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000923.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000924.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000925.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000926.html134
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000927.html138
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000928.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000929.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000930.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000931.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000932.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000933.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000934.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000935.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000936.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000937.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000938.html140
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000939.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000940.html105
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000941.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000942.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000943.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000944.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000945.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000946.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000947.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000948.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000949.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000950.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000951.html144
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000952.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000953.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000954.html97
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000955.html93
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000956.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000957.html145
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000958.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000959.html144
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000960.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000961.html144
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000962.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000963.html143
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000964.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000965.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000966.html100
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000967.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000968.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000969.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000970.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000971.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000972.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000973.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000974.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000975.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000976.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000977.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000978.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000979.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000980.html132
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000981.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000982.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000983.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000984.html99
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000985.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000986.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000987.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000988.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000989.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000990.html137
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000991.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000992.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000993.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000994.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000995.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000996.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000997.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000998.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-May/000999.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001000.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001001.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001002.html136
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001003.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001004.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001005.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001006.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001007.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001008.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001009.html143
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001010.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001011.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001012.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001013.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001014.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001015.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001016.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001017.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001018.html103
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001019.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001083.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001084.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001085.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001086.html63
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001087.html60
-rw-r--r--zarb-ml/mageia-webteam/2011-May/001088.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-May/author.html1062
-rw-r--r--zarb-ml/mageia-webteam/2011-May/date.html1062
l---------zarb-ml/mageia-webteam/2011-May/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-May/subject.html1062
-rw-r--r--zarb-ml/mageia-webteam/2011-May/thread.html1329
-rw-r--r--zarb-ml/mageia-webteam/2011-November.txt.gzbin0 -> 17209 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-November/001504.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001505.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001506.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001507.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001508.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001509.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001510.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001511.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001512.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001513.html92
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001514.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001515.html118
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001516.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001517.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001518.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001519.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001520.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001521.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001522.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001523.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001524.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001525.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001526.html114
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001527.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001528.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001529.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001530.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001531.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001532.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001533.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001534.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001535.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001536.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001537.html102
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001538.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001539.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001540.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001541.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001542.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001543.html104
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001544.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001545.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001546.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001547.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001548.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001549.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001550.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001551.html64
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001552.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001553.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001554.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001555.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001556.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001557.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001558.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001559.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001560.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001561.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001562.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001563.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001564.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001565.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001566.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001567.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001568.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001569.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001570.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001571.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001572.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001573.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001574.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001575.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001576.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001577.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-November/001578.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-November/author.html422
-rw-r--r--zarb-ml/mageia-webteam/2011-November/date.html422
l---------zarb-ml/mageia-webteam/2011-November/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-November/subject.html422
-rw-r--r--zarb-ml/mageia-webteam/2011-November/thread.html525
-rw-r--r--zarb-ml/mageia-webteam/2011-October.txt.gzbin0 -> 24275 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-October/001373.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001374.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001375.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001376.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001377.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001378.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001379.html111
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001380.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001381.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001382.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001383.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001384.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001385.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001386.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001387.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001388.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001389.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001390.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001391.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001392.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001393.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001394.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001395.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001396.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001397.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001398.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001399.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001400.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001401.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001402.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001403.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001404.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001405.html106
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001406.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001407.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001408.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001409.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001410.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001411.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001412.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001413.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001414.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001415.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001416.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001417.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001418.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001419.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001420.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001421.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001422.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001423.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001424.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001425.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001426.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001427.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001428.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001429.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001430.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001431.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001432.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001433.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001434.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001435.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001436.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001437.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001438.html111
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001439.html101
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001440.html96
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001441.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001442.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001443.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001444.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001445.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001446.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001447.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001448.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001449.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001450.html91
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001451.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001452.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001453.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001454.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001455.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001456.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001457.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001458.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001459.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001460.html83
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001461.html86
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001462.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001463.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001464.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001465.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001466.html95
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001467.html80
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001468.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001469.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001470.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001471.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001472.html88
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001473.html98
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001474.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001475.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001476.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001477.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001478.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001479.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001480.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001481.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001482.html77
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001483.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001484.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001485.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001486.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001487.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001488.html94
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001489.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001490.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001491.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001492.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001493.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001494.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001495.html70
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001496.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001497.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001498.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001499.html66
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001500.html85
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001501.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001502.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-October/001503.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-October/author.html702
-rw-r--r--zarb-ml/mageia-webteam/2011-October/date.html702
l---------zarb-ml/mageia-webteam/2011-October/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-October/subject.html702
-rw-r--r--zarb-ml/mageia-webteam/2011-October/thread.html851
-rw-r--r--zarb-ml/mageia-webteam/2011-September.txt.gzbin0 -> 8042 bytes-rw-r--r--zarb-ml/mageia-webteam/2011-September/001341.html90
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001342.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001343.html65
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001344.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001345.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001346.html84
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001347.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001348.html72
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001349.html69
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001350.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001351.html115
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001352.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001353.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001354.html87
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001355.html79
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001356.html81
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001357.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001358.html75
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001359.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001360.html76
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001361.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001362.html78
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001363.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001364.html89
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001365.html117
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001366.html110
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001367.html67
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001368.html71
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001369.html74
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001370.html73
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001371.html68
-rw-r--r--zarb-ml/mageia-webteam/2011-September/001372.html82
-rw-r--r--zarb-ml/mageia-webteam/2011-September/author.html207
-rw-r--r--zarb-ml/mageia-webteam/2011-September/date.html207
l---------zarb-ml/mageia-webteam/2011-September/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2011-September/subject.html207
-rw-r--r--zarb-ml/mageia-webteam/2011-September/thread.html253
-rw-r--r--zarb-ml/mageia-webteam/2012-April.txt.gzbin0 -> 9749 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-April/001875.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001876.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001877.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001878.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001879.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001880.html168
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001881.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001882.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001883.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001884.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001885.html89
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001886.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001887.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001888.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001889.html111
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001890.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001891.html119
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001892.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001893.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001894.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001895.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001896.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001897.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001898.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001899.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001900.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001901.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001902.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-April/001903.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-April/author.html192
-rw-r--r--zarb-ml/mageia-webteam/2012-April/date.html192
l---------zarb-ml/mageia-webteam/2012-April/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-April/subject.html192
-rw-r--r--zarb-ml/mageia-webteam/2012-April/thread.html229
-rw-r--r--zarb-ml/mageia-webteam/2012-August.txt.gzbin0 -> 12150 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-August/002124.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002125.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002126.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002127.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002128.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002129.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002130.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002131.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002132.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002133.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002134.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002135.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002136.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002137.html90
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002138.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002139.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002140.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002141.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002142.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002143.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002144.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002145.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002146.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002147.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002148.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002149.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002150.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002151.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002152.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002153.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002154.html100
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002155.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002156.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002157.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002158.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002159.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002160.html89
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002161.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002162.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002163.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002164.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002165.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002166.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002167.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002168.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002169.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002170.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002171.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002172.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002173.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002174.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002175.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002176.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002177.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002178.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002179.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002180.html94
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002181.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002182.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002183.html95
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002184.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002185.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002186.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002187.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-August/002188.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-August/author.html372
-rw-r--r--zarb-ml/mageia-webteam/2012-August/date.html372
l---------zarb-ml/mageia-webteam/2012-August/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-August/subject.html372
-rw-r--r--zarb-ml/mageia-webteam/2012-August/thread.html457
-rw-r--r--zarb-ml/mageia-webteam/2012-December.txt.gzbin0 -> 8314 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-December/002221.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002222.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002223.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002224.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002225.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002226.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002227.html94
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002228.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002229.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002230.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002231.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002232.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002233.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002234.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002235.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002236.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002237.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002238.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002239.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002240.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002241.html90
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002242.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002243.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002244.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002245.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002246.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002247.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002248.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002249.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002250.html95
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002251.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002252.html100
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002253.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002254.html95
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002255.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002256.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002257.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002258.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002259.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002260.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002261.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002262.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002263.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002264.html101
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002265.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002266.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-December/002267.html109
-rw-r--r--zarb-ml/mageia-webteam/2012-December/author.html282
-rw-r--r--zarb-ml/mageia-webteam/2012-December/date.html282
l---------zarb-ml/mageia-webteam/2012-December/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-December/subject.html282
-rw-r--r--zarb-ml/mageia-webteam/2012-December/thread.html337
-rw-r--r--zarb-ml/mageia-webteam/2012-February.txt.gzbin0 -> 10809 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-February/001769.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001770.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001771.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001772.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001773.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001774.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001775.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001776.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001777.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001778.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001779.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001780.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001781.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001782.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001783.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001784.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001785.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001786.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001787.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001788.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001789.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001790.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001791.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001792.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001793.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001794.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001795.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001796.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001797.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001798.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001799.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001800.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001801.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001802.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001803.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001804.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001805.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001806.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001807.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001808.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001809.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-February/001810.html107
-rw-r--r--zarb-ml/mageia-webteam/2012-February/author.html257
-rw-r--r--zarb-ml/mageia-webteam/2012-February/date.html257
l---------zarb-ml/mageia-webteam/2012-February/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-February/subject.html257
-rw-r--r--zarb-ml/mageia-webteam/2012-February/thread.html309
-rw-r--r--zarb-ml/mageia-webteam/2012-January.txt.gzbin0 -> 16568 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-January/001665.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001666.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001667.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001668.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001669.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001670.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001671.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001672.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001673.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001674.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001675.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001676.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001677.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001678.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001679.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001680.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001681.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001682.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001683.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001684.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001685.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001686.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001687.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001688.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001689.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001690.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001691.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001692.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001693.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001694.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001695.html94
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001696.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001697.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001698.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001699.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001700.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001701.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001702.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001703.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001704.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001705.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001706.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001707.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001708.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001709.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001710.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001711.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001712.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001713.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001714.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001715.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001716.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001717.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001718.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001719.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001720.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001721.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001722.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001723.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001724.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001725.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001726.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001727.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001728.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001729.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001730.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001731.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001732.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001733.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001734.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001735.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001736.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001737.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001738.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001739.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001740.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001741.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001742.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001743.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001744.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001745.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001746.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001747.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001748.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001749.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001750.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001751.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001752.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001753.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001754.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001755.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001756.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001757.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001758.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001759.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001760.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001761.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001762.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001763.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001764.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001765.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001766.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001767.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-January/001768.html62
-rw-r--r--zarb-ml/mageia-webteam/2012-January/author.html567
-rw-r--r--zarb-ml/mageia-webteam/2012-January/date.html567
l---------zarb-ml/mageia-webteam/2012-January/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-January/subject.html567
-rw-r--r--zarb-ml/mageia-webteam/2012-January/thread.html683
-rw-r--r--zarb-ml/mageia-webteam/2012-July.txt.gzbin0 -> 7878 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-July/002097.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002098.html62
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002099.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002100.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002101.html96
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002102.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002103.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002104.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002105.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002106.html97
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002107.html92
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002108.html104
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002109.html122
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002110.html129
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002111.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002112.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002113.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002114.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002115.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002116.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002117.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002118.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002119.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002120.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002121.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002122.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-July/002123.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-July/author.html182
-rw-r--r--zarb-ml/mageia-webteam/2012-July/date.html182
l---------zarb-ml/mageia-webteam/2012-July/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-July/subject.html182
-rw-r--r--zarb-ml/mageia-webteam/2012-July/thread.html223
-rw-r--r--zarb-ml/mageia-webteam/2012-June.txt.gzbin0 -> 16580 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-June/002016.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002017.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002018.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002019.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002020.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002021.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002022.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002023.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002024.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002025.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002026.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002027.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002028.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002029.html89
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002030.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002031.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002032.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002033.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002034.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002035.html100
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002036.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002037.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002038.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002039.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002040.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002041.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002042.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002043.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002044.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002045.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002046.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002047.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002048.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002049.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002050.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002051.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002052.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002053.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002054.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002055.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002056.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002057.html89
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002058.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002059.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002060.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002061.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002062.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002063.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002064.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002065.html92
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002066.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002067.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002068.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002069.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002070.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002071.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002072.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002073.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002074.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002075.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002076.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002077.html94
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002078.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002079.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002080.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002081.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002082.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002083.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002084.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002085.html89
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002086.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002087.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002088.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002089.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002090.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002091.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002092.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002093.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002094.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002095.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-June/002096.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-June/author.html452
-rw-r--r--zarb-ml/mageia-webteam/2012-June/date.html452
l---------zarb-ml/mageia-webteam/2012-June/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-June/subject.html452
-rw-r--r--zarb-ml/mageia-webteam/2012-June/thread.html559
-rw-r--r--zarb-ml/mageia-webteam/2012-March.txt.gzbin0 -> 14193 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-March/001811.html63
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001812.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001813.html94
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001814.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001815.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001816.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001817.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001818.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001819.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001820.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001821.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001822.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001823.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001824.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001825.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001826.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001827.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001828.html103
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001829.html97
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001830.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001831.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001832.html115
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001833.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001834.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001835.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001836.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001837.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001838.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001839.html95
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001840.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001841.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001842.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001843.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001844.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001845.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001846.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001847.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001848.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001849.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001850.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001851.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001852.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001853.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001854.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001855.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001856.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001857.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001858.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001859.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001860.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001861.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001862.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001863.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001864.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001865.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001866.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001867.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001868.html98
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001869.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001870.html84
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001871.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001872.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001873.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-March/001874.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-March/author.html367
-rw-r--r--zarb-ml/mageia-webteam/2012-March/date.html367
l---------zarb-ml/mageia-webteam/2012-March/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-March/subject.html367
-rw-r--r--zarb-ml/mageia-webteam/2012-March/thread.html451
-rw-r--r--zarb-ml/mageia-webteam/2012-May.txt.gzbin0 -> 20614 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-May/001904.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001905.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001906.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001907.html92
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001908.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001909.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001910.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001911.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001912.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001913.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001914.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001915.html138
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001916.html101
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001917.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001918.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001919.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001920.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001921.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001922.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001923.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001924.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001925.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001926.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001927.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001928.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001929.html59
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001930.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001931.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001932.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001933.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001934.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001935.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001936.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001937.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001938.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001939.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001940.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001941.html94
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001942.html95
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001943.html97
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001944.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001945.html97
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001946.html98
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001947.html99
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001948.html100
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001949.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001950.html101
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001951.html97
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001952.html101
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001953.html77
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001954.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001955.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001956.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001957.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001958.html89
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001959.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001960.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001961.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001962.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001963.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001964.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001965.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001966.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001967.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001968.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001969.html69
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001970.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001971.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001972.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001973.html90
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001974.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001975.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001976.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001977.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001978.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001979.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001980.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001981.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001982.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001983.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001984.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001985.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001986.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001987.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001988.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001989.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001990.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001991.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001992.html93
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001993.html85
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001994.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001995.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001996.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001997.html75
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001998.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-May/001999.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002000.html106
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002001.html73
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002002.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002003.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002004.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002005.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002006.html78
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002007.html88
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002008.html81
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002009.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002010.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002011.html98
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002012.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002013.html74
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002014.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-May/002015.html65
-rw-r--r--zarb-ml/mageia-webteam/2012-May/author.html607
-rw-r--r--zarb-ml/mageia-webteam/2012-May/date.html607
l---------zarb-ml/mageia-webteam/2012-May/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-May/subject.html607
-rw-r--r--zarb-ml/mageia-webteam/2012-May/thread.html773
-rw-r--r--zarb-ml/mageia-webteam/2012-November.txt.gzbin0 -> 5772 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-November/002204.html94
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002205.html92
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002206.html92
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002207.html83
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002208.html76
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002209.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002210.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002211.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002212.html98
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002213.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002214.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002215.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002216.html97
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002217.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002218.html71
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002219.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-November/002220.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-November/author.html132
-rw-r--r--zarb-ml/mageia-webteam/2012-November/date.html132
l---------zarb-ml/mageia-webteam/2012-November/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-November/subject.html132
-rw-r--r--zarb-ml/mageia-webteam/2012-November/thread.html153
-rw-r--r--zarb-ml/mageia-webteam/2012-October.txt.gzbin0 -> 2209 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-October/002196.html92
-rw-r--r--zarb-ml/mageia-webteam/2012-October/002197.html80
-rw-r--r--zarb-ml/mageia-webteam/2012-October/002198.html91
-rw-r--r--zarb-ml/mageia-webteam/2012-October/002199.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-October/002200.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-October/002201.html68
-rw-r--r--zarb-ml/mageia-webteam/2012-October/002202.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-October/002203.html63
-rw-r--r--zarb-ml/mageia-webteam/2012-October/author.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-October/date.html87
l---------zarb-ml/mageia-webteam/2012-October/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-October/subject.html87
-rw-r--r--zarb-ml/mageia-webteam/2012-October/thread.html99
-rw-r--r--zarb-ml/mageia-webteam/2012-September.txt.gzbin0 -> 1755 bytes-rw-r--r--zarb-ml/mageia-webteam/2012-September/002189.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-September/002190.html72
-rw-r--r--zarb-ml/mageia-webteam/2012-September/002191.html79
-rw-r--r--zarb-ml/mageia-webteam/2012-September/002192.html67
-rw-r--r--zarb-ml/mageia-webteam/2012-September/002193.html70
-rw-r--r--zarb-ml/mageia-webteam/2012-September/002194.html86
-rw-r--r--zarb-ml/mageia-webteam/2012-September/002195.html66
-rw-r--r--zarb-ml/mageia-webteam/2012-September/author.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-September/date.html82
l---------zarb-ml/mageia-webteam/2012-September/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2012-September/subject.html82
-rw-r--r--zarb-ml/mageia-webteam/2012-September/thread.html91
-rw-r--r--zarb-ml/mageia-webteam/2013-April.txt.gzbin0 -> 3402 bytes-rw-r--r--zarb-ml/mageia-webteam/2013-April/002436.html65
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002437.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002438.html96
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002439.html77
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002440.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002441.html96
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002442.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002443.html104
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002444.html74
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002445.html66
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002446.html78
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002447.html82
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002448.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-April/002449.html61
-rw-r--r--zarb-ml/mageia-webteam/2013-April/author.html117
-rw-r--r--zarb-ml/mageia-webteam/2013-April/date.html117
l---------zarb-ml/mageia-webteam/2013-April/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2013-April/subject.html117
-rw-r--r--zarb-ml/mageia-webteam/2013-April/thread.html139
-rw-r--r--zarb-ml/mageia-webteam/2013-February.txt.gzbin0 -> 14304 bytes-rw-r--r--zarb-ml/mageia-webteam/2013-February/002299.html81
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002300.html75
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002301.html80
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002302.html65
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002303.html65
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002304.html80
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002305.html87
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002306.html70
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002307.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002308.html85
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002309.html78
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002310.html77
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002311.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002312.html91
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002313.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002314.html83
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002315.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002316.html81
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002317.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002318.html82
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002319.html90
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002320.html82
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002321.html89
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002322.html87
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002323.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002324.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002325.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002326.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002327.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002328.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002329.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002330.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002331.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002332.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002333.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002334.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002335.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002336.html70
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002337.html77
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002338.html92
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002339.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002340.html97
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002341.html94
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002342.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002343.html96
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002344.html85
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002345.html82
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002346.html82
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002347.html78
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002348.html78
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002349.html82
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002350.html99
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002351.html101
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002352.html84
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002353.html80
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002354.html90
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002355.html83
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002356.html74
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002357.html80
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002358.html99
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002359.html80
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002360.html80
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002361.html87
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002362.html86
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002363.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002364.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002365.html77
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002366.html69
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002367.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002368.html75
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002369.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002370.html80
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002371.html75
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002372.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002373.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002374.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002375.html81
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002376.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002377.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002378.html75
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002379.html74
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002380.html70
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002381.html81
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002382.html89
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002383.html77
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002384.html79
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002385.html75
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002386.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002387.html86
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002388.html77
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002389.html73
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002390.html65
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002391.html65
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002392.html66
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002393.html70
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002394.html94
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002395.html65
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002396.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002397.html62
-rw-r--r--zarb-ml/mageia-webteam/2013-February/002398.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-February/author.html547
-rw-r--r--zarb-ml/mageia-webteam/2013-February/date.html547
l---------zarb-ml/mageia-webteam/2013-February/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2013-February/subject.html547
-rw-r--r--zarb-ml/mageia-webteam/2013-February/thread.html683
-rw-r--r--zarb-ml/mageia-webteam/2013-January.txt.gzbin0 -> 6570 bytes-rw-r--r--zarb-ml/mageia-webteam/2013-January/002268.html67
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002269.html66
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002270.html90
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002271.html69
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002272.html68
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002273.html105
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002274.html73
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002275.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002276.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002277.html69
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002278.html66
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002279.html73
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002280.html68
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002281.html70
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002282.html67
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002283.html68
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002284.html69
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002285.html67
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002286.html94
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002287.html67
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002288.html67
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002289.html88
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002290.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002291.html83
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002292.html81
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002293.html82
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002294.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002295.html66
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002296.html67
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002297.html67
-rw-r--r--zarb-ml/mageia-webteam/2013-January/002298.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-January/author.html202
-rw-r--r--zarb-ml/mageia-webteam/2013-January/date.html202
l---------zarb-ml/mageia-webteam/2013-January/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2013-January/subject.html202
-rw-r--r--zarb-ml/mageia-webteam/2013-January/thread.html237
-rw-r--r--zarb-ml/mageia-webteam/2013-March.txt.gzbin0 -> 6629 bytes-rw-r--r--zarb-ml/mageia-webteam/2013-March/002399.html69
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002400.html83
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002401.html64
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002402.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002403.html90
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002404.html100
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002405.html74
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002406.html69
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002407.html68
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002408.html78
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002409.html73
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002410.html83
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002411.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002412.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002413.html70
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002414.html75
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002415.html69
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002416.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002417.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002418.html72
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002419.html75
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002420.html115
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002421.html76
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002422.html68
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002423.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002424.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002425.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002426.html70
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002427.html64
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002428.html105
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002429.html65
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002430.html66
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002431.html71
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002432.html91
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002433.html92
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002434.html68
-rw-r--r--zarb-ml/mageia-webteam/2013-March/002435.html68
-rw-r--r--zarb-ml/mageia-webteam/2013-March/author.html232
-rw-r--r--zarb-ml/mageia-webteam/2013-March/date.html232
l---------zarb-ml/mageia-webteam/2013-March/index.html1
-rw-r--r--zarb-ml/mageia-webteam/2013-March/subject.html232
-rw-r--r--zarb-ml/mageia-webteam/2013-March/thread.html279
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101028/4124e914/attachment-0001.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101028/4124e914/attachment.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101104/68843efd/attachment-0001.html3
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101104/68843efd/attachment.html3
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101104/cd43ac5d/attachment-0001.html40
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101104/cd43ac5d/attachment.html40
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101105/10f9cc56/attachment-0001.html2
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101105/10f9cc56/attachment.html2
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101105/d2ca00a0/attachment-0001.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101105/d2ca00a0/attachment.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101112/1d0de107/attachment-0001.html22
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101112/1d0de107/attachment.html22
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101112/44740027/attachment-0001.html30
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101112/44740027/attachment.html30
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101112/c273e5ea/attachment-0001.html24
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101112/c273e5ea/attachment.html24
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101115/2db5f6e4/attachment-0001.html38
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101115/2db5f6e4/attachment.html38
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101117/ce5e3846/attachment-0001.html17
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101117/ce5e3846/attachment.html17
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101124/a6969791/attachment-0001.html38
-rw-r--r--zarb-ml/mageia-webteam/attachments/20101124/a6969791/attachment.html38
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110109/ba5548ee/attachment-0001.html8
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110109/ba5548ee/attachment.html8
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110113/3ae129a4/attachment-0001.asc7
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110113/3ae129a4/attachment.asc7
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110118/55724d7e/attachment-0001.html6
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110118/55724d7e/attachment.html6
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/394bcd40/attachment-0001.html5
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/394bcd40/attachment.html5
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/48e8778a/attachment-0001.html18
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/48e8778a/attachment.html18
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/7f6238a1/attachment-0001.html17
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/7f6238a1/attachment.html17
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/a8ed26f6/attachment-0001.html35
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110124/a8ed26f6/attachment.html35
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110210/7f42c0a9/attachment-0001.html8
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110210/7f42c0a9/attachment.html8
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110211/5be8dbb2/attachment-0001.html16
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110211/5be8dbb2/attachment.html16
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110213/365ff84e/attachment-0001.html4
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110213/365ff84e/attachment.html4
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110213/60c1f38a/attachment-0001.html4
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110213/60c1f38a/attachment.html4
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110215/097e88bf/attachment-0001.html73
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110215/097e88bf/attachment.html73
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110215/355f6b5d/attachment-0001.html49
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110215/355f6b5d/attachment.html49
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110215/68d66232/attachment-0001.html16
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110215/68d66232/attachment.html16
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110216/09b0e333/attachment-0001.html115
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110216/09b0e333/attachment-0002.html17
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110216/09b0e333/attachment-0003.html115
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110216/09b0e333/attachment.html17
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110301/110b0325/attachment-0001.html25
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110301/110b0325/attachment.html25
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110301/76386b5a/attachment-0001.html53
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110301/76386b5a/attachment.html53
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110303/12fc5698/attachment-0001.html20
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110303/12fc5698/attachment.html20
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110306/cef408fd/attachment-0001.html2
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110306/cef408fd/attachment.html2
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110308/bec52acb/attachment-0001.html135
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110308/bec52acb/attachment.html135
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110308/fd14a85b/attachment-0001.html54
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110308/fd14a85b/attachment.html54
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110309/ec36eb04/attachment-0001.html55
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110309/ec36eb04/attachment.html55
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110315/080538ae/attachment-0001.html20
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110315/080538ae/attachment.html20
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110315/d6694ce7/attachment-0001.html15
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110315/d6694ce7/attachment.html15
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110318/4826ed57/attachment-0001.html15
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110318/4826ed57/attachment.html15
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110322/8e14231f/attachment-0001.html68
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110322/8e14231f/attachment.html68
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110330/46120db2/attachment-0001.html25
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110330/46120db2/attachment.html25
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110330/6085d527/attachment-0001.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110330/6085d527/attachment.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110330/ac768177/attachment-0001.html16
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110330/ac768177/attachment.html16
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110401/9206cbe4/attachment-0001.html34
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110401/9206cbe4/attachment.html34
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110413/4a58b749/attachment-0001.html26
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110413/4a58b749/attachment.html26
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110415/e761a233/attachment-0001.html27
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110415/e761a233/attachment.html27
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110511/1101d5bf/attachment-0001.html23
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110511/1101d5bf/attachment.html23
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110511/85b63827/attachment-0001.html23
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110511/85b63827/attachment.html23
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110511/c66cc33d/attachment-0001.html19
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110511/c66cc33d/attachment.html19
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110518/9a32aa18/attachment-0001.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110518/9a32aa18/attachment-0001.objbin0 -> 4722 bytes-rw-r--r--zarb-ml/mageia-webteam/attachments/20110518/9a32aa18/attachment.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110518/9a32aa18/attachment.objbin0 -> 4722 bytes-rw-r--r--zarb-ml/mageia-webteam/attachments/20110521/04490652/attachment-0001.htm131
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110521/04490652/attachment-0001.html5
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110521/04490652/attachment.htm131
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110521/04490652/attachment.html5
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110526/2ad0e0e1/attachment-0001.html23
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110526/2ad0e0e1/attachment.html23
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110530/3e845bcc/attachment-0001.html32
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110530/3e845bcc/attachment.html32
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110531/a239b1a8/attachment-0001.html4
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110531/a239b1a8/attachment.html4
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110531/f11933d9/attachment-0001.html32
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110531/f11933d9/attachment.html32
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/0bfab5fa/attachment-0001.html21
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/0bfab5fa/attachment.html21
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/6ab4076f/attachment-0001.html49
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/6ab4076f/attachment.html49
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/789d05f6/attachment-0001.html31
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/789d05f6/attachment.html31
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/a735d897/attachment-0001.html18
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/a735d897/attachment.html18
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/c0d0ba27/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110601/c0d0ba27/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110602/cb0a5fb5/attachment-0001.html29
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110602/cb0a5fb5/attachment.html29
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110602/e22aa2d2/attachment-0001.html34
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110602/e22aa2d2/attachment.html34
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110603/f685c291/attachment-0001.html26
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110603/f685c291/attachment.html26
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110606/aacae32f/attachment-0001.asc11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110606/aacae32f/attachment.asc11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110609/2433e8ab/attachment-0001.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110609/2433e8ab/attachment.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110611/54796eea/attachment-0001.html25
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110611/54796eea/attachment.html25
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110614/7d9e46fd/attachment-0001.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110614/7d9e46fd/attachment.html1
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0001.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0002.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0003.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0004.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0005.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0006.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0007.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0008.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0009.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0010.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0011.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0012.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment-0013.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110831/e2846262/attachment.bin11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110912/5aa6d0e3/attachment-0001.html118
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110912/5aa6d0e3/attachment.html118
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110912/accf0476/attachment-0001.html111
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110912/accf0476/attachment.html111
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110920/af3471d8/attachment-0001.asc11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110920/af3471d8/attachment.asc11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110921/8c13474e/attachment-0001.html83
-rw-r--r--zarb-ml/mageia-webteam/attachments/20110921/8c13474e/attachment.html83
-rw-r--r--zarb-ml/mageia-webteam/attachments/20120515/05b33f74/attachment-0001.obj50
-rw-r--r--zarb-ml/mageia-webteam/attachments/20120515/05b33f74/attachment.obj50
-rw-r--r--zarb-ml/mageia-webteam/attachments/20120606/7224607f/attachment-0001.html37
-rw-r--r--zarb-ml/mageia-webteam/attachments/20120606/7224607f/attachment.html37
-rw-r--r--zarb-ml/mageia-webteam/attachments/20120701/21994098/attachment-0001.asc11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20120701/21994098/attachment.asc11
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/3e0e6368/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/3e0e6368/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/4ce7c667/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/4ce7c667/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/6f2c8877/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/6f2c8877/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/793839b9/attachment-0001.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/793839b9/attachment.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/8d668a91/attachment-0001.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/8d668a91/attachment.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/9638300b/attachment-0001.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/9638300b/attachment.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/a170bb4a/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/a170bb4a/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/c0751985/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/c0751985/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/da378d46/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/da378d46/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/e096486c/attachment-0001.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/e096486c/attachment.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/e32c8e4d/attachment-0001.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/e32c8e4d/attachment.html56
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/ecfd643c/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/ecfd643c/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/f2cbb6fb/attachment-0001.html47
-rw-r--r--zarb-ml/mageia-webteam/attachments/20130220/f2cbb6fb/attachment.html47
-rw-r--r--zarb-ml/mageia-webteam/index.html395
-rw-r--r--zarb-ml/mageia-webteam/pipermail.pck137
2826 files changed, 273323 insertions, 0 deletions
diff --git a/zarb-ml/mageia-webteam/2010-December.txt.gz b/zarb-ml/mageia-webteam/2010-December.txt.gz
new file mode 100644
index 000000000..9356aa195
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2010-December/000057.html b/zarb-ml/mageia-webteam/2010-December/000057.html
new file mode 100644
index 000000000..dec3f804d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000057.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012011704.59736.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="000058.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012011704.59736.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Dec 1 17:04:59 CET 2010</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#57">[ date ]</a>
+ <a href="thread.html#57">[ thread ]</a>
+ <a href="subject.html#57">[ subject ]</a>
+ <a href="author.html#57">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Today we had another very short meeting. Perhaps we should discuss the time of
+the meeting?
+
+Perhaps everyone interested in attending the meeting could write his preffered
+timespan (please in UTC) here.
+
+Below you can find the logs...
+
+Minutes:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.html</A>
+Minutes (text):
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.txt">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.txt</A>
+Log:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.log.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.log.html</A>
+
+--
+<A HREF="http://www.mageia.org/">http://www.mageia.org/</A> - Mageia, the magic continues
+
+
+Oliver Burger
+
+web team
+i18n team
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#57">[ date ]</a>
+ <a href="thread.html#57">[ thread ]</a>
+ <a href="subject.html#57">[ subject ]</a>
+ <a href="author.html#57">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000058.html b/zarb-ml/mageia-webteam/2010-December/000058.html
new file mode 100644
index 000000000..71c3d3f98
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000058.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3CAANLkTimR%2BMOmErRvuPyzc6GpOa7M16Q76r_8eBXczaW4%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000057.html">
+ <LINK REL="Next" HREF="000059.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3CAANLkTimR%2BMOmErRvuPyzc6GpOa7M16Q76r_8eBXczaW4%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Dec 2 11:44:19 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000057.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#58">[ date ]</a>
+ <a href="thread.html#58">[ thread ]</a>
+ <a href="subject.html#58">[ subject ]</a>
+ <a href="author.html#58">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, Dec 1, 2010 at 17:04, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+&gt;<i> Today we had another very short meeting. Perhaps we should discuss the time of
+</I>&gt;<i> the meeting?
+</I>
+A short meeting is not necessarily bad. All expected points were
+discussed there and had a status report. And new actions.
+
+The meeting real matter is to set a progress report and a pace to the
+team; and to allow anyone to voice/discuss concerns, points, etc. And
+that active team members follow the plan.
+
+&gt;<i> Perhaps everyone interested in attending the meeting could write his preffered
+</I>&gt;<i> timespan (please in UTC) here.
+</I>
+Indeed. Let's do that:
+ * Romain, Paris, UTC+1 (+2 in Daylight Saving Time), preferred
+between 10 and 18 UTC
+
+&gt;<i> Below you can find the logs...
+</I>
+Thanks!
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000057.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#58">[ date ]</a>
+ <a href="thread.html#58">[ thread ]</a>
+ <a href="subject.html#58">[ subject ]</a>
+ <a href="author.html#58">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000059.html b/zarb-ml/mageia-webteam/2010-December/000059.html
new file mode 100644
index 000000000..826c6bcba
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000059.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012021207.34210.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000058.html">
+ <LINK REL="Next" HREF="000060.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012021207.34210.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Dec 2 12:07:34 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#59">[ date ]</a>
+ <a href="thread.html#59">[ thread ]</a>
+ <a href="subject.html#59">[ subject ]</a>
+ <a href="author.html#59">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&quot;Romain d'Alverny&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; schrieb am 2010-12-02
+&gt;<i> On Wed, Dec 1, 2010 at 17:04, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt;
+</I>wrote:
+&gt;<i> &gt; Today we had another very short meeting. Perhaps we should discuss the
+</I>&gt;<i> &gt; time of the meeting?
+</I>&gt;<i> A short meeting is not necessarily bad. All expected points were
+</I>&gt;<i> discussed there and had a status report. And new actions.
+</I>Sorry, &quot;short&quot; was not the word I wanted to use. &quot;small&quot; would have been
+better (forgive me, I'm not an English native speaker).
+Sure, there weren't that many things to do for most people but I was a bit
+disappointed by the number of attendants...
+
+&gt;<i> The meeting real matter is to set a progress report and a pace to the
+</I>&gt;<i> team; and to allow anyone to voice/discuss concerns, points, etc. And
+</I>&gt;<i> that active team members follow the plan.
+</I>That's ok and that was done by all three meetings till now. My point was: We
+have 32 people registeres in the wiki and how many did say sth.?
+
+&gt;<i> &gt; Perhaps everyone interested in attending the meeting could write his
+</I>&gt;<i> &gt; preffered timespan (please in UTC) here.
+</I>&gt;<i> Indeed. Let's do that:
+</I>&gt;<i> * Romain, Paris, UTC+1 (+2 in Daylight Saving Time), preferred
+</I>&gt;<i> between 10 and 18 UTC
+</I>* Oliver, Sw-Germany, UTC+1 (+2 in Daylight Saving Time), preferred between 10
+and 20 UTC
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#59">[ date ]</a>
+ <a href="thread.html#59">[ thread ]</a>
+ <a href="subject.html#59">[ subject ]</a>
+ <a href="author.html#59">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000060.html b/zarb-ml/mageia-webteam/2010-December/000060.html
new file mode 100644
index 000000000..232d514e1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000060.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012021837.08087.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000059.html">
+ <LINK REL="Next" HREF="000067.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012021837.08087.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">stormi at laposte.net
+ </A><BR>
+ <I>Thu Dec 2 18:37:08 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#60">[ date ]</a>
+ <a href="thread.html#60">[ thread ]</a>
+ <a href="subject.html#60">[ subject ]</a>
+ <a href="author.html#60">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Le jeudi 2 d&#233;cembre 2010 12:07:34, Oliver Burger a &#233;crit :
+&gt;<i>
+</I>&gt;<i> &quot;Romain d'Alverny&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; schrieb am 2010-12-02
+</I>&gt;<i> &gt; On Wed, Dec 1, 2010 at 17:04, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt;
+</I>&gt;<i> wrote:
+</I>&gt;<i> &gt; &gt; Today we had another very short meeting. Perhaps we should discuss the
+</I>&gt;<i> &gt; &gt; time of the meeting?
+</I>&gt;<i> &gt; A short meeting is not necessarily bad. All expected points were
+</I>&gt;<i> &gt; discussed there and had a status report. And new actions.
+</I>&gt;<i> Sorry, &quot;short&quot; was not the word I wanted to use. &quot;small&quot; would have been
+</I>&gt;<i> better (forgive me, I'm not an English native speaker).
+</I>&gt;<i> Sure, there weren't that many things to do for most people but I was a bit
+</I>&gt;<i> disappointed by the number of attendants...
+</I>&gt;<i>
+</I>&gt;<i> &gt; The meeting real matter is to set a progress report and a pace to the
+</I>&gt;<i> &gt; team; and to allow anyone to voice/discuss concerns, points, etc. And
+</I>&gt;<i> &gt; that active team members follow the plan.
+</I>&gt;<i> That's ok and that was done by all three meetings till now. My point was: We
+</I>&gt;<i> have 32 people registeres in the wiki and how many did say sth.?
+</I>&gt;<i>
+</I>&gt;<i> &gt; &gt; Perhaps everyone interested in attending the meeting could write his
+</I>&gt;<i> &gt; &gt; preffered timespan (please in UTC) here.
+</I>&gt;<i> &gt; Indeed. Let's do that:
+</I>&gt;<i> &gt; * Romain, Paris, UTC+1 (+2 in Daylight Saving Time), preferred
+</I>&gt;<i> &gt; between 10 and 18 UTC
+</I>&gt;<i> * Oliver, Sw-Germany, UTC+1 (+2 in Daylight Saving Time), preferred between 10
+</I>&gt;<i> and 20 UTC
+</I>&gt;<i>
+</I>
+I set up a table on the wiki were we could put our preferred meeting times, if you think that's a good idea : <A HREF="http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time">http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time</A>
+
+Regards
+
+Samuel Verschelde
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#60">[ date ]</a>
+ <a href="thread.html#60">[ thread ]</a>
+ <a href="subject.html#60">[ subject ]</a>
+ <a href="author.html#60">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000061.html b/zarb-ml/mageia-webteam/2010-December/000061.html
new file mode 100644
index 000000000..1e6c7bf75
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000061.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%2014%3A00%20UTC%2C%20Dec.%208th&In-Reply-To=%3CAANLkTi%3D4D-tOmDTVtXeCJG%3DuhChtaNgCz8URRtt70ZdF%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000074.html">
+ <LINK REL="Next" HREF="000062.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%2014%3A00%20UTC%2C%20Dec.%208th&In-Reply-To=%3CAANLkTi%3D4D-tOmDTVtXeCJG%3DuhChtaNgCz8URRtt70ZdF%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Dec 8 11:56:44 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#61">[ date ]</a>
+ <a href="thread.html#61">[ thread ]</a>
+ <a href="subject.html#61">[ subject ]</a>
+ <a href="author.html#61">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+So, let's meet on #mageia-web at 14:00 UTC.
+ * progress review (actions from previous week, see
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-01-14.14.html</A>):
+ - catdap/identity
+ - forums
+ - website
+ - wiki
+ - bugzilla
+ * other?
+
+Romain
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#61">[ date ]</a>
+ <a href="thread.html#61">[ thread ]</a>
+ <a href="subject.html#61">[ subject ]</a>
+ <a href="author.html#61">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000062.html b/zarb-ml/mageia-webteam/2010-December/000062.html
new file mode 100644
index 000000000..68f29b55b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000062.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%2014%3A00%20UTC%2C%20Dec.%208th&In-Reply-To=%3C201012081616.54608.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000061.html">
+ <LINK REL="Next" HREF="000063.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%2014%3A00%20UTC%2C%20Dec.%208th&In-Reply-To=%3C201012081616.54608.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Dec 8 16:16:54 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI>Next message: <A HREF="000063.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#62">[ date ]</a>
+ <a href="thread.html#62">[ thread ]</a>
+ <a href="subject.html#62">[ subject ]</a>
+ <a href="author.html#62">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&quot;Romain d'Alverny&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; schrieb am 2010-12-08
+&gt;<i> So, let's meet on #mageia-web at 14:00 UTC.
+</I>
+And her is the log of the meeting:
+
+Minutes:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-08-14.08.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-08-14.08.html</A>
+Minutes (text):
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-08-14.08.txt">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-08-14.08.txt</A>
+Log:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-08-14.08.log.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-12-08-14.08.log.html</A>
+
+Oliver
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI>Next message: <A HREF="000063.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#62">[ date ]</a>
+ <a href="thread.html#62">[ thread ]</a>
+ <a href="subject.html#62">[ subject ]</a>
+ <a href="author.html#62">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000063.html b/zarb-ml/mageia-webteam/2010-December/000063.html
new file mode 100644
index 000000000..f0c738adb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000063.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTikTz%3DH6hsXXyHdnUEZqagu%3DXuvssPEr3Yrk9xC2%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000062.html">
+ <LINK REL="Next" HREF="000064.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTikTz%3DH6hsXXyHdnUEZqagu%3DXuvssPEr3Yrk9xC2%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Dec 22 18:23:53 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI>Next message: <A HREF="000064.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#63">[ date ]</a>
+ <a href="thread.html#63">[ thread ]</a>
+ <a href="subject.html#63">[ subject ]</a>
+ <a href="author.html#63">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+to replace today's meeting (I'm sorry I have been caught up in traffic
+&amp; meetings again); please add/update your part below (and the page, if
+needed):
+
+ * forum (<A HREF="http://mageia.org/wiki/doku.php?id=web:forums">http://mageia.org/wiki/doku.php?id=web:forums</A> ; daax, maat,
+ash, misc); status: we're waiting for Daax to setup and provide the VM
+at this point; the rest of the process is on the page; guys, please
+make sure it's working for you and update it/discuss it if needed;
+ * catdap (<A HREF="http://mageia.org/wiki/doku.php?id=web:identity">http://mageia.org/wiki/doku.php?id=web:identity</A> / obgr,
+blingme); status? (I've seen commits go through this week)
+ * www (dams, rda); status:
+ - donation system has been migrated to www.mageia.org (page setup
+with top menu update, translations coming in)
+ - I'll publish the new platform code in the coming days, no
+migration on this anyway before January;
+ * wiki (<A HREF="http://mageia.org/wiki/doku.php?id=web:wiki">http://mageia.org/wiki/doku.php?id=web:wiki</A> ; leu, obgr);
+status? if nothing moves to January, I'll take to set it up;
+ * maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+we've got a new one here; anyone willing to take it? one mandatory
+condition: use a Rails or Django framework to set it up (so it's
+quick, basic and square, built from the data model)
+ * bugzilla (dmorgan, misc): status?
+ * epoll (Nanar); status?
+ * transifex (misc); status?
+ * buildsystem (just to follow); status?
+
+(I may have missed people in the lists of the ones working on each
+project; feel free to correct)
+
+There will be no meeting for sure next week, we'll resume on January
+5th, 14:00 UTC (or by a weekly email progress report, depends on how
+you view things).
+
+(for my part, I will be offline until January 3rd - I still read my
+mail but may not answer rapidly)
+
+Cheers, enjoy your holidays for those who have some, and celebrations!
+
+Romain
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI>Next message: <A HREF="000064.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#63">[ date ]</a>
+ <a href="thread.html#63">[ thread ]</a>
+ <a href="subject.html#63">[ subject ]</a>
+ <a href="author.html#63">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000064.html b/zarb-ml/mageia-webteam/2010-December/000064.html
new file mode 100644
index 000000000..d3be61df4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000064.html
@@ -0,0 +1,114 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTin577ZEnq0aPZvQns2UPnc15L6f82KuFPBmC1Te%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000063.html">
+ <LINK REL="Next" HREF="000066.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTin577ZEnq0aPZvQns2UPnc15L6f82KuFPBmC1Te%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">Kosmas at mach7x.com
+ </A><BR>
+ <I>Thu Dec 23 11:20:20 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000063.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000066.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#64">[ date ]</a>
+ <a href="thread.html#64">[ thread ]</a>
+ <a href="subject.html#64">[ subject ]</a>
+ <a href="author.html#64">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 22 December 2010 17:23, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> Hi guys,
+</I>&gt;<i>
+</I>&gt;<i> to replace today's meeting (I'm sorry I have been caught up in traffic
+</I>&gt;<i> &amp; meetings again); please add/update your part below (and the page, if
+</I>&gt;<i> needed):
+</I>&gt;<i>
+</I>&gt;<i> &#160;* forum (<A HREF="http://mageia.org/wiki/doku.php?id=web:forums">http://mageia.org/wiki/doku.php?id=web:forums</A> ; daax, maat,
+</I>&gt;<i> ash, misc); status: we're waiting for Daax to setup and provide the VM
+</I>&gt;<i> at this point; the rest of the process is on the page; guys, please
+</I>&gt;<i> make sure it's working for you and update it/discuss it if needed;
+</I>&gt;<i> &#160;* catdap (<A HREF="http://mageia.org/wiki/doku.php?id=web:identity">http://mageia.org/wiki/doku.php?id=web:identity</A> / obgr,
+</I>&gt;<i> blingme); status? (I've seen commits go through this week)
+</I>&gt;<i> &#160;* www (dams, rda); status:
+</I>&gt;<i> &#160; &#160;- donation system has been migrated to www.mageia.org (page setup
+</I>&gt;<i> with top menu update, translations coming in)
+</I>&gt;<i> &#160; &#160;- I'll publish the new platform code in the coming days, no
+</I>&gt;<i> migration on this anyway before January;
+</I>&gt;<i> &#160;* wiki (<A HREF="http://mageia.org/wiki/doku.php?id=web:wiki">http://mageia.org/wiki/doku.php?id=web:wiki</A> ; leu, obgr);
+</I>&gt;<i> status? if nothing moves to January, I'll take to set it up;
+</I>&gt;<i> &#160;* maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+</I>&gt;<i> we've got a new one here; anyone willing to take it? one mandatory
+</I>&gt;<i> condition: use a Rails or Django framework to set it up (so it's
+</I>&gt;<i> quick, basic and square, built from the data model)
+</I>&gt;<i> &#160;* bugzilla (dmorgan, misc): status?
+</I>&gt;<i> &#160;* epoll (Nanar); status?
+</I>&gt;<i> &#160;* transifex (misc); status?
+</I>&gt;<i> &#160;* buildsystem (just to follow); status?
+</I>&gt;<i>
+</I>&gt;<i> (I may have missed people in the lists of the ones working on each
+</I>&gt;<i> project; feel free to correct)
+</I>&gt;<i>
+</I>&gt;<i> There will be no meeting for sure next week, we'll resume on January
+</I>&gt;<i> 5th, 14:00 UTC (or by a weekly email progress report, depends on how
+</I>&gt;<i> you view things).
+</I>&gt;<i>
+</I>&gt;<i> (for my part, I will be offline until January 3rd - I still read my
+</I>&gt;<i> mail but may not answer rapidly)
+</I>&gt;<i>
+</I>&gt;<i> Cheers, enjoy your holidays for those who have some, and celebrations!
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+Hi,
+
+I can take on the maintainers db, and do it in Rails.
+
+Kosmas
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000063.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000066.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#64">[ date ]</a>
+ <a href="thread.html#64">[ thread ]</a>
+ <a href="subject.html#64">[ subject ]</a>
+ <a href="author.html#64">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000065.html b/zarb-ml/mageia-webteam/2010-December/000065.html
new file mode 100644
index 000000000..78de72653
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000065.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012281449.24123.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000082.html">
+ <LINK REL="Next" HREF="000068.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012281449.24123.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Progress">stormi at laposte.net
+ </A><BR>
+ <I>Tue Dec 28 14:49:24 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000082.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000068.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#65">[ date ]</a>
+ <a href="thread.html#65">[ thread ]</a>
+ <a href="subject.html#65">[ subject ]</a>
+ <a href="author.html#65">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 22 d&#233;cembre 2010 18:23:53, Romain d'Alverny a &#233;crit :
+&gt;<i> * maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+</I>&gt;<i> we've got a new one here; anyone willing to take it? one mandatory
+</I>&gt;<i> condition: use a Rails or Django framework to set it up (so it's
+</I>&gt;<i> quick, basic and square, built from the data model)
+</I>
+Symfony should be fine too, no ? It's&quot; quick, basic and square, built from the
+data model&quot; :)
+
+As I just wrote on the -dev ML, I would have liked to help on this task
+because we already have a database full with packages, will synchronize the
+list of packages regularly from the mirrors (which the maintainers' db will
+have to do too), and so adding maintainership stuff would be easy and avoid
+effort duplication (and I'm sure we can have a coherent interface for both the
+main goals of mageia-app-db and the maintainers database). However, as the
+deadline is probably very short, I didn't (and I was late on the corresponding
+thread too and Kosmas already stepped in).
+
+However, it's still possible to work from the mageia-app-db basis if someone
+wants to, I'll be glad to help. Version 0.1 of mageia-app-db is due in 3 days,
+if needed version 0.2 could be dedicated to maintainership management.
+
+Regards
+
+Samuel Verschelde
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000082.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000068.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#65">[ date ]</a>
+ <a href="thread.html#65">[ thread ]</a>
+ <a href="subject.html#65">[ subject ]</a>
+ <a href="author.html#65">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000066.html b/zarb-ml/mageia-webteam/2010-December/000066.html
new file mode 100644
index 000000000..cd395f790
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000066.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012281455.23188.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000064.html">
+ <LINK REL="Next" HREF="000071.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012281455.23188.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Progress">stormi at laposte.net
+ </A><BR>
+ <I>Tue Dec 28 14:55:23 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000064.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000071.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#66">[ date ]</a>
+ <a href="thread.html#66">[ thread ]</a>
+ <a href="subject.html#66">[ subject ]</a>
+ <a href="author.html#66">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 23 d&#233;cembre 2010 11:20:20, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> On 22 December 2010 17:23, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+</I>&gt;<i> &gt; Hi guys,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; to replace today's meeting (I'm sorry I have been caught up in traffic
+</I>&gt;<i> &gt; &amp; meetings again); please add/update your part below (and the page, if
+</I>&gt;<i> &gt; needed):
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; * forum (<A HREF="http://mageia.org/wiki/doku.php?id=web:forums">http://mageia.org/wiki/doku.php?id=web:forums</A> ; daax, maat,
+</I>&gt;<i> &gt; ash, misc); status: we're waiting for Daax to setup and provide the VM
+</I>&gt;<i> &gt; at this point; the rest of the process is on the page; guys, please
+</I>&gt;<i> &gt; make sure it's working for you and update it/discuss it if needed;
+</I>&gt;<i> &gt; * catdap (<A HREF="http://mageia.org/wiki/doku.php?id=web:identity">http://mageia.org/wiki/doku.php?id=web:identity</A> / obgr,
+</I>&gt;<i> &gt; blingme); status? (I've seen commits go through this week)
+</I>&gt;<i> &gt; * www (dams, rda); status:
+</I>&gt;<i> &gt; - donation system has been migrated to www.mageia.org (page setup
+</I>&gt;<i> &gt; with top menu update, translations coming in)
+</I>&gt;<i> &gt; - I'll publish the new platform code in the coming days, no
+</I>&gt;<i> &gt; migration on this anyway before January;
+</I>&gt;<i> &gt; * wiki (<A HREF="http://mageia.org/wiki/doku.php?id=web:wiki">http://mageia.org/wiki/doku.php?id=web:wiki</A> ; leu, obgr);
+</I>&gt;<i> &gt; status? if nothing moves to January, I'll take to set it up;
+</I>&gt;<i> &gt; * maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+</I>&gt;<i> &gt; we've got a new one here; anyone willing to take it? one mandatory
+</I>&gt;<i> &gt; condition: use a Rails or Django framework to set it up (so it's
+</I>&gt;<i> &gt; quick, basic and square, built from the data model)
+</I>&gt;<i> &gt; * bugzilla (dmorgan, misc): status?
+</I>&gt;<i> &gt; * epoll (Nanar); status?
+</I>&gt;<i> &gt; * transifex (misc); status?
+</I>&gt;<i> &gt; * buildsystem (just to follow); status?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; (I may have missed people in the lists of the ones working on each
+</I>&gt;<i> &gt; project; feel free to correct)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; There will be no meeting for sure next week, we'll resume on January
+</I>&gt;<i> &gt; 5th, 14:00 UTC (or by a weekly email progress report, depends on how
+</I>&gt;<i> &gt; you view things).
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; (for my part, I will be offline until January 3rd - I still read my
+</I>&gt;<i> &gt; mail but may not answer rapidly)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Cheers, enjoy your holidays for those who have some, and celebrations!
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Romain
+</I>&gt;<i> &gt; _______________________________________________
+</I>&gt;<i> &gt; Mageia-webteam mailing list
+</I>&gt;<i> &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> I can take on the maintainers db, and do it in Rails.
+</I>&gt;<i>
+</I>&gt;<i> Kosmas
+</I>
+Hi, I've got 2 questions :
+- is there already a plan to synchronize the list of SRPM packages with the
+mirrors or SVN on a regular basis ?
+- there is no urgency for that, but will mageia-app-db be able to query that
+database (through an XML-RPC interface for example) ?
+
+I know those 2 questions are too early, but I wanted to have them asked right
+from the start so that we can think of it :)
+
+Regards
+
+Samuel Verschelde
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000064.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000071.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#66">[ date ]</a>
+ <a href="thread.html#66">[ thread ]</a>
+ <a href="subject.html#66">[ subject ]</a>
+ <a href="author.html#66">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000067.html b/zarb-ml/mageia-webteam/2010-December/000067.html
new file mode 100644
index 000000000..36082d68a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000067.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012281459.39939.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000060.html">
+ <LINK REL="Next" HREF="000072.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012281459.39939.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">stormi at laposte.net
+ </A><BR>
+ <I>Tue Dec 28 14:59:39 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#67">[ date ]</a>
+ <a href="thread.html#67">[ thread ]</a>
+ <a href="subject.html#67">[ subject ]</a>
+ <a href="author.html#67">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 2 d&#233;cembre 2010 18:37:08, Samuel Verschelde a &#233;crit :
+&gt;<i>
+</I>&gt;<i> I set up a table on the wiki were we could put our preferred meeting times,
+</I>&gt;<i> if you think that's a good idea :
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time">http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time</A>
+</I>&gt;<i>
+</I>
+It looks like my proposal hasn't encountered a big success :)
+
+Samuel
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#67">[ date ]</a>
+ <a href="thread.html#67">[ thread ]</a>
+ <a href="subject.html#67">[ subject ]</a>
+ <a href="author.html#67">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000068.html b/zarb-ml/mageia-webteam/2010-December/000068.html
new file mode 100644
index 000000000..2b3aef444
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000068.html
@@ -0,0 +1,116 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTin1YeAo8rjbFh%3Dy7cC-fvdd6ZvhUA7xTU5B_gGA%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000065.html">
+ <LINK REL="Next" HREF="000069.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTin1YeAo8rjbFh%3Dy7cC-fvdd6ZvhUA7xTU5B_gGA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Dec 28 16:22:05 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000065.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000069.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#68">[ date ]</a>
+ <a href="thread.html#68">[ thread ]</a>
+ <a href="subject.html#68">[ subject ]</a>
+ <a href="author.html#68">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 28 December 2010 13:49, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+&gt;<i> Le mercredi 22 d&#233;cembre 2010 18:23:53, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> &#160; * maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+</I>&gt;&gt;<i> we've got a new one here; anyone willing to take it? one mandatory
+</I>&gt;&gt;<i> condition: use a Rails or Django framework to set it up (so it's
+</I>&gt;&gt;<i> quick, basic and square, built from the data model)
+</I>&gt;<i>
+</I>&gt;<i> Symfony should be fine too, no ? It's&quot; quick, basic and square, built from the
+</I>&gt;<i> data model&quot; :)
+</I>&gt;<i>
+</I>&gt;<i> As I just wrote on the -dev ML, I would have liked to help on this task
+</I>&gt;<i> because we already have a database full with packages, will synchronize the
+</I>&gt;<i> list of packages regularly from the mirrors (which the maintainers' db will
+</I>&gt;<i> have to do too), and so adding maintainership stuff would be easy and avoid
+</I>&gt;<i> effort duplication (and I'm sure we can have a coherent interface for both the
+</I>&gt;<i> main goals of mageia-app-db and the maintainers database). However, as the
+</I>&gt;<i> deadline is probably very short, I didn't (and I was late on the corresponding
+</I>&gt;<i> thread too and Kosmas already stepped in).
+</I>&gt;<i>
+</I>&gt;<i> However, it's still possible to work from the mageia-app-db basis if someone
+</I>&gt;<i> wants to, I'll be glad to help. Version 0.1 of mageia-app-db is due in 3 days,
+</I>&gt;<i> if needed version 0.2 could be dedicated to maintainership management.
+</I>&gt;<i>
+</I>&gt;<i> Regards
+</I>&gt;<i>
+</I>&gt;<i> Samuel Verschelde
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+Samuel,
+
+As I'm currently working with Ruby on Rails, and would like to help
+here with what I can, since it was suggested that an application can
+be built with Ruby on Rails I offered my help.
+
+If other people in the list would prefer this to be built on another
+framework, I wouldn't have any problem leaving it.
+
+I don't think there's any point to comparing the different frameworks,
+as we all have different opinions, but Ruby on Rails is the skill that
+I can offer to the list.
+As about the database you are currently having, I'm sure it wouldn't
+be a big problem to interface with a different application.
+
+Regards
+Kosmas Chatzimichalis
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000065.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000069.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#68">[ date ]</a>
+ <a href="thread.html#68">[ thread ]</a>
+ <a href="subject.html#68">[ subject ]</a>
+ <a href="author.html#68">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000069.html b/zarb-ml/mageia-webteam/2010-December/000069.html
new file mode 100644
index 000000000..89519622b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000069.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012281711.20497.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000068.html">
+ <LINK REL="Next" HREF="000070.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012281711.20497.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Progress">stormi at laposte.net
+ </A><BR>
+ <I>Tue Dec 28 17:11:20 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000068.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000070.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#69">[ date ]</a>
+ <a href="thread.html#69">[ thread ]</a>
+ <a href="subject.html#69">[ subject ]</a>
+ <a href="author.html#69">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 28 d&#233;cembre 2010 16:22:05, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> On 28 December 2010 13:49, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+</I>&gt;<i> &gt; Le mercredi 22 d&#233;cembre 2010 18:23:53, Romain d'Alverny a &#233;crit :
+</I>&gt;<i> &gt;&gt; * maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+</I>&gt;<i> &gt;&gt; we've got a new one here; anyone willing to take it? one mandatory
+</I>&gt;<i> &gt;&gt; condition: use a Rails or Django framework to set it up (so it's
+</I>&gt;<i> &gt;&gt; quick, basic and square, built from the data model)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Symfony should be fine too, no ? It's&quot; quick, basic and square, built
+</I>&gt;<i> &gt; from the data model&quot; :)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; As I just wrote on the -dev ML, I would have liked to help on this task
+</I>&gt;<i> &gt; because we already have a database full with packages, will synchronize
+</I>&gt;<i> &gt; the list of packages regularly from the mirrors (which the maintainers'
+</I>&gt;<i> &gt; db will have to do too), and so adding maintainership stuff would be
+</I>&gt;<i> &gt; easy and avoid effort duplication (and I'm sure we can have a coherent
+</I>&gt;<i> &gt; interface for both the main goals of mageia-app-db and the maintainers
+</I>&gt;<i> &gt; database). However, as the deadline is probably very short, I didn't
+</I>&gt;<i> &gt; (and I was late on the corresponding thread too and Kosmas already
+</I>&gt;<i> &gt; stepped in).
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; However, it's still possible to work from the mageia-app-db basis if
+</I>&gt;<i> &gt; someone wants to, I'll be glad to help. Version 0.1 of mageia-app-db is
+</I>&gt;<i> &gt; due in 3 days, if needed version 0.2 could be dedicated to
+</I>&gt;<i> &gt; maintainership management.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Regards
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Samuel Verschelde
+</I>&gt;<i> &gt; _______________________________________________
+</I>&gt;<i> &gt; Mageia-webteam mailing list
+</I>&gt;<i> &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> &gt; <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>&gt;<i> Samuel,
+</I>&gt;<i>
+</I>&gt;<i> As I'm currently working with Ruby on Rails, and would like to help
+</I>&gt;<i> here with what I can, since it was suggested that an application can
+</I>&gt;<i> be built with Ruby on Rails I offered my help.
+</I>&gt;<i>
+</I>&gt;<i> If other people in the list would prefer this to be built on another
+</I>&gt;<i> framework, I wouldn't have any problem leaving it.
+</I>&gt;<i>
+</I>&gt;<i> I don't think there's any point to comparing the different frameworks,
+</I>&gt;<i> as we all have different opinions, but Ruby on Rails is the skill that
+</I>&gt;<i> I can offer to the list.
+</I>&gt;<i> As about the database you are currently having, I'm sure it wouldn't
+</I>&gt;<i> be a big problem to interface with a different application.
+</I>&gt;<i>
+</I>
+No problem for me :)
+
+I just reacted because rda said &quot;rails or django mandatory&quot;, but I'm using
+symfony on mageia-app-db for the very reason you chose rails :)
+
+Regards
+
+Samuel
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000068.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000070.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#69">[ date ]</a>
+ <a href="thread.html#69">[ thread ]</a>
+ <a href="subject.html#69">[ subject ]</a>
+ <a href="author.html#69">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000070.html b/zarb-ml/mageia-webteam/2010-December/000070.html
new file mode 100644
index 000000000..c5b99ee9d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000070.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTikmqSmo0CG62ZYfECyj-w27ubwR%3Dwd6fygAPqVs%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000069.html">
+ <LINK REL="Next" HREF="000081.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTikmqSmo0CG62ZYfECyj-w27ubwR%3Dwd6fygAPqVs%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Dec 28 18:52:39 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000069.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000081.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#70">[ date ]</a>
+ <a href="thread.html#70">[ thread ]</a>
+ <a href="subject.html#70">[ subject ]</a>
+ <a href="author.html#70">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Dec 28, 2010 at 17:11, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+&gt;<i> I just reacted because rda said &quot;rails or django mandatory&quot;, but I'm using
+</I>&gt;<i> symfony on mageia-app-db for the very reason you chose rails :)
+</I>
+The Rails/Django requirement was more to prevent a custom/from-scratch
+app for that. So yes, Symfony could be an option too among others, but
+I would like us to have a hand on different types of framework too.
+Not for the sake of having (too many) different technologies, but to
+open up the field a little bit; here it is a good opportunity to try
+something else I believe.
+
+As for interfacing with other apps (mageia-app-db included), I don't
+think it will be a problem, especially if we keep a separate app as an
+authority for each topic (here, maintainers&lt;-&gt;packages), at least at
+first.
+
+Romain
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000069.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000081.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#70">[ date ]</a>
+ <a href="thread.html#70">[ thread ]</a>
+ <a href="subject.html#70">[ subject ]</a>
+ <a href="author.html#70">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000071.html b/zarb-ml/mageia-webteam/2010-December/000071.html
new file mode 100644
index 000000000..f2ab49d1c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000071.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTikPZzRzzjU1dj9WPTRgx5GAnHpY%2BO%2BBCtnb1PFu%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000066.html">
+ <LINK REL="Next" HREF="000075.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTikPZzRzzjU1dj9WPTRgx5GAnHpY%2BO%2BBCtnb1PFu%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Dec 28 18:55:09 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000066.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000075.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#71">[ date ]</a>
+ <a href="thread.html#71">[ thread ]</a>
+ <a href="subject.html#71">[ subject ]</a>
+ <a href="author.html#71">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Dec 23, 2010 at 11:20, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> On 22 December 2010 17:23, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> &#160;* maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+</I>&gt;&gt;<i> we've got a new one here; anyone willing to take it? one mandatory
+</I>&gt;&gt;<i> condition: use a Rails or Django framework to set it up (so it's
+</I>&gt;&gt;<i> quick, basic and square, built from the data model)
+</I>&gt;&gt;<i>
+</I>&gt;<i> I can take on the maintainers db, and do it in Rails.
+</I>
+Great, thanks!
+
+You can find the basic data model here:
+<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> . That's very rough so
+don't hesitate to ask in case of supplementary details needed, but try
+to keep it as simple as the v0 list.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000066.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000075.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#71">[ date ]</a>
+ <a href="thread.html#71">[ thread ]</a>
+ <a href="subject.html#71">[ subject ]</a>
+ <a href="author.html#71">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000072.html b/zarb-ml/mageia-webteam/2010-December/000072.html
new file mode 100644
index 000000000..c411d7774
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000072.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3CAANLkTin2z0O_XAWpdtDmWycXd9eXUxQHrAUQ%2B4BGRJe1%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000067.html">
+ <LINK REL="Next" HREF="000073.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3CAANLkTin2z0O_XAWpdtDmWycXd9eXUxQHrAUQ%2B4BGRJe1%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Dec 28 19:03:57 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#72">[ date ]</a>
+ <a href="thread.html#72">[ thread ]</a>
+ <a href="subject.html#72">[ subject ]</a>
+ <a href="author.html#72">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Woops, sorry, didn't notice your replies until now... :-/
+
+On Thu, Dec 2, 2010 at 18:37, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+&gt;<i> Le jeudi 2 d&#233;cembre 2010 12:07:34, Oliver Burger a &#233;crit :
+</I>&gt;&gt;<i> &quot;Romain d'Alverny&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; schrieb am 2010-12-02
+</I>&gt;&gt;<i> &gt; The meeting real matter is to set a progress report and a pace to the
+</I>&gt;&gt;<i> &gt; team; and to allow anyone to voice/discuss concerns, points, etc. And
+</I>&gt;&gt;<i> &gt; that active team members follow the plan.
+</I>&gt;&gt;<i> That's ok and that was done by all three meetings till now. My point was: We
+</I>&gt;&gt;<i> have 32 people registeres in the wiki and how many did say sth.?
+</I>
+There obviously is a delta between people that registered on the wiki
+at first, and people that actually stand up (or that are just able to
+keep up through the IRC at these times).
+
+Not all 32 on the wiki registered on the mageia-webteam ml (and some
+are on the ml and not in the wiki list); we can notify them once more
+on January and then clean up the list I guess?
+
+Anyway, what's is really important is that we have enough people
+showing up and building/releasing things within the team. We're
+reaching that point I believe.
+
+&gt;<i> [...]
+</I>&gt;<i> I set up a table on the wiki were we could put our preferred meeting times, if you think that's a good idea : <A HREF="http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time">http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time</A>
+</I>
+Updated too. Actually, it's not clear, would it be for Wednesday
+still, or any day? or we should specify?
+
+Cheers,
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#72">[ date ]</a>
+ <a href="thread.html#72">[ thread ]</a>
+ <a href="subject.html#72">[ subject ]</a>
+ <a href="author.html#72">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000073.html b/zarb-ml/mageia-webteam/2010-December/000073.html
new file mode 100644
index 000000000..e1dd16470
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000073.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012281935.47305.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000072.html">
+ <LINK REL="Next" HREF="000074.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3C201012281935.47305.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">stormi at laposte.net
+ </A><BR>
+ <I>Tue Dec 28 19:35:47 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#73">[ date ]</a>
+ <a href="thread.html#73">[ thread ]</a>
+ <a href="subject.html#73">[ subject ]</a>
+ <a href="author.html#73">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mardi 28 d&#233;cembre 2010 19:03:57, Romain d'Alverny a &#233;crit :
+&gt;<i> Woops, sorry, didn't notice your replies until now... :-/
+</I>&gt;<i>
+</I>&gt;<i> On Thu, Dec 2, 2010 at 18:37, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+</I>&gt;<i> &gt; I set up a table on the wiki were we could put our preferred meeting
+</I>&gt;<i> &gt; times, if you think that's a good idea :
+</I>&gt;<i> &gt; <A HREF="http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time">http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time</A>
+</I>&gt;<i>
+</I>&gt;<i> Updated too. Actually, it's not clear, would it be for Wednesday
+</I>&gt;<i> still, or any day? or we should specify?
+</I>&gt;<i>
+</I>
+Good question. I'd say &quot;for any day from monday to friday&quot;.
+
+We could also add a preferred day, but it depends on the hour :)
+
+My idea show its limits here.
+
+Regards
+
+Samuel
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#73">[ date ]</a>
+ <a href="thread.html#73">[ thread ]</a>
+ <a href="subject.html#73">[ subject ]</a>
+ <a href="author.html#73">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000074.html b/zarb-ml/mageia-webteam/2010-December/000074.html
new file mode 100644
index 000000000..2d4abfedd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000074.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Webteam Meeting, Dec 01 2010
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3CAANLkTikKRn%3Dfj_aeAjUxGcfXd8FLEBJiFG219Vt3W7hG%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000073.html">
+ <LINK REL="Next" HREF="000061.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Webteam Meeting, Dec 01 2010</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Webteam%20Meeting%2C%20Dec%2001%202010&In-Reply-To=%3CAANLkTikKRn%3Dfj_aeAjUxGcfXd8FLEBJiFG219Vt3W7hG%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Webteam Meeting, Dec 01 2010">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Dec 28 20:29:36 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#74">[ date ]</a>
+ <a href="thread.html#74">[ thread ]</a>
+ <a href="subject.html#74">[ subject ]</a>
+ <a href="author.html#74">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 28 December 2010 18:35, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+&gt;<i> Le mardi 28 d&#233;cembre 2010 19:03:57, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i> Woops, sorry, didn't notice your replies until now... :-/
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> On Thu, Dec 2, 2010 at 18:37, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+</I>&gt;&gt;<i> &gt; I set up a table on the wiki were we could put our preferred meeting
+</I>&gt;&gt;<i> &gt; times, if you think that's a good idea :
+</I>&gt;&gt;<i> &gt; <A HREF="http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time">http://mageia.org/wiki/doku.php?id=web#preferred_meeting_time</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Updated too. Actually, it's not clear, would it be for Wednesday
+</I>&gt;&gt;<i> still, or any day? or we should specify?
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Good question. I'd say &quot;for any day from monday to friday&quot;.
+</I>&gt;<i>
+</I>&gt;<i> We could also add a preferred day, but it depends on the hour :)
+</I>&gt;<i>
+</I>&gt;<i> My idea show its limits here.
+</I>&gt;<i>
+</I>&gt;<i> Regards
+</I>&gt;<i>
+</I>&gt;<i> Samuel
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+I've added my preferred times as well :-)
+
+About the preferred days, can we add another column at the end of the
+table, that people can add their favourites days.
+Can either put the preferred as a bold, capital or in brackets?
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A></li>
+ <LI>Next message: <A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#74">[ date ]</a>
+ <a href="thread.html#74">[ thread ]</a>
+ <a href="subject.html#74">[ subject ]</a>
+ <a href="author.html#74">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000075.html b/zarb-ml/mageia-webteam/2010-December/000075.html
new file mode 100644
index 000000000..d1dcb7863
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000075.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTimgautaRvR0d12YU-o1%3Du48UKX1mTbcTAFAXYzP%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000071.html">
+ <LINK REL="Next" HREF="000076.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTimgautaRvR0d12YU-o1%3Du48UKX1mTbcTAFAXYzP%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">Kosmas at mach7x.com
+ </A><BR>
+ <I>Tue Dec 28 20:35:35 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000071.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000076.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#75">[ date ]</a>
+ <a href="thread.html#75">[ thread ]</a>
+ <a href="subject.html#75">[ subject ]</a>
+ <a href="author.html#75">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 28 December 2010 17:55, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> On Thu, Dec 23, 2010 at 11:20, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+</I>&gt;&gt;<i> On 22 December 2010 17:23, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+</I>&gt;&gt;&gt;<i> &#160;* maintainers db (<A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> );
+</I>&gt;&gt;&gt;<i> we've got a new one here; anyone willing to take it? one mandatory
+</I>&gt;&gt;&gt;<i> condition: use a Rails or Django framework to set it up (so it's
+</I>&gt;&gt;&gt;<i> quick, basic and square, built from the data model)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> I can take on the maintainers db, and do it in Rails.
+</I>&gt;<i>
+</I>&gt;<i> Great, thanks!
+</I>&gt;<i>
+</I>&gt;<i> You can find the basic data model here:
+</I>&gt;<i> <A HREF="http://mageia.org/wiki/doku.php?id=web:maintdb">http://mageia.org/wiki/doku.php?id=web:maintdb</A> . That's very rough so
+</I>&gt;<i> don't hesitate to ask in case of supplementary details needed, but try
+</I>&gt;<i> to keep it as simple as the v0 list.
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+OK Romain
+No problem then, would be great to be able to help :-)
+
+Samuel,
+
+I would like to use Redmine as well for issue tracking, so would it be
+any better to add the project in your redmine installation, or should
+I create another one?
+
+Kosmas
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000071.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000076.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#75">[ date ]</a>
+ <a href="thread.html#75">[ thread ]</a>
+ <a href="subject.html#75">[ subject ]</a>
+ <a href="author.html#75">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000076.html b/zarb-ml/mageia-webteam/2010-December/000076.html
new file mode 100644
index 000000000..4cde8d47f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000076.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012282145.27761.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000075.html">
+ <LINK REL="Next" HREF="000077.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012282145.27761.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Progress">stormi at laposte.net
+ </A><BR>
+ <I>Tue Dec 28 21:45:27 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000075.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000077.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#76">[ date ]</a>
+ <a href="thread.html#76">[ thread ]</a>
+ <a href="subject.html#76">[ subject ]</a>
+ <a href="author.html#76">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Samuel,
+</I>&gt;<i>
+</I>&gt;<i> I would like to use Redmine as well for issue tracking, so would it be
+</I>&gt;<i> any better to add the project in your redmine installation, or should
+</I>&gt;<i> I create another one?
+</I>&gt;<i>
+</I>
+I asked Marianne Lombard because she hosts our redmine instance. She said &quot;no
+problem&quot; :); so I created the project on redmine :
+<A HREF="http://mageia-app-db.tuxette.fr/projects/mageia-maint-db">http://mageia-app-db.tuxette.fr/projects/mageia-maint-db</A>
+
+Please register, then I'll give you project management rights for this
+project.
+
+If you want to link it to a source code repository :
+- either you already have one, and just give us the URL,
+- or create one on whatever forge you like,
+- or Marianne may setup one for you on the same server as redmine.
+
+She'll probably need a few days to cover that part of the configuration, though
+(not much free time).
+
+Do you connect to IRC, and with which nickname ? It will be easier to discuss
+in real time in order to fix the details.
+
+Regards
+
+Samuel Verschelde
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000075.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000077.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#76">[ date ]</a>
+ <a href="thread.html#76">[ thread ]</a>
+ <a href="subject.html#76">[ subject ]</a>
+ <a href="author.html#76">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000077.html b/zarb-ml/mageia-webteam/2010-December/000077.html
new file mode 100644
index 000000000..576f274e4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000077.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTi%3DsDx8%3D4paYppun7YgXkMZoc39ws7mZfgZW0Ngq%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000076.html">
+ <LINK REL="Next" HREF="000078.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTi%3DsDx8%3D4paYppun7YgXkMZoc39ws7mZfgZW0Ngq%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Dec 29 00:34:19 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000076.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000078.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#77">[ date ]</a>
+ <a href="thread.html#77">[ thread ]</a>
+ <a href="subject.html#77">[ subject ]</a>
+ <a href="author.html#77">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> I asked Marianne Lombard because she hosts our redmine instance. She said &quot;no
+</I>&gt;<i> problem&quot; :); so I created the project on redmine :
+</I>&gt;<i> <A HREF="http://mageia-app-db.tuxette.fr/projects/mageia-maint-db">http://mageia-app-db.tuxette.fr/projects/mageia-maint-db</A>
+</I>
+Thanks Samuel, that's great.
+Thanks to Marianne as well :-)
+
+&gt;<i>
+</I>&gt;<i> Please register, then I'll give you project management rights for this
+</I>&gt;<i> project.
+</I>OK.
+I did register with my user name kosmas
+
+&gt;<i>
+</I>&gt;<i> If you want to link it to a source code repository :
+</I>&gt;<i> - either you already have one, and just give us the URL,
+</I>&gt;<i> - or create one on whatever forge you like,
+</I>&gt;<i> - or Marianne may setup one for you on the same server as redmine.
+</I>&gt;<i>
+</I>&gt;<i> She'll probably need a few days to cover that part of the configuration, though
+</I>&gt;<i> (not much free time).
+</I>&gt;<i>
+</I>&gt;<i> Do you connect to IRC, and with which nickname ? It will be easier to discuss
+</I>&gt;<i> in real time in order to fix the details.
+</I>
+As there was a discussion here about using gitorius, I'll try to set
+up something there and give you the link.
+If not I may ask you and Marianne to create one for me.
+I'm in IRC with the nickname kosmas (like to keep things simple ;-) ).
+
+Thanks again Samuel
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000076.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000078.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#77">[ date ]</a>
+ <a href="thread.html#77">[ thread ]</a>
+ <a href="subject.html#77">[ subject ]</a>
+ <a href="author.html#77">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000078.html b/zarb-ml/mageia-webteam/2010-December/000078.html
new file mode 100644
index 000000000..bcaaedf53
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000078.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012291006.54418.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000077.html">
+ <LINK REL="Next" HREF="000079.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012291006.54418.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Progress">stormi at laposte.net
+ </A><BR>
+ <I>Wed Dec 29 10:06:54 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000077.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000079.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#78">[ date ]</a>
+ <a href="thread.html#78">[ thread ]</a>
+ <a href="subject.html#78">[ subject ]</a>
+ <a href="author.html#78">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le mercredi 29 d&#233;cembre 2010 00:34:19, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> &gt; I asked Marianne Lombard because she hosts our redmine instance. She said
+</I>&gt;<i> &gt; &quot;no problem&quot; :); so I created the project on redmine :
+</I>&gt;<i> &gt; <A HREF="http://mageia-app-db.tuxette.fr/projects/mageia-maint-db">http://mageia-app-db.tuxette.fr/projects/mageia-maint-db</A>
+</I>&gt;<i>
+</I>&gt;<i> Thanks Samuel, that's great.
+</I>&gt;<i> Thanks to Marianne as well :-)
+</I>&gt;<i>
+</I>&gt;<i> &gt; Please register, then I'll give you project management rights for this
+</I>&gt;<i> &gt; project.
+</I>&gt;<i>
+</I>&gt;<i> OK.
+</I>&gt;<i> I did register with my user name kosmas
+</I>
+You're now the project manager.
+
+&gt;<i> I'm in IRC with the nickname kosmas (like to keep things simple ;-) ).
+</I>
+And my nickname is Stormi.
+
+Regards
+
+Samuel Verschelde
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000077.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000079.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#78">[ date ]</a>
+ <a href="thread.html#78">[ thread ]</a>
+ <a href="subject.html#78">[ subject ]</a>
+ <a href="author.html#78">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000079.html b/zarb-ml/mageia-webteam/2010-December/000079.html
new file mode 100644
index 000000000..22bdcbef2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000079.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTi%3D_ER7njy32iK70ZEAccCVubbs0%3D8Y23Mi8P_%3Dz%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000078.html">
+ <LINK REL="Next" HREF="000080.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTi%3D_ER7njy32iK70ZEAccCVubbs0%3D8Y23Mi8P_%3Dz%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Dec 29 13:12:12 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000078.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000080.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#79">[ date ]</a>
+ <a href="thread.html#79">[ thread ]</a>
+ <a href="subject.html#79">[ subject ]</a>
+ <a href="author.html#79">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Tue, Dec 28, 2010 at 20:35, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> OK Romain
+</I>&gt;<i> No problem then, would be great to be able to help :-)
+</I>
+Thanks again. :-)
+
+&gt;<i> I would like to use Redmine as well for issue tracking, so would it be
+</I>&gt;<i> any better to add the project in your redmine installation, or should
+</I>&gt;<i> I create another one?
+</I>
+Hmmm, take into account that, being a piece of the Mageia
+infrastructure, it may be better in the near future to use the
+bugzilla setup; or it depends on how we design the whole
+forge/projects in the future.
+
+It's not a blocking matter for now anyway.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000078.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000080.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#79">[ date ]</a>
+ <a href="thread.html#79">[ thread ]</a>
+ <a href="subject.html#79">[ subject ]</a>
+ <a href="author.html#79">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000080.html b/zarb-ml/mageia-webteam/2010-December/000080.html
new file mode 100644
index 000000000..6982f00f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000080.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTi%3DC2FOsRxsNGWmdfpwZHmdL%3Dj7%3Dn0_VS6NdV0if%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000079.html">
+ <LINK REL="Next" HREF="000082.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3CAANLkTi%3DC2FOsRxsNGWmdfpwZHmdL%3Dj7%3Dn0_VS6NdV0if%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Progress">Kosmas at mach7x.com
+ </A><BR>
+ <I>Thu Dec 30 12:51:56 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000079.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000082.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#80">[ date ]</a>
+ <a href="thread.html#80">[ thread ]</a>
+ <a href="subject.html#80">[ subject ]</a>
+ <a href="author.html#80">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;&gt;<i> I would like to use Redmine as well for issue tracking, so would it be
+</I>&gt;&gt;<i> any better to add the project in your redmine installation, or should
+</I>&gt;&gt;<i> I create another one?
+</I>&gt;<i>
+</I>&gt;<i> Hmmm, take into account that, being a piece of the Mageia
+</I>&gt;<i> infrastructure, it may be better in the near future to use the
+</I>&gt;<i> bugzilla setup; or it depends on how we design the whole
+</I>&gt;<i> forge/projects in the future.
+</I>&gt;<i>
+</I>&gt;<i> It's not a blocking matter for now anyway.
+</I>
+Hi Romain,
+Sure no problem when the time comes, we can start using bugzilla.
+At the moment since is a small project, and easier to start things
+rolling I'll be using redmin.
+By the way, I've made the initial commit in gitorious, as I think that
+was mentioned here in the list before.
+Not sure about the licence though, as there were quite a few options.
+Is there any preference to the licence we will be using?
+At the moment I have it as gnu v3.
+
+
+&gt;<i>If you want to link it to a source code repository :
+</I>&gt;<i>- either you already have one, and just give us the URL,
+</I>&gt;<i>- or create one on whatever forge you like,
+</I>&gt;<i>- or Marianne may setup one for you on the same server as redmine.
+</I>
+Samuel,
+The git repository is here:
+git: <A HREF="git://gitorious.org/mageia-maintainers-database/mageia-maint-db.git">git://gitorious.org/mageia-maintainers-database/mageia-maint-db.git</A>
+http: <A HREF="http://git.gitorious.org/mageia-maintainers-database/mageia-maint-db.git">http://git.gitorious.org/mageia-maintainers-database/mageia-maint-db.git</A>
+ssh: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">git at gitorious.org</A>:mageia-maintainers-database/mageia-maint-db.git
+
+If you or Marianne can link that to the redmine, it would be great.
+
+Kosmas
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000079.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000082.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#80">[ date ]</a>
+ <a href="thread.html#80">[ thread ]</a>
+ <a href="subject.html#80">[ subject ]</a>
+ <a href="author.html#80">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000081.html b/zarb-ml/mageia-webteam/2010-December/000081.html
new file mode 100644
index 000000000..d14979a8f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000081.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Need help for mageia-app-db's licence
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Need%20help%20for%20mageia-app-db%27s%20licence&In-Reply-To=%3C201012311912.47461.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000070.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Need help for mageia-app-db's licence</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Need%20help%20for%20mageia-app-db%27s%20licence&In-Reply-To=%3C201012311912.47461.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Need help for mageia-app-db's licence">stormi at laposte.net
+ </A><BR>
+ <I>Fri Dec 31 19:12:47 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000070.html">[Mageia-webteam] Progress
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#81">[ date ]</a>
+ <a href="thread.html#81">[ thread ]</a>
+ <a href="subject.html#81">[ subject ]</a>
+ <a href="author.html#81">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+In the process of releasing mageia-app-db 0.1, we have to fix licensing issues.
+Could someone help us on that ?
+
+I never released free software before, so I'd like to know what to do once the
+licence has been chosen :
+- create a simple LICENSE file at the root of the project ?
+- add a notice in every source file ? (there are lots of them, many
+automatically generated by the framework mechanisms)
+- other ?
+
+Among the possible licences, there's Gnu Affero GPLv3, which forces anyone
+running the software (or one of its derivatives) on a server to make the
+source code available to users. However, I don't know if this license is
+compatible with our XML-RPC querying sophie.zarb.org when needed (does the Gnu
+Affero GPLv3 imply that we must also give sophie's source code to users (sophie
+being a separate project from Olivier Thauvin), and does it imply that sophie
+should be under the Gnu Affero GPLv3 licence ? I think not but I'd like to be
+sure.
+
+Regards
+
+Samuel Verschelde
+
+--
+mageia-app-db
+<A HREF="http://mageia-app-db.tuxette.fr/projects/mageia-app-db/wiki">http://mageia-app-db.tuxette.fr/projects/mageia-app-db/wiki</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000070.html">[Mageia-webteam] Progress
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#81">[ date ]</a>
+ <a href="thread.html#81">[ thread ]</a>
+ <a href="subject.html#81">[ subject ]</a>
+ <a href="author.html#81">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/000082.html b/zarb-ml/mageia-webteam/2010-December/000082.html
new file mode 100644
index 000000000..990dbd20a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/000082.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Progress
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012311914.25674.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000080.html">
+ <LINK REL="Next" HREF="000065.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Progress</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Progress&In-Reply-To=%3C201012311914.25674.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Progress">stormi at laposte.net
+ </A><BR>
+ <I>Fri Dec 31 19:14:25 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000080.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000065.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#82">[ date ]</a>
+ <a href="thread.html#82">[ thread ]</a>
+ <a href="subject.html#82">[ subject ]</a>
+ <a href="author.html#82">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le jeudi 30 d&#233;cembre 2010 12:51:56, Kosmas Chatzimichalis a &#233;crit :
+&gt;<i> &gt;&gt; I would like to use Redmine as well for issue tracking, so would it be
+</I>&gt;<i> &gt;&gt; any better to add the project in your redmine installation, or should
+</I>&gt;<i> &gt;&gt; I create another one?
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Hmmm, take into account that, being a piece of the Mageia
+</I>&gt;<i> &gt; infrastructure, it may be better in the near future to use the
+</I>&gt;<i> &gt; bugzilla setup; or it depends on how we design the whole
+</I>&gt;<i> &gt; forge/projects in the future.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; It's not a blocking matter for now anyway.
+</I>&gt;<i>
+</I>&gt;<i> Hi Romain,
+</I>&gt;<i> Sure no problem when the time comes, we can start using bugzilla.
+</I>&gt;<i> At the moment since is a small project, and easier to start things
+</I>&gt;<i> rolling I'll be using redmin.
+</I>&gt;<i> By the way, I've made the initial commit in gitorious, as I think that
+</I>&gt;<i> was mentioned here in the list before.
+</I>&gt;<i> Not sure about the licence though, as there were quite a few options.
+</I>&gt;<i> Is there any preference to the licence we will be using?
+</I>&gt;<i> At the moment I have it as gnu v3.
+</I>&gt;<i>
+</I>&gt;<i> &gt;If you want to link it to a source code repository :
+</I>&gt;<i> &gt;- either you already have one, and just give us the URL,
+</I>&gt;<i> &gt;- or create one on whatever forge you like,
+</I>&gt;<i> &gt;- or Marianne may setup one for you on the same server as redmine.
+</I>&gt;<i>
+</I>&gt;<i> Samuel,
+</I>&gt;<i> The git repository is here:
+</I>&gt;<i> git: <A HREF="git://gitorious.org/mageia-maintainers-database/mageia-maint-db.git">git://gitorious.org/mageia-maintainers-database/mageia-maint-db.git</A>
+</I>&gt;<i> http:
+</I>&gt;<i> <A HREF="http://git.gitorious.org/mageia-maintainers-database/mageia-maint-db.git">http://git.gitorious.org/mageia-maintainers-database/mageia-maint-db.git</A>
+</I>&gt;<i> ssh: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">git at gitorious.org</A>:mageia-maintainers-database/mageia-maint-db.git
+</I>&gt;<i>
+</I>&gt;<i> If you or Marianne can link that to the redmine, it would be great.
+</I>&gt;<i>
+</I>
+I transmitted your mail to Marianne.
+
+Regards
+
+Samuel Verschelde
+
+--
+mageia-app-db
+<A HREF="http://mageia-app-db.tuxette.fr/projects/mageia-app-db/wiki">http://mageia-app-db.tuxette.fr/projects/mageia-app-db/wiki</A>
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000080.html">[Mageia-webteam] Progress
+</A></li>
+ <LI>Next message: <A HREF="000065.html">[Mageia-webteam] Progress
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#82">[ date ]</a>
+ <a href="thread.html#82">[ thread ]</a>
+ <a href="subject.html#82">[ subject ]</a>
+ <a href="author.html#82">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-December/author.html b/zarb-ml/mageia-webteam/2010-December/author.html
new file mode 100644
index 000000000..f4c75739f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/author.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2010 Archive by author</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>December 2010 Archives by author</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Dec 1 17:04:59 CET 2010</i><br>
+ <b>Ending:</b> <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Messages:</b> 26<p>
+ <ul>
+
+<LI><A HREF="000057.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="57">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="59">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="62">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000064.html">[Mageia-webteam] Progress
+</A><A NAME="64">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000068.html">[Mageia-webteam] Progress
+</A><A NAME="68">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="74">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000075.html">[Mageia-webteam] Progress
+</A><A NAME="75">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000077.html">[Mageia-webteam] Progress
+</A><A NAME="77">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000080.html">[Mageia-webteam] Progress
+</A><A NAME="80">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="60">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000065.html">[Mageia-webteam] Progress
+</A><A NAME="65">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000066.html">[Mageia-webteam] Progress
+</A><A NAME="66">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="67">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000069.html">[Mageia-webteam] Progress
+</A><A NAME="69">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="73">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000076.html">[Mageia-webteam] Progress
+</A><A NAME="76">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000078.html">[Mageia-webteam] Progress
+</A><A NAME="78">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000081.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="81">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000082.html">[Mageia-webteam] Progress
+</A><A NAME="82">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="58">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="61">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000063.html">[Mageia-webteam] Progress
+</A><A NAME="63">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000070.html">[Mageia-webteam] Progress
+</A><A NAME="70">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000071.html">[Mageia-webteam] Progress
+</A><A NAME="71">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="72">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000079.html">[Mageia-webteam] Progress
+</A><A NAME="79">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Archived on:</b> <i>Fri Dec 31 19:14:37 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-December/date.html b/zarb-ml/mageia-webteam/2010-December/date.html
new file mode 100644
index 000000000..f0853fac8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/date.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2010 Archive by date</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>December 2010 Archives by date</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Dec 1 17:04:59 CET 2010</i><br>
+ <b>Ending:</b> <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Messages:</b> 26<p>
+ <ul>
+
+<LI><A HREF="000057.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="57">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="58">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="59">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="60">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="61">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="62">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000063.html">[Mageia-webteam] Progress
+</A><A NAME="63">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000064.html">[Mageia-webteam] Progress
+</A><A NAME="64">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000065.html">[Mageia-webteam] Progress
+</A><A NAME="65">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000066.html">[Mageia-webteam] Progress
+</A><A NAME="66">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="67">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000068.html">[Mageia-webteam] Progress
+</A><A NAME="68">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000069.html">[Mageia-webteam] Progress
+</A><A NAME="69">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000070.html">[Mageia-webteam] Progress
+</A><A NAME="70">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000071.html">[Mageia-webteam] Progress
+</A><A NAME="71">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="72">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="73">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="74">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000075.html">[Mageia-webteam] Progress
+</A><A NAME="75">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000076.html">[Mageia-webteam] Progress
+</A><A NAME="76">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000077.html">[Mageia-webteam] Progress
+</A><A NAME="77">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000078.html">[Mageia-webteam] Progress
+</A><A NAME="78">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000079.html">[Mageia-webteam] Progress
+</A><A NAME="79">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000080.html">[Mageia-webteam] Progress
+</A><A NAME="80">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000081.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="81">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000082.html">[Mageia-webteam] Progress
+</A><A NAME="82">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Archived on:</b> <i>Fri Dec 31 19:14:37 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-December/index.html b/zarb-ml/mageia-webteam/2010-December/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2010-December/subject.html b/zarb-ml/mageia-webteam/2010-December/subject.html
new file mode 100644
index 000000000..dcae019fa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/subject.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2010 Archive by subject</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>December 2010 Archives by subject</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Dec 1 17:04:59 CET 2010</i><br>
+ <b>Ending:</b> <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Messages:</b> 26<p>
+ <ul>
+
+<LI><A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="61">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="62">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000081.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="81">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000063.html">[Mageia-webteam] Progress
+</A><A NAME="63">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000064.html">[Mageia-webteam] Progress
+</A><A NAME="64">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000065.html">[Mageia-webteam] Progress
+</A><A NAME="65">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000066.html">[Mageia-webteam] Progress
+</A><A NAME="66">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000068.html">[Mageia-webteam] Progress
+</A><A NAME="68">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000069.html">[Mageia-webteam] Progress
+</A><A NAME="69">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000070.html">[Mageia-webteam] Progress
+</A><A NAME="70">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000071.html">[Mageia-webteam] Progress
+</A><A NAME="71">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000075.html">[Mageia-webteam] Progress
+</A><A NAME="75">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000076.html">[Mageia-webteam] Progress
+</A><A NAME="76">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000077.html">[Mageia-webteam] Progress
+</A><A NAME="77">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000078.html">[Mageia-webteam] Progress
+</A><A NAME="78">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000079.html">[Mageia-webteam] Progress
+</A><A NAME="79">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000080.html">[Mageia-webteam] Progress
+</A><A NAME="80">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000082.html">[Mageia-webteam] Progress
+</A><A NAME="82">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000057.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="57">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="58">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="59">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="60">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="67">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="72">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="73">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="74">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Archived on:</b> <i>Fri Dec 31 19:14:37 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-December/thread.html b/zarb-ml/mageia-webteam/2010-December/thread.html
new file mode 100644
index 000000000..846c9b65b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-December/thread.html
@@ -0,0 +1,221 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam December 2010 Archive by thread</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>December 2010 Archives by thread</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Dec 1 17:04:59 CET 2010</i><br>
+ <b>Ending:</b> <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Messages:</b> 26<p>
+ <ul>
+
+<!--0 01291219499- -->
+<LI><A HREF="000057.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="57">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01291219499-01291286659- -->
+<LI><A HREF="000058.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="58">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01291219499-01291286659-01291288054- -->
+<LI><A HREF="000059.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="59">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--3 01291219499-01291286659-01291288054-01291311428- -->
+<LI><A HREF="000060.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="60">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01291219499-01291286659-01291288054-01291311428-01293544779- -->
+<LI><A HREF="000067.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="67">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01291219499-01291286659-01291288054-01291311428-01293559437- -->
+<LI><A HREF="000072.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="72">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01291219499-01291286659-01291288054-01291311428-01293559437-01293561347- -->
+<LI><A HREF="000073.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="73">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01291219499-01291286659-01291288054-01291311428-01293559437-01293561347-01293564576- -->
+<LI><A HREF="000074.html">[Mageia-webteam] Webteam Meeting, Dec 01 2010
+</A><A NAME="74">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01291805804- -->
+<LI><A HREF="000061.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="61">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01291805804-01291821414- -->
+<LI><A HREF="000062.html">[Mageia-webteam] Meeting, 14:00 UTC, Dec. 8th
+</A><A NAME="62">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01293038633- -->
+<LI><A HREF="000063.html">[Mageia-webteam] Progress
+</A><A NAME="63">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01293038633-01293099620- -->
+<LI><A HREF="000064.html">[Mageia-webteam] Progress
+</A><A NAME="64">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--2 01293038633-01293099620-01293544523- -->
+<LI><A HREF="000066.html">[Mageia-webteam] Progress
+</A><A NAME="66">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--2 01293038633-01293099620-01293558909- -->
+<LI><A HREF="000071.html">[Mageia-webteam] Progress
+</A><A NAME="71">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--3 01293038633-01293099620-01293558909-01293564935- -->
+<LI><A HREF="000075.html">[Mageia-webteam] Progress
+</A><A NAME="75">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01293038633-01293099620-01293558909-01293564935-01293569127- -->
+<LI><A HREF="000076.html">[Mageia-webteam] Progress
+</A><A NAME="76">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01293038633-01293099620-01293558909-01293564935-01293569127-01293579259- -->
+<LI><A HREF="000077.html">[Mageia-webteam] Progress
+</A><A NAME="77">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01293038633-01293099620-01293558909-01293564935-01293569127-01293579259-01293613614- -->
+<LI><A HREF="000078.html">[Mageia-webteam] Progress
+</A><A NAME="78">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01293038633-01293099620-01293558909-01293564935-01293624732- -->
+<LI><A HREF="000079.html">[Mageia-webteam] Progress
+</A><A NAME="79">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<!--3 01293038633-01293099620-01293558909-01293564935-01293624732-01293709916- -->
+<LI><A HREF="000080.html">[Mageia-webteam] Progress
+</A><A NAME="80">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--3 01293038633-01293099620-01293558909-01293564935-01293624732-01293709916-01293819265- -->
+<LI><A HREF="000082.html">[Mageia-webteam] Progress
+</A><A NAME="82">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+</UL>
+</UL>
+<!--1 01293038633-01293544164- -->
+<LI><A HREF="000065.html">[Mageia-webteam] Progress
+</A><A NAME="65">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<UL>
+<!--2 01293038633-01293544164-01293549725- -->
+<LI><A HREF="000068.html">[Mageia-webteam] Progress
+</A><A NAME="68">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--3 01293038633-01293544164-01293549725-01293552680- -->
+<LI><A HREF="000069.html">[Mageia-webteam] Progress
+</A><A NAME="69">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01293038633-01293544164-01293549725-01293552680-01293558759- -->
+<LI><A HREF="000070.html">[Mageia-webteam] Progress
+</A><A NAME="70">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01293819167- -->
+<LI><A HREF="000081.html">[Mageia-webteam] Need help for mageia-app-db's licence
+</A><A NAME="81">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Fri Dec 31 19:14:25 CET 2010</i><br>
+ <b>Archived on:</b> <i>Fri Dec 31 19:14:37 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-November.txt.gz b/zarb-ml/mageia-webteam/2010-November.txt.gz
new file mode 100644
index 000000000..b2ebbafe4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2010-November/000005.html b/zarb-ml/mageia-webteam/2010-November/000005.html
new file mode 100644
index 000000000..69f669afb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000005.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Setting up the Web team
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Setting%20up%20the%20Web%20team&In-Reply-To=%3C201011041034.08462.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="000006.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Setting up the Web team</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Setting%20up%20the%20Web%20team&In-Reply-To=%3C201011041034.08462.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Setting up the Web team">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Nov 4 10:34:08 CET 2010</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#5">[ date ]</a>
+ <a href="thread.html#5">[ thread ]</a>
+ <a href="subject.html#5">[ subject ]</a>
+ <a href="author.html#5">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Somehow there weren't any news about this since Romains first mail about this.
+What are the next steps to take? What is there to do, do develop?
+
+I think, we should move on to have most of the web things ready, when the
+Cauldron starts bubbling.
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#5">[ date ]</a>
+ <a href="thread.html#5">[ thread ]</a>
+ <a href="subject.html#5">[ subject ]</a>
+ <a href="author.html#5">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000006.html b/zarb-ml/mageia-webteam/2010-November/000006.html
new file mode 100644
index 000000000..db1a6139f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000006.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Setting up the Web team
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Setting%20up%20the%20Web%20team&In-Reply-To=%3CAANLkTim8De_OQ731pJS6HaQTVHsLnqOpqUR4ELAJ1Wtd%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000005.html">
+ <LINK REL="Next" HREF="000007.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Setting up the Web team</H1>
+ <B>Romulo Pires</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Setting%20up%20the%20Web%20team&In-Reply-To=%3CAANLkTim8De_OQ731pJS6HaQTVHsLnqOpqUR4ELAJ1Wtd%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Setting up the Web team">romulo.pires123 at gmail.com
+ </A><BR>
+ <I>Thu Nov 4 12:20:29 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000005.html">[Mageia-webteam] Setting up the Web team
+</A></li>
+ <LI>Next message: <A HREF="000007.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#6">[ date ]</a>
+ <a href="thread.html#6">[ thread ]</a>
+ <a href="subject.html#6">[ subject ]</a>
+ <a href="author.html#6">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2010/11/4 Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt;:
+&gt;<i> Somehow there weren't any news about this since Romains first mail about this.
+</I>&gt;<i> What are the next steps to take? What is there to do, do develop?
+</I>&gt;<i>
+</I>&gt;<i> I think, we should move on to have most of the web things ready, when the
+</I>&gt;<i> Cauldron starts bubbling.
+</I>&gt;<i>
+</I>&gt;<i> Oliver
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+
+I don't know, but i'm waiting news!
+--
+Romulo Pires Pinto
+UFF/IC/BCC
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000005.html">[Mageia-webteam] Setting up the Web team
+</A></li>
+ <LI>Next message: <A HREF="000007.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#6">[ date ]</a>
+ <a href="thread.html#6">[ thread ]</a>
+ <a href="subject.html#6">[ subject ]</a>
+ <a href="author.html#6">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000007.html b/zarb-ml/mageia-webteam/2010-November/000007.html
new file mode 100644
index 000000000..3b3528a07
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000007.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Head Count
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3C4CD2A911.7090808%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000006.html">
+ <LINK REL="Next" HREF="000009.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Head Count</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3C4CD2A911.7090808%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Head Count">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Thu Nov 4 13:37:37 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A></li>
+ <LI>Next message: <A HREF="000009.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#7">[ date ]</a>
+ <a href="thread.html#7">[ thread ]</a>
+ <a href="subject.html#7">[ subject ]</a>
+ <a href="author.html#7">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Yea it's been quiet on this list.
+
+So far I've only seen 4 people on this list;
+Oliver Burger, Romulo Pires, Egill &#222;orl&#225;ksson, and myself.
+
+Is there anyone else here on this mailing list?
+
+If this list is really that sparse, then maybe another e-mail needs to
+be sent. If so, I'd recommend using a subject that will stand out from
+the junk mail, as the e-mail that was sent looked like another piece of
+junk mail for someone like me who gets a ton of junk mail.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+
+
+
+
+Oliver Burger wrote on 11/04/2010 05:34 AM:
+&gt;<i> Somehow there weren't any news about this since Romains first mail about this.
+</I>&gt;<i> What are the next steps to take? What is there to do, do develop?
+</I>&gt;<i>
+</I>&gt;<i> I think, we should move on to have most of the web things ready, when the
+</I>&gt;<i> Cauldron starts bubbling.
+</I>&gt;<i>
+</I>&gt;<i> Oliver
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>&gt;<i>
+</I></PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A></li>
+ <LI>Next message: <A HREF="000009.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#7">[ date ]</a>
+ <a href="thread.html#7">[ thread ]</a>
+ <a href="subject.html#7">[ subject ]</a>
+ <a href="author.html#7">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000008.html b/zarb-ml/mageia-webteam/2010-November/000008.html
new file mode 100644
index 000000000..1ab206492
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000008.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Head Count
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3CAANLkTimNokK8JBk-4sGa6iUcWHSKKOr6in8S7HCHNnZm%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000009.html">
+ <LINK REL="Next" HREF="000010.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Head Count</H1>
+ <B>Gr&#233;goire Terras</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3CAANLkTimNokK8JBk-4sGa6iUcWHSKKOr6in8S7HCHNnZm%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Head Count">gterras at gmail.com
+ </A><BR>
+ <I>Thu Nov 4 14:04:41 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000009.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000010.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#8">[ date ]</a>
+ <a href="thread.html#8">[ thread ]</a>
+ <a href="subject.html#8">[ subject ]</a>
+ <a href="author.html#8">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I'm here too...
+Waiting for news! Is there something planned already ?
+
+On Thu, Nov 4, 2010 at 13:37, Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+
+&gt;<i> Yea it's been quiet on this list.
+</I>&gt;<i>
+</I>&gt;<i> So far I've only seen 4 people on this list;
+</I>&gt;<i> Oliver Burger, Romulo Pires, Egill &#222;orl&#225;ksson, and myself.
+</I>&gt;<i>
+</I>&gt;<i> Is there anyone else here on this mailing list?
+</I>&gt;<i>
+</I>&gt;<i> If this list is really that sparse, then maybe another e-mail needs to be
+</I>&gt;<i> sent. If so, I'd recommend using a subject that will stand out from the junk
+</I>&gt;<i> mail, as the e-mail that was sent looked like another piece of junk mail for
+</I>&gt;<i> someone like me who gets a ton of junk mail.
+</I>&gt;<i>
+</I>&gt;<i> Wayne Sallee
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Oliver Burger wrote on 11/04/2010 05:34 AM:
+</I>&gt;<i>
+</I>&gt;&gt;<i> Somehow there weren't any news about this since Romains first mail about
+</I>&gt;&gt;<i> this.
+</I>&gt;&gt;<i> What are the next steps to take? What is there to do, do develop?
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I think, we should move on to have most of the web things ready, when the
+</I>&gt;&gt;<i> Cauldron starts bubbling.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Oliver
+</I>&gt;&gt;<i> _______________________________________________
+</I>&gt;&gt;<i> Mageia-webteam mailing list
+</I>&gt;&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101104/cd43ac5d/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000009.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000010.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#8">[ date ]</a>
+ <a href="thread.html#8">[ thread ]</a>
+ <a href="subject.html#8">[ subject ]</a>
+ <a href="author.html#8">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000009.html b/zarb-ml/mageia-webteam/2010-November/000009.html
new file mode 100644
index 000000000..c54ad038d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000009.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Head Count
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3CA31E65CCB1B23F49A8B97A3A0947018D0297719E%40EXCHANGE2003.ccq.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000007.html">
+ <LINK REL="Next" HREF="000008.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Head Count</H1>
+ <B>Dubeau, Patrick</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3CA31E65CCB1B23F49A8B97A3A0947018D0297719E%40EXCHANGE2003.ccq.org%3E"
+ TITLE="[Mageia-webteam] Head Count">Patrick.Dubeau at ccq.org
+ </A><BR>
+ <I>Thu Nov 4 14:01:11 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000007.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000008.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#9">[ date ]</a>
+ <a href="thread.html#9">[ thread ]</a>
+ <a href="subject.html#9">[ subject ]</a>
+ <a href="author.html#9">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> -----Message d'origine-----
+</I>&gt;<i> De&#160;: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam-bounces at mageia.org</A> [mailto:mageia-webteam-
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bounces at mageia.org</A>] De la part de Wayne Sallee
+</I>&gt;<i> Envoy&#233;&#160;: 4 novembre 2010 08:38
+</I>&gt;<i> &#192;&#160;: Mageia Web team discussion list
+</I>&gt;<i> Objet&#160;: [Mageia-webteam] Head Count
+</I>&gt;<i>
+</I>&gt;<i> Yea it's been quiet on this list.
+</I>&gt;<i>
+</I>&gt;<i> So far I've only seen 4 people on this list;
+</I>&gt;<i> Oliver Burger, Romulo Pires, Egill &#222;orl&#225;ksson, and myself.
+</I>&gt;<i>
+</I>&gt;<i> Is there anyone else here on this mailing list?
+</I>&gt;<i>
+</I>&gt;<i> If this list is really that sparse, then maybe another e-mail needs to
+</I>&gt;<i> be sent. If so, I'd recommend using a subject that will stand out from
+</I>&gt;<i> the junk mail, as the e-mail that was sent looked like another piece of
+</I>&gt;<i> junk mail for someone like me who gets a ton of junk mail.
+</I>&gt;<i>
+</I>&gt;<i> Wayne Sallee
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</I>
+Hi,
+
+I joined the list this morning, so count me in.
+
+
+Patrick Dubeau (alias DaaX) - Webmaster MLO
+<A HREF="http://www.mandrivalinux-online.org">http://www.mandrivalinux-online.org</A>
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000007.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000008.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#9">[ date ]</a>
+ <a href="thread.html#9">[ thread ]</a>
+ <a href="subject.html#9">[ subject ]</a>
+ <a href="author.html#9">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000010.html b/zarb-ml/mageia-webteam/2010-November/000010.html
new file mode 100644
index 000000000..21926552b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000010.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Head Count
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3C201011041415.56046.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000008.html">
+ <LINK REL="Next" HREF="000011.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Head Count</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3C201011041415.56046.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Head Count">stormi at laposte.net
+ </A><BR>
+ <I>Thu Nov 4 14:15:56 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000008.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000011.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#10">[ date ]</a>
+ <a href="thread.html#10">[ thread ]</a>
+ <a href="subject.html#10">[ subject ]</a>
+ <a href="author.html#10">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Here too, mainly for mageia-app-db :)
+
+Regards
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000008.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000011.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#10">[ date ]</a>
+ <a href="thread.html#10">[ thread ]</a>
+ <a href="subject.html#10">[ subject ]</a>
+ <a href="author.html#10">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000011.html b/zarb-ml/mageia-webteam/2010-November/000011.html
new file mode 100644
index 000000000..78719504d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000011.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Head Count
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3CAANLkTimVot1Jc5xv-Q30wB-6HD-7k0bWMujrFyXfq%3D7o%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000010.html">
+ <LINK REL="Next" HREF="000012.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Head Count</H1>
+ <B>Frederic Janssens</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20Count&In-Reply-To=%3CAANLkTimVot1Jc5xv-Q30wB-6HD-7k0bWMujrFyXfq%3D7o%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Head Count">fjanss at gmail.com
+ </A><BR>
+ <I>Thu Nov 4 17:34:54 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000010.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#11">[ date ]</a>
+ <a href="thread.html#11">[ thread ]</a>
+ <a href="subject.html#11">[ subject ]</a>
+ <a href="author.html#11">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Nov 4, 2010 at 14:15, Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt; wrote:
+
+&gt;<i>
+</I>&gt;<i> Here too, mainly for mageia-app-db :)
+</I>&gt;<i>
+</I>&gt;<i> Me too.
+</I>
+--
+
+Frederic
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101104/68843efd/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000010.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#11">[ date ]</a>
+ <a href="thread.html#11">[ thread ]</a>
+ <a href="subject.html#11">[ subject ]</a>
+ <a href="author.html#11">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000012.html b/zarb-ml/mageia-webteam/2010-November/000012.html
new file mode 100644
index 000000000..0b0e7faaf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000012.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Head count: about 20
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20count%3A%20about%2020&In-Reply-To=%3CAANLkTinR%2BWost_qR%2BJ%2Ba6CfkaGo%3DBoCjCQENWwdSpk51%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000011.html">
+ <LINK REL="Next" HREF="000013.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Head count: about 20</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Head%20count%3A%20about%2020&In-Reply-To=%3CAANLkTinR%2BWost_qR%2BJ%2Ba6CfkaGo%3DBoCjCQENWwdSpk51%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Head count: about 20">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Nov 4 18:47:29 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000011.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#12">[ date ]</a>
+ <a href="thread.html#12">[ thread ]</a>
+ <a href="subject.html#12">[ subject ]</a>
+ <a href="author.html#12">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+everyone's wondering so let's get started.
+
+About 20 people have subscribed to this list so far; there are some
+missing from the 30 listed on the web page, I will send another mail
+to these next week to make sure they had the time.
+
+So, there are several things on the table for now. Please excuse if
+this is a bit messy :-p we will start from that.
+
+ * could someone review/cleanup/organize
+<A HREF="http://mageia.org/wiki/doku.php?id=web">http://mageia.org/wiki/doku.php?id=web</A> a bit?
+
+ * we need to setup a weekly online IRC meeting (we will keep it under
+30 min. at first) on <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>
+ - this meeting will be a good reference point to get everyone in sync;
+ - a good meeting is: bound in time (let's keep it under 30min at
+first), bound in topic (must be prepared in advance), have a public
+log and a public summary (we can use a meetbot instance for that);
+ - could you state your timezone relative to UTC + your preferences,
+on the web page to get a first picture of the best time? Note that the
+Monday 18/19:00 UTC slot is already taken by the current founding
+board meeting (likely to become the Council meeting)
+
+ * about ongoing things:
+
+ - the infrastructure for authentication (LDAP + a Catalyst-based
+web app) is being reviewed and put in place by the sysadm team; that
+will unleash a lot to enable build-system, forum, bugzilla and other
+authentication-based apps;
+
+ - build-system, bugzilla, mirrors, maintainersdb are being
+investigated and setup by the sysadm team at this time; you may join
+#mageia-sysadm in case of question or if you are willing to help;
+
+ - we're gathering specific requirements for our next Wiki
+<A HREF="http://mageia.org/wiki/doku.php?id=wiki_requirements">http://mageia.org/wiki/doku.php?id=wiki_requirements</A> (I'm
+investigating a MediaWiki-based setup, somehow similar to what we had
+at Mandriva, but nothing is set yet); input welcome;
+
+ - please have a look at <A HREF="http://mageia.org/wiki/doku.php?id=roadmap">http://mageia.org/wiki/doku.php?id=roadmap</A>
+and tell if you see something missing or not clear, and how it could
+relate to web team projects (already defined or not);
+
+ - please review <A HREF="http://mageia.org/wiki/doku.php?id=policies">http://mageia.org/wiki/doku.php?id=policies</A> if you
+think there are some policies that may be related to Web (or missing
+or whatever)
+
+ - the main website (www); current website is in its launch format
+for now; I'm working on a quick platform for handling the next
+version, based on the same premises that I wrote in
+<A HREF="https://mageia.org/pipermail/mageia-discuss/20100922/000617.html">https://mageia.org/pipermail/mageia-discuss/20100922/000617.html</A> -
+PHP-based, code to come soon, just to have something working; although
+discussion is open about this anyway, we could opt for some other
+solution; at this time, I am the lead on this and I hurry up on this
+:<i>-)
+</I>
+ - blogs are setup, based on Wordpress (<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A> );
+Damien (damsweb) is the lead on this;
+
+ - forums; Mageia will host at least English and French base forums
+and redirect on others (or happily welcome to host, provided
+moderators join as well); this will be based on PHPbb 3, and should
+pop up after the LDAP setup is complete; maat is the lead on this;
+
+ - there is the app-db project; stormi is the lead on this, he
+already posted about it on the -discuss list;
+
+ - there is a wish list (on the web page), there are ideas floating
+(how do we layout/organize all websites), there are ideas that you may
+come up with. Please submit/organize your ideas on the web page or
+here.
+
+ * for hosting projects, we have a svn (<A HREF="http://svn.mageia.org">http://svn.mageia.org</A>) but:
+ - it will be migrated soon, it's been a quick install, but its
+contents should not move;
+ - it is not documented (what is where) apart for people having put
+something there; this should change soon; if you need a repository for
+your project to be hosted there, just ask;
+ - we may have a git setup (maybe gitorious) though nothing is
+decided yet; input welcome;
+ - we should try to document all projects, per page (on the wiki at
+least), with contact/status/roadmap; I will try to make a template for
+this, but if you have one already, please submit it here;
+
+ * for hosting test/staging servers for apps to
+develop/test/assess/release, there is nothing planned at this time,
+but this is something to think about: typical dev/release process,
+platforms, accesses.
+
+ * for issues/bug/tasks tracker, nothing decided yet either however a
+probable option will be using a single Bugzilla instance to host
+several products (see <A HREF="https://bugzilla.mozilla.org/query.cgi">https://bugzilla.mozilla.org/query.cgi</A> or
+<A HREF="https://qa.mandriva.com/query.cgi?format=specific">https://qa.mandriva.com/query.cgi?format=specific</A> for an example);
+input welcome;
+
+ * for main graphic design, style of the Mageia.org website, we depend
+on at least three things:
+ - the logo (this should be sorted in about two/three weeks); that
+will help about style and colour scheme;
+ - how we communicate the project and the product;
+ - information architecture as a whole for the project, conditioning
+how we spread content, how the navbar will look, etc.
+
+ * we will need to :
+ - name/elect for this short year (will be reconducted around coming
+FOSDEM in April): representative to the council, team leader and
+deputy leader; this requires not only technical skills but as well
+human, facilitating, directing and delegating qualities, clear
+understanding of the project direction and a good trust from the team
+- and of course, some serious availability in time for the project;
+think about this and whether you may want to run for this;
+ - define soft policies about how we are going to work together
+(what tool do we use, how to we propose something new/different in a
+formal way that can be discussed, etc.)
+ - the mentoring process within the team; again, this is about
+technical skills (for Web development here) as well as awareness and
+insight into the team spirit and project goal and culture; so this is
+likely something to share with other teams; still, your very ideas are
+welcome;
+
+
+Hmmm, you may have more specific or other question. Feel free to ask or suggest.
+
+Cheers,
+
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000011.html">[Mageia-webteam] Head Count
+</A></li>
+ <LI>Next message: <A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#12">[ date ]</a>
+ <a href="thread.html#12">[ thread ]</a>
+ <a href="subject.html#12">[ subject ]</a>
+ <a href="author.html#12">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000013.html b/zarb-ml/mageia-webteam/2010-November/000013.html
new file mode 100644
index 000000000..584d98d6d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000013.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting Time
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20Time&In-Reply-To=%3C4CD31CD6.90002%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000012.html">
+ <LINK REL="Next" HREF="000014.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting Time</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20Time&In-Reply-To=%3C4CD31CD6.90002%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Meeting Time">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Thu Nov 4 21:51:34 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A></li>
+ <LI>Next message: <A HREF="000014.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#13">[ date ]</a>
+ <a href="thread.html#13">[ thread ]</a>
+ <a href="subject.html#13">[ subject ]</a>
+ <a href="author.html#13">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>My personal preference for meeting time would be:
+Saturday, any time
+or Monday through Friday, start time of 19:00 to 22:00 UTC/GMT -5 hours
+ignoring daylight saving time.
+
+I wish all governments would get rid of daylight saving time.
+
+Would the mailing list not work better than irc? We could still have a
+virtual meetings on the mailing list.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A></li>
+ <LI>Next message: <A HREF="000014.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#13">[ date ]</a>
+ <a href="thread.html#13">[ thread ]</a>
+ <a href="subject.html#13">[ subject ]</a>
+ <a href="author.html#13">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000014.html b/zarb-ml/mageia-webteam/2010-November/000014.html
new file mode 100644
index 000000000..062798b67
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000014.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New Logo
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20Logo&In-Reply-To=%3C4CD3288E.7070905%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000013.html">
+ <LINK REL="Next" HREF="000015.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New Logo</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20Logo&In-Reply-To=%3C4CD3288E.7070905%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] New Logo">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Thu Nov 4 22:41:34 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A></li>
+ <LI>Next message: <A HREF="000015.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#14">[ date ]</a>
+ <a href="thread.html#14">[ thread ]</a>
+ <a href="subject.html#14">[ subject ]</a>
+ <a href="author.html#14">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Who is going to vote on the new logo.
+
+Is there a mailing list for the logo?
+
+I don't see the above answered on the web site.
+
+The voting should not be limited to those who have joined to submit logos.
+
+I did see a mention that the board would decide based on feedback from
+the community, but I see no mention of how they are going to get that
+feedback.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A></li>
+ <LI>Next message: <A HREF="000015.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#14">[ date ]</a>
+ <a href="thread.html#14">[ thread ]</a>
+ <a href="subject.html#14">[ subject ]</a>
+ <a href="author.html#14">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000015.html b/zarb-ml/mageia-webteam/2010-November/000015.html
new file mode 100644
index 000000000..deba21579
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000015.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] New Logo
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20Logo&In-Reply-To=%3CAANLkTimaS8DPm1qijoWuwvV-2i3-oS0%3D5f4hFiT3R%2BwY%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000014.html">
+ <LINK REL="Next" HREF="000016.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] New Logo</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20New%20Logo&In-Reply-To=%3CAANLkTimaS8DPm1qijoWuwvV-2i3-oS0%3D5f4hFiT3R%2BwY%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] New Logo">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Nov 4 23:08:53 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000014.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI>Next message: <A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#15">[ date ]</a>
+ <a href="thread.html#15">[ thread ]</a>
+ <a href="subject.html#15">[ subject ]</a>
+ <a href="author.html#15">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Nov 4, 2010 at 22:41, Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+&gt;<i> Who is going to vote on the new logo.
+</I>
+The Mageia board will decide.
+
+&gt;<i> Is there a mailing list for the logo?
+</I>
+No.
+
+&gt;<i> I don't see the above answered on the web site.
+</I>
+Here: <A HREF="http://blog.mageia.org/?p=156">http://blog.mageia.org/?p=156</A>
+
+&gt;<i> The voting should not be limited to those who have joined to submit logos.
+</I>
+Indeed, it's not.
+
+&gt;<i> I did see a mention that the board would decide based on feedback from the
+</I>&gt;<i> community, but I see no mention of how they are going to get that feedback.
+</I>
+Mailing-list -discuss is here for that; mail, real life conversations, etc.
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000014.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI>Next message: <A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#15">[ date ]</a>
+ <a href="thread.html#15">[ thread ]</a>
+ <a href="subject.html#15">[ subject ]</a>
+ <a href="author.html#15">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000016.html b/zarb-ml/mageia-webteam/2010-November/000016.html
new file mode 100644
index 000000000..d18185205
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000016.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Moving to New Server
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Moving%20to%20New%20Server&In-Reply-To=%3C4CD33A3E.8050504%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000015.html">
+ <LINK REL="Next" HREF="000017.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Moving to New Server</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Moving%20to%20New%20Server&In-Reply-To=%3C4CD33A3E.8050504%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Moving to New Server">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Thu Nov 4 23:57:02 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000015.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI>Next message: <A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#16">[ date ]</a>
+ <a href="thread.html#16">[ thread ]</a>
+ <a href="subject.html#16">[ subject ]</a>
+ <a href="author.html#16">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I assume that everything that is currently on mageia.org will be moved
+to the new server as is, and the editing will continue as normal?
+
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000015.html">[Mageia-webteam] New Logo
+</A></li>
+ <LI>Next message: <A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#16">[ date ]</a>
+ <a href="thread.html#16">[ thread ]</a>
+ <a href="subject.html#16">[ subject ]</a>
+ <a href="author.html#16">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000017.html b/zarb-ml/mageia-webteam/2010-November/000017.html
new file mode 100644
index 000000000..bf041019f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000017.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Moving to New Server
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Moving%20to%20New%20Server&In-Reply-To=%3CAANLkTimKJLCTn5rFFWGf00V5_9DZNkWmE8gaV4rxtvgK%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000016.html">
+ <LINK REL="Next" HREF="000018.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Moving to New Server</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Moving%20to%20New%20Server&In-Reply-To=%3CAANLkTimKJLCTn5rFFWGf00V5_9DZNkWmE8gaV4rxtvgK%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Moving to New Server">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Nov 5 09:11:11 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI>Next message: <A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#17">[ date ]</a>
+ <a href="thread.html#17">[ thread ]</a>
+ <a href="subject.html#17">[ subject ]</a>
+ <a href="author.html#17">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, Nov 4, 2010 at 23:57, Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+&gt;<i> I assume that everything that is currently on mageia.org will be moved to
+</I>&gt;<i> the new server as is, and the editing will continue as normal?
+</I>
+Well... for a start, yes. But I am not sure I understand your
+question. Could you please put in some context (or quote my original
+mail, if that's about some part of it? svn? www? other?)
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI>Next message: <A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#17">[ date ]</a>
+ <a href="thread.html#17">[ thread ]</a>
+ <a href="subject.html#17">[ subject ]</a>
+ <a href="author.html#17">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000018.html b/zarb-ml/mageia-webteam/2010-November/000018.html
new file mode 100644
index 000000000..4066f4475
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000018.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%202&In-Reply-To=%3CAANLkTikw4XcRXeDmSb8%3D8DN3zFQtPYE7QgYj1-mNMWPt%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000017.html">
+ <LINK REL="Next" HREF="000019.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%202&In-Reply-To=%3CAANLkTikw4XcRXeDmSb8%3D8DN3zFQtPYE7QgYj1-mNMWPt%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2">Kosmas at mach7x.com
+ </A><BR>
+ <I>Fri Nov 5 12:11:58 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI>Next message: <A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#18">[ date ]</a>
+ <a href="thread.html#18">[ thread ]</a>
+ <a href="subject.html#18">[ subject ]</a>
+ <a href="author.html#18">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain,
+
+Two suggestions regarding your list:
+
+1. Use git instead of svn
+2. For issues/bug tracking can I suggest redmine (<A HREF="http://www.redmine.org/">http://www.redmine.org/</A>)
+as it simpler to use
+
+
+On 4 November 2010 17:47, &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam-request at mageia.org</A>&gt; wrote:
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101105/10f9cc56/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A></li>
+ <LI>Next message: <A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#18">[ date ]</a>
+ <a href="thread.html#18">[ thread ]</a>
+ <a href="subject.html#18">[ subject ]</a>
+ <a href="author.html#18">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000019.html b/zarb-ml/mageia-webteam/2010-November/000019.html
new file mode 100644
index 000000000..15fae6dd9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000019.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%202&In-Reply-To=%3CAANLkTi%3D%2BttYiHo7PL_dqkabav_hqtVebiGkTNXy6jKi2%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000018.html">
+ <LINK REL="Next" HREF="000020.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2</H1>
+ <B>Egill &#222;orl&#225;ksson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%202&In-Reply-To=%3CAANLkTi%3D%2BttYiHo7PL_dqkabav_hqtVebiGkTNXy6jKi2%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2">eth at lanmot.is
+ </A><BR>
+ <I>Fri Nov 5 12:15:48 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI>Next message: <A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#19">[ date ]</a>
+ <a href="thread.html#19">[ thread ]</a>
+ <a href="subject.html#19">[ subject ]</a>
+ <a href="author.html#19">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Regarding the weekly meetings, anytime during office hours or fairly early
+in the evening suits me well. (0800-2000 GMT+0)
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101105/d2ca00a0/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI>Next message: <A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#19">[ date ]</a>
+ <a href="thread.html#19">[ thread ]</a>
+ <a href="subject.html#19">[ subject ]</a>
+ <a href="author.html#19">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000020.html b/zarb-ml/mageia-webteam/2010-November/000020.html
new file mode 100644
index 000000000..3f317c2e9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000020.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%202&In-Reply-To=%3CAANLkTimqwT3kVN-LKNWzZwkbspdosJnjo0LCw%2BANoXfj%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000019.html">
+ <LINK REL="Next" HREF="000021.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%202&In-Reply-To=%3CAANLkTimqwT3kVN-LKNWzZwkbspdosJnjo0LCw%2BANoXfj%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Nov 5 18:04:28 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI>Next message: <A HREF="000021.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#20">[ date ]</a>
+ <a href="thread.html#20">[ thread ]</a>
+ <a href="subject.html#20">[ subject ]</a>
+ <a href="author.html#20">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Kosmas,
+
+On Fri, Nov 5, 2010 at 12:11, Kosmas Chatzimichalis &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Kosmas at mach7x.com</A>&gt; wrote:
+&gt;<i> 1. Use git instead of svn
+</I>
+My preference as well. We already have Subversion anyway, but git is
+likely to be available as well. No deadline yet. We are as well
+looking into something like gitorious for that. And that leads to:
+
+&gt;<i> 2. For issues/bug tracking can I suggest redmine (<A HREF="http://www.redmine.org/">http://www.redmine.org/</A>)
+</I>&gt;<i> as it simpler to use
+</I>
+Sure, we can try this.
+
+One fear/inconvenient is that parts of redmine would be duplicates
+regarding the distribution bug tracker (unless it is redmine as well),
+the project wiki, forums, etc. Unless, indeed we limit to tabs we will
+use only.
+
+We used to use Trac as well before internally, and redmine is a good
+follower to this. However we've got to know:
+ - whether we track everything under the same tool (Bugzilla, Redmine, other);
+ - whether we track parts in one (distribution work for instance in
+Bugzilla), parts in an other (web apps or other &quot;loosely coupled&quot; apps
+in Redmine);
+ - and how the chosen solution makes it easy to track/search through
+all projects.
+
+That's an ongoing debate. First we have to decide on the simple, best
+suited tool to do that, then maybe have some code around to gather
+stats.
+
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI>Next message: <A HREF="000021.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#20">[ date ]</a>
+ <a href="thread.html#20">[ thread ]</a>
+ <a href="subject.html#20">[ subject ]</a>
+ <a href="author.html#20">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000021.html b/zarb-ml/mageia-webteam/2010-November/000021.html
new file mode 100644
index 000000000..5fabe584e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000021.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTimdF1ifRY4TioOOWjNgGHKVX1GZLh-iqz-nM2KU%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000020.html">
+ <LINK REL="Next" HREF="000022.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTimdF1ifRY4TioOOWjNgGHKVX1GZLh-iqz-nM2KU%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">rdalverny at gmail.com
+ </A><BR>
+ <I>Thu Nov 11 23:55:15 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI>Next message: <A HREF="000022.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#21">[ date ]</a>
+ <a href="thread.html#21">[ thread ]</a>
+ <a href="subject.html#21">[ subject ]</a>
+ <a href="author.html#21">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+could try to hold an IRC meeting sometime next week? Here are three options:
+ - Monday 15th
+ - or Tuesday 16th
+ - or Wednesday 17th
+
+all three at either 8:30 UTC (9:30 Paris time) or 14:00 UTC (15 Paris time)
+
+It would happen on <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> , should not
+last longer than 1 hour and will be about:
+
+ 1. team setup
+ 2. laying down a status/progress map for web apps
+ 3. speaking about identity webapp (managing accounts) to be refined
+(Catalyst-based, needs code and design work)
+ 4. speaking about the wiki setup (a multi-lingual mediawiki setup to build)
+
+(add your items, we may need to sort them to keep within the one hour,
+but at least we will know what to take into account next time).
+
+There will be a publicly archived log + a meeting summary.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A></li>
+ <LI>Next message: <A HREF="000022.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#21">[ date ]</a>
+ <a href="thread.html#21">[ thread ]</a>
+ <a href="subject.html#21">[ subject ]</a>
+ <a href="author.html#21">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000022.html b/zarb-ml/mageia-webteam/2010-November/000022.html
new file mode 100644
index 000000000..066d84406
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000022.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C4CDC7BBC.6010000%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000021.html">
+ <LINK REL="Next" HREF="000023.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C4CDC7BBC.6010000%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Fri Nov 12 00:26:52 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000021.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000023.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#22">[ date ]</a>
+ <a href="thread.html#22">[ thread ]</a>
+ <a href="subject.html#22">[ subject ]</a>
+ <a href="author.html#22">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain d'Alverny wrote on 11/11/2010 05:55 PM:
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> could try to hold an IRC meeting sometime next week? Here are three options:
+</I>&gt;<i> - Monday 15th
+</I>&gt;<i> - or Tuesday 16th
+</I>&gt;<i> - or Wednesday 17th
+</I>&gt;<i>
+</I>&gt;<i> all three at either 8:30 UTC (9:30 Paris time) or 14:00 UTC (15 Paris time)
+</I>&gt;<i>
+</I>
+My vote is for Wednesday at 14:00 UTC.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000021.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000023.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#22">[ date ]</a>
+ <a href="thread.html#22">[ thread ]</a>
+ <a href="subject.html#22">[ subject ]</a>
+ <a href="author.html#22">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000023.html b/zarb-ml/mageia-webteam/2010-November/000023.html
new file mode 100644
index 000000000..76fe6258f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000023.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTimqQguLR_G75TH66x0mE2LUWW1PAk2FeUoVtyyo%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000022.html">
+ <LINK REL="Next" HREF="000025.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Gr&#233;goire Terras</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTimqQguLR_G75TH66x0mE2LUWW1PAk2FeUoVtyyo%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">gterras at gmail.com
+ </A><BR>
+ <I>Fri Nov 12 01:17:57 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000022.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000025.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#23">[ date ]</a>
+ <a href="thread.html#23">[ thread ]</a>
+ <a href="subject.html#23">[ subject ]</a>
+ <a href="author.html#23">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Same here.
+
+On Fri, Nov 12, 2010 at 00:26, Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+
+&gt;<i> Romain d'Alverny wrote on 11/11/2010 05:55 PM:
+</I>&gt;<i>
+</I>&gt;<i> Hi there,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> could try to hold an IRC meeting sometime next week? Here are three
+</I>&gt;&gt;<i> options:
+</I>&gt;&gt;<i> - Monday 15th
+</I>&gt;&gt;<i> - or Tuesday 16th
+</I>&gt;&gt;<i> - or Wednesday 17th
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> all three at either 8:30 UTC (9:30 Paris time) or 14:00 UTC (15 Paris
+</I>&gt;&gt;<i> time)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> My vote is for Wednesday at 14:00 UTC.
+</I>&gt;<i>
+</I>&gt;<i> Wayne Sallee
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</I>&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101112/c273e5ea/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000022.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000025.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#23">[ date ]</a>
+ <a href="thread.html#23">[ thread ]</a>
+ <a href="subject.html#23">[ subject ]</a>
+ <a href="author.html#23">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000024.html b/zarb-ml/mageia-webteam/2010-November/000024.html
new file mode 100644
index 000000000..d8bae7504
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000024.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C4CDC8217.6000600%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000025.html">
+ <LINK REL="Next" HREF="000026.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C4CDC8217.6000600%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Fri Nov 12 00:53:59 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000025.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000026.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#24">[ date ]</a>
+ <a href="thread.html#24">[ thread ]</a>
+ <a href="subject.html#24">[ subject ]</a>
+ <a href="author.html#24">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>For those trying to figure out the time in their area, here is a good
+web site for this:
+<A HREF="http://www.timeanddate.com/worldclock/meeting.html">http://www.timeanddate.com/worldclock/meeting.html</A>
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000025.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000026.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#24">[ date ]</a>
+ <a href="thread.html#24">[ thread ]</a>
+ <a href="subject.html#24">[ subject ]</a>
+ <a href="author.html#24">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000025.html b/zarb-ml/mageia-webteam/2010-November/000025.html
new file mode 100644
index 000000000..cf1dcd51d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000025.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C201011120823.11978.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000023.html">
+ <LINK REL="Next" HREF="000024.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C201011120823.11978.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Fri Nov 12 08:23:11 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000023.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000024.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#25">[ date ]</a>
+ <a href="thread.html#25">[ thread ]</a>
+ <a href="subject.html#25">[ subject ]</a>
+ <a href="author.html#25">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Gr&#233;goire Terras &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">gterras at gmail.com</A>&gt; schrieb am 2010-11-12
+&gt;<i> On Fri, Nov 12, 2010 at 00:26, Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+</I>&gt;<i> &gt; Romain d'Alverny wrote on 11/11/2010 05:55 PM:
+</I>&gt;<i> &gt;&gt; options:
+</I>&gt;<i> &gt;&gt; - Monday 15th
+</I>&gt;<i> &gt;&gt; - or Tuesday 16th
+</I>&gt;<i> &gt;&gt; - or Wednesday 17th
+</I>&gt;<i> &gt; My vote is for Wednesday at 14:00 UTC.
+</I>Wednesday, 14 UTC is ok with me, too.
+
+Oliver
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000023.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000024.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#25">[ date ]</a>
+ <a href="thread.html#25">[ thread ]</a>
+ <a href="subject.html#25">[ subject ]</a>
+ <a href="author.html#25">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000026.html b/zarb-ml/mageia-webteam/2010-November/000026.html
new file mode 100644
index 000000000..4ff8a0029
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000026.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C201011120955.14932.stormi%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000024.html">
+ <LINK REL="Next" HREF="000030.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Samuel Verschelde</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C201011120955.14932.stormi%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Meeting?">stormi at laposte.net
+ </A><BR>
+ <I>Fri Nov 12 09:55:14 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000024.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000030.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#26">[ date ]</a>
+ <a href="thread.html#26">[ thread ]</a>
+ <a href="subject.html#26">[ subject ]</a>
+ <a href="author.html#26">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>
+Le jeudi 11 novembre 2010 23:55:15, Romain d'Alverny a &#233;crit :
+&gt;<i>
+</I>&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> could try to hold an IRC meeting sometime next week? Here are three options:
+</I>&gt;<i> - Monday 15th
+</I>&gt;<i> - or Tuesday 16th
+</I>&gt;<i> - or Wednesday 17th
+</I>&gt;<i>
+</I>&gt;<i> all three at either 8:30 UTC (9:30 Paris time) or 14:00 UTC (15 Paris time)
+</I>&gt;<i>
+</I>
+All these are in work hours for me. I'll probably connect but not speak much :)
+
+Regards
+
+Samuel
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000024.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000030.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#26">[ date ]</a>
+ <a href="thread.html#26">[ thread ]</a>
+ <a href="subject.html#26">[ subject ]</a>
+ <a href="author.html#26">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000027.html b/zarb-ml/mageia-webteam/2010-November/000027.html
new file mode 100644
index 000000000..d5f6ceafc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000027.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] (no subject)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%28no%20subject%29&In-Reply-To=%3C4CDD13E6.80909%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000038.html">
+ <LINK REL="Next" HREF="000028.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] (no subject)</H1>
+ <B>Christophe MONTEIL</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%28no%20subject%29&In-Reply-To=%3C4CDD13E6.80909%40gmail.com%3E"
+ TITLE="[Mageia-webteam] (no subject)">christophe.monteil at gmail.com
+ </A><BR>
+ <I>Fri Nov 12 11:16:06 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000038.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#27">[ date ]</a>
+ <a href="thread.html#27">[ thread ]</a>
+ <a href="subject.html#27">[ subject ]</a>
+ <a href="author.html#27">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I will work :
+- Monday 15th during all the day
+- Tuesday 16h, 8h-13h
+- Wednesday, 8h-13h
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000038.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#27">[ date ]</a>
+ <a href="thread.html#27">[ thread ]</a>
+ <a href="subject.html#27">[ subject ]</a>
+ <a href="author.html#27">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000028.html b/zarb-ml/mageia-webteam/2010-November/000028.html
new file mode 100644
index 000000000..39c63001d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000028.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%205&In-Reply-To=%3CAANLkTi%3D--aQabMsX-sfzPE%3D7SzS%3DAKQT1Sr9aGHdmnWM%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000027.html">
+ <LINK REL="Next" HREF="000029.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia-webteam%20Digest%2C%20Vol%202%2C%20Issue%205&In-Reply-To=%3CAANLkTi%3D--aQabMsX-sfzPE%3D7SzS%3DAKQT1Sr9aGHdmnWM%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5">Kosmas at mach7x.com
+ </A><BR>
+ <I>Fri Nov 12 12:20:25 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000027.html">[Mageia-webteam] (no subject)
+</A></li>
+ <LI>Next message: <A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#28">[ date ]</a>
+ <a href="thread.html#28">[ thread ]</a>
+ <a href="subject.html#28">[ subject ]</a>
+ <a href="author.html#28">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>As most people seem to favour Wednesday 17 at 14:00 UTC, I could try to be
+available as well at this date.
+
+Kosmas
+
+On 12 November 2010 11:00, &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam-request at mageia.org</A>&gt; wrote:
+
+&gt;<i> Send Mageia-webteam mailing list submissions to
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+</I>&gt;<i>
+</I>&gt;<i> To subscribe or unsubscribe via the World Wide Web, visit
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i> or, via email, send a message with subject or body 'help' to
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam-request at mageia.org</A>
+</I>&gt;<i>
+</I>&gt;<i> You can reach the person managing the list at
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam-owner at mageia.org</A>
+</I>&gt;<i>
+</I>&gt;<i> When replying, please edit your Subject line so it is more specific
+</I>&gt;<i> than &quot;Re: Contents of Mageia-webteam digest...&quot;
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Today's Topics:
+</I>&gt;<i>
+</I>&gt;<i> 1. Meeting? (Romain d'Alverny)
+</I>&gt;<i> 2. Re: Meeting? (Wayne Sallee)
+</I>&gt;<i> 3. Re: Meeting? (Gr?goire Terras)
+</I>&gt;<i> 4. Re: Meeting? (Wayne Sallee)
+</I>&gt;<i> 5. Re: Meeting? (Oliver Burger)
+</I>&gt;<i> 6. Re: Meeting? (Samuel Verschelde)
+</I>&gt;<i> 7. (no subject) (Christophe MONTEIL)
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> ----------------------------------------------------------------------
+</I>&gt;<i>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101112/44740027/attachment.html&gt;
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000027.html">[Mageia-webteam] (no subject)
+</A></li>
+ <LI>Next message: <A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#28">[ date ]</a>
+ <a href="thread.html#28">[ thread ]</a>
+ <a href="subject.html#28">[ subject ]</a>
+ <a href="author.html#28">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000029.html b/zarb-ml/mageia-webteam/2010-November/000029.html
new file mode 100644
index 000000000..ab7d38466
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000029.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Domain Squatters
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3C4CDD2BC2.9030000%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000028.html">
+ <LINK REL="Next" HREF="000031.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Domain Squatters</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3C4CDD2BC2.9030000%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Domain Squatters">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Fri Nov 12 12:57:54 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A></li>
+ <LI>Next message: <A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#29">[ date ]</a>
+ <a href="thread.html#29">[ thread ]</a>
+ <a href="subject.html#29">[ subject ]</a>
+ <a href="author.html#29">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>With Mageia being so hard to spell, I expect there will be some major
+abuse by domain squatters. Maybe Mageia should pick up a few domain
+names redirecting to Mageia.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A></li>
+ <LI>Next message: <A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#29">[ date ]</a>
+ <a href="thread.html#29">[ thread ]</a>
+ <a href="subject.html#29">[ subject ]</a>
+ <a href="author.html#29">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000030.html b/zarb-ml/mageia-webteam/2010-November/000030.html
new file mode 100644
index 000000000..b1216ff6b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000030.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTi%3D6vHZZO6XdXsn2S-y0Zo0_ZwTsZa5eD64dJvsA%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000026.html">
+ <LINK REL="Next" HREF="000036.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Romulo Pires</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTi%3D6vHZZO6XdXsn2S-y0Zo0_ZwTsZa5eD64dJvsA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">romulo.pires123 at gmail.com
+ </A><BR>
+ <I>Fri Nov 12 13:12:48 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000026.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000036.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#30">[ date ]</a>
+ <a href="thread.html#30">[ thread ]</a>
+ <a href="subject.html#30">[ subject ]</a>
+ <a href="author.html#30">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2010/11/12 Samuel Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">stormi at laposte.net</A>&gt;:
+&gt;<i>
+</I>&gt;<i> Le jeudi 11 novembre 2010 23:55:15, Romain d'Alverny a &#233;crit :
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Hi there,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> could try to hold an IRC meeting sometime next week? Here are three options:
+</I>&gt;&gt;<i> &#160;- Monday 15th
+</I>&gt;&gt;<i> &#160;- or Tuesday 16th
+</I>&gt;&gt;<i> &#160;- or Wednesday 17th
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> all three at either 8:30 UTC (9:30 Paris time) or 14:00 UTC (15 Paris time)
+</I>&gt;&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> All these are in work hours for me. I'll probably connect but not speak much :)
+</I>&gt;<i>
+</I>&gt;<i> Regards
+</I>&gt;<i>
+</I>&gt;<i> Samuel
+</I>&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+
+all saturday 20:00 UTC (-3:00 Brazil)
+--
+Romulo Pires Pinto
+UFF/IC/BCC
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000026.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000036.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#30">[ date ]</a>
+ <a href="thread.html#30">[ thread ]</a>
+ <a href="subject.html#30">[ subject ]</a>
+ <a href="author.html#30">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000031.html b/zarb-ml/mageia-webteam/2010-November/000031.html
new file mode 100644
index 000000000..9f2d7a2c6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000031.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Domain Squatters
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3CAANLkTi%3DfywJFsA7B0VQe4G-U2vT1a%3DhF_viycFxDhvVb%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000029.html">
+ <LINK REL="Next" HREF="000032.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Domain Squatters</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3CAANLkTi%3DfywJFsA7B0VQe4G-U2vT1a%3DhF_viycFxDhvVb%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Domain Squatters">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Nov 12 13:44:26 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#31">[ date ]</a>
+ <a href="thread.html#31">[ thread ]</a>
+ <a href="subject.html#31">[ subject ]</a>
+ <a href="author.html#31">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Nov 12, 2010 at 12:57, Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+&gt;<i> With Mageia being so hard to spell, I expect there will be some major abuse
+</I>&gt;<i> by domain squatters.
+</I>
+Google (or some other search engine) is likely to be the main source
+portal to go to Mageia (or direct URLs) so I don't think we're going
+to have a major issue on this, before long. There are far more
+interesting targets for squatters.
+
+&gt;<i> Maybe Mageia should pick up a few domain names
+</I>&gt;<i> redirecting to Mageia.
+</I>
+What do you suggest?
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#31">[ date ]</a>
+ <a href="thread.html#31">[ thread ]</a>
+ <a href="subject.html#31">[ subject ]</a>
+ <a href="author.html#31">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000032.html b/zarb-ml/mageia-webteam/2010-November/000032.html
new file mode 100644
index 000000000..3776981dd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000032.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Domain Squatters
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3CAANLkTi%3DTOvs3zEVQzkz3OezehNVSzPd5DDnLTo_Fz%3D8q%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000031.html">
+ <LINK REL="Next" HREF="000033.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Domain Squatters</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3CAANLkTi%3DTOvs3zEVQzkz3OezehNVSzPd5DDnLTo_Fz%3D8q%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Domain Squatters">Kosmas at mach7x.com
+ </A><BR>
+ <I>Fri Nov 12 13:54:13 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#32">[ date ]</a>
+ <a href="thread.html#32">[ thread ]</a>
+ <a href="subject.html#32">[ subject ]</a>
+ <a href="author.html#32">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Maybe individuals would be able to register domains for their country and
+then redirect them to mageia.org?
+
+I've registered mageia.org.uk and it points to mageia.org
+
+On 12 November 2010 12:44, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+
+&gt;<i> On Fri, Nov 12, 2010 at 12:57, Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+</I>&gt;<i> &gt; With Mageia being so hard to spell, I expect there will be some major
+</I>&gt;<i> abuse
+</I>&gt;<i> &gt; by domain squatters.
+</I>&gt;<i>
+</I>&gt;<i> Google (or some other search engine) is likely to be the main source
+</I>&gt;<i> portal to go to Mageia (or direct URLs) so I don't think we're going
+</I>&gt;<i> to have a major issue on this, before long. There are far more
+</I>&gt;<i> interesting targets for squatters.
+</I>&gt;<i>
+</I>&gt;<i> &gt; Maybe Mageia should pick up a few domain names
+</I>&gt;<i> &gt; redirecting to Mageia.
+</I>&gt;<i>
+</I>&gt;<i> What do you suggest?
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101112/1d0de107/attachment.html&gt;
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#32">[ date ]</a>
+ <a href="thread.html#32">[ thread ]</a>
+ <a href="subject.html#32">[ subject ]</a>
+ <a href="author.html#32">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000033.html b/zarb-ml/mageia-webteam/2010-November/000033.html
new file mode 100644
index 000000000..306e7a60b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000033.html
@@ -0,0 +1,96 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Domain Squatters
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3C4CDD3AAB.2060302%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000032.html">
+ <LINK REL="Next" HREF="000034.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Domain Squatters</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3C4CDD3AAB.2060302%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Domain Squatters">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Fri Nov 12 14:01:31 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#33">[ date ]</a>
+ <a href="thread.html#33">[ thread ]</a>
+ <a href="subject.html#33">[ subject ]</a>
+ <a href="author.html#33">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Romain d'Alverny wrote on 11/12/2010 07:44 AM:
+&gt;<i> On Fri, Nov 12, 2010 at 12:57, Wayne Sallee&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i> With Mageia being so hard to spell, I expect there will be some major abuse
+</I>&gt;&gt;<i> by domain squatters.
+</I>&gt;&gt;<i>
+</I>&gt;<i> Google (or some other search engine) is likely to be the main source
+</I>&gt;<i> portal to go to Mageia (or direct URLs) so I don't think we're going
+</I>&gt;<i> to have a major issue on this, before long. There are far more
+</I>&gt;<i> interesting targets for squatters.
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;&gt;<i> Maybe Mageia should pick up a few domain names
+</I>&gt;&gt;<i> redirecting to Mageia.
+</I>&gt;&gt;<i>
+</I>&gt;<i> What do you suggest?
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>That's true that google is, and will be real good at giving people the
+correct address. I use google a lot for that very reason when going to a
+web site, when I want to avoid the possibility of getting to a domain
+squatters web site, or worse.
+
+Magiea seems like a likely misspelling, since mageia means magic. I know
+I keep wanting to spell it that way, and have to keep correcting myself.
+
+I don't know whether it's worth it for Mageia to pick up a few extra
+domain names or not. But I thought I'd bring up the idea.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#33">[ date ]</a>
+ <a href="thread.html#33">[ thread ]</a>
+ <a href="subject.html#33">[ subject ]</a>
+ <a href="author.html#33">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000034.html b/zarb-ml/mageia-webteam/2010-November/000034.html
new file mode 100644
index 000000000..4feeb8220
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000034.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Domain Squatters
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3C4CDD7557.5000805%40laposte.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000033.html">
+ <LINK REL="Next" HREF="000035.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Domain Squatters</H1>
+ <B>andre999</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Domain%20Squatters&In-Reply-To=%3C4CDD7557.5000805%40laposte.net%3E"
+ TITLE="[Mageia-webteam] Domain Squatters">andr55 at laposte.net
+ </A><BR>
+ <I>Fri Nov 12 18:11:51 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#34">[ date ]</a>
+ <a href="thread.html#34">[ thread ]</a>
+ <a href="subject.html#34">[ subject ]</a>
+ <a href="author.html#34">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Wayne Sallee a &#233;crit :
+&gt;<i>
+</I>&gt;<i> With Mageia being so hard to spell, I expect there will be some major
+</I>&gt;<i> abuse by domain squatters. Maybe Mageia should pick up a few domain
+</I>&gt;<i> names redirecting to Mageia.
+</I>&gt;<i>
+</I>&gt;<i> Wayne Sallee
+</I>
+Hard to spell ?
+If you pronounce it phonetiquement (in English) ...
+ma-ge-i-a slowly
+(soft g like the second g in garage, e as in pen, i as in media)
+Then pronounce it gradually faster, until you reach a normal speed.
+Try it.
+Then try to mispell Mageia. :)
+(Works the same in French, and probably most other European languages.)
+
+- Andr&#233;
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#34">[ date ]</a>
+ <a href="thread.html#34">[ thread ]</a>
+ <a href="subject.html#34">[ subject ]</a>
+ <a href="author.html#34">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000035.html b/zarb-ml/mageia-webteam/2010-November/000035.html
new file mode 100644
index 000000000..78afea07a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000035.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3CAANLkTimucR5EQ%3DnVTEw0XNK0xRJ%3DGcCCA-%3Dx4iZ6Oz6p%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000034.html">
+ <LINK REL="Next" HREF="000037.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting, Wednesday, 14:00 UTC</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3CAANLkTimucR5EQ%3DnVTEw0XNK0xRJ%3DGcCCA-%3Dx4iZ6Oz6p%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting, Wednesday, 14:00 UTC">rdalverny at gmail.com
+ </A><BR>
+ <I>Sun Nov 14 17:55:49 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#35">[ date ]</a>
+ <a href="thread.html#35">[ thread ]</a>
+ <a href="subject.html#35">[ subject ]</a>
+ <a href="author.html#35">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+so, we're going to hold this meeting on Wednesday at 14:00 UTC for one
+hour at most on <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> .
+
+So reminder, we will discuss about:
+ 1. team setup (and tasks dispatch)
+ 2. going through
+<A HREF="https://mageia.org/pipermail/mageia-webteam/2010-November/000012.html">https://mageia.org/pipermail/mageia-webteam/2010-November/000012.html</A>
+with an updated status
+ 3. our identity webapp (managing user accounts for the project and
+web apps) to be refined
+(based on Catalyst Perl framework, needs work: flow and features,
+code, css); has no online doc or project page but we can start this;
+ 4. our coming wiki setup (a multi-lingual mediawiki setup to build,
+there are several options, insights/coders welcome);
+ 5. if this is a good time to a regular meeting on IRC or if the team
+would work in a different fashion (having a sort of a public dedicated
+board for progress/discussions + this mailing-list + IRC only for
+quick contact/live discussions). Depends how the team can gather at
+times.
+
+(add your items, we may need to sort them to keep within the one hour,
+but at least we will know what to take into account next time).
+
+There will be a publicly archived log + a meeting summary.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A></li>
+ <LI>Next message: <A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#35">[ date ]</a>
+ <a href="thread.html#35">[ thread ]</a>
+ <a href="subject.html#35">[ subject ]</a>
+ <a href="author.html#35">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000036.html b/zarb-ml/mageia-webteam/2010-November/000036.html
new file mode 100644
index 000000000..5d9b99fa4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000036.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTin_dRqY5519j9i_1z9zSTaVo0owDc82L5Bwr6Oe%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000030.html">
+ <LINK REL="Next" HREF="000038.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>TMKCodes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3CAANLkTin_dRqY5519j9i_1z9zSTaVo0owDc82L5Bwr6Oe%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">tmkcodes at gmail.com
+ </A><BR>
+ <I>Mon Nov 15 08:16:31 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000030.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000038.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#36">[ date ]</a>
+ <a href="thread.html#36">[ thread ]</a>
+ <a href="subject.html#36">[ subject ]</a>
+ <a href="author.html#36">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Nov 12, 2010 at 12:55 AM, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; wrote:
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> could try to hold an IRC meeting sometime next week? Here are three options:
+</I>&gt;<i> &#160;- Monday 15th
+</I>&gt;<i> &#160;- or Tuesday 16th
+</I>&gt;<i> &#160;- or Wednesday 17th
+</I>&gt;<i>
+</I>&gt;<i> all three at either 8:30 UTC (9:30 Paris time) or 14:00 UTC (15 Paris time)
+</I>&gt;<i>
+</I>&gt;<i> It would happen on <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> , should not
+</I>&gt;<i> last longer than 1 hour and will be about:
+</I>&gt;<i>
+</I>&gt;<i> &#160;1. team setup
+</I>&gt;<i> &#160;2. laying down a status/progress map for web apps
+</I>&gt;<i> &#160;3. speaking about identity webapp (managing accounts) to be refined
+</I>&gt;<i> (Catalyst-based, needs code and design work)
+</I>&gt;<i> &#160;4. speaking about the wiki setup (a multi-lingual mediawiki setup to build)
+</I>&gt;<i>
+</I>&gt;<i> (add your items, we may need to sort them to keep within the one hour,
+</I>&gt;<i> but at least we will know what to take into account next time).
+</I>&gt;<i>
+</I>&gt;<i> There will be a publicly archived log + a meeting summary.
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+All of the times are good for me, but I would prefer 14:00 UTC.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000030.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000038.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#36">[ date ]</a>
+ <a href="thread.html#36">[ thread ]</a>
+ <a href="subject.html#36">[ subject ]</a>
+ <a href="author.html#36">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000037.html b/zarb-ml/mageia-webteam/2010-November/000037.html
new file mode 100644
index 000000000..44a33bce8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000037.html
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3CAANLkTimkrBAYRytCUe85nfvgi%3DcJtHwAgxRiBh7jxkvc%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000035.html">
+ <LINK REL="Next" HREF="000039.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting, Wednesday, 14:00 UTC</H1>
+ <B>Egill &#222;orl&#225;ksson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3CAANLkTimkrBAYRytCUe85nfvgi%3DcJtHwAgxRiBh7jxkvc%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting, Wednesday, 14:00 UTC">eth at lanmot.is
+ </A><BR>
+ <I>Mon Nov 15 11:49:51 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#37">[ date ]</a>
+ <a href="thread.html#37">[ thread ]</a>
+ <a href="subject.html#37">[ subject ]</a>
+ <a href="author.html#37">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hey,
+
+This isn't the best timing for me, I have a weekly football game with
+friends every wednesday at 13:00 GMT+0 which usually isn't over until around
+15:00
+
+I could make it every now and then, but on a regular basis I doubt it.
+
+On Sun, Nov 14, 2010 at 4:55 PM, Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;wrote:
+
+&gt;<i> Hi guys,
+</I>&gt;<i>
+</I>&gt;<i> so, we're going to hold this meeting on Wednesday at 14:00 UTC for one
+</I>&gt;<i> hour at most on <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> .
+</I>&gt;<i>
+</I>&gt;<i> So reminder, we will discuss about:
+</I>&gt;<i> 1. team setup (and tasks dispatch)
+</I>&gt;<i> 2. going through
+</I>&gt;<i> <A HREF="https://mageia.org/pipermail/mageia-webteam/2010-November/000012.html">https://mageia.org/pipermail/mageia-webteam/2010-November/000012.html</A>
+</I>&gt;<i> with an updated status
+</I>&gt;<i> 3. our identity webapp (managing user accounts for the project and
+</I>&gt;<i> web apps) to be refined
+</I>&gt;<i> (based on Catalyst Perl framework, needs work: flow and features,
+</I>&gt;<i> code, css); has no online doc or project page but we can start this;
+</I>&gt;<i> 4. our coming wiki setup (a multi-lingual mediawiki setup to build,
+</I>&gt;<i> there are several options, insights/coders welcome);
+</I>&gt;<i> 5. if this is a good time to a regular meeting on IRC or if the team
+</I>&gt;<i> would work in a different fashion (having a sort of a public dedicated
+</I>&gt;<i> board for progress/discussions + this mailing-list + IRC only for
+</I>&gt;<i> quick contact/live discussions). Depends how the team can gather at
+</I>&gt;<i> times.
+</I>&gt;<i>
+</I>&gt;<i> (add your items, we may need to sort them to keep within the one hour,
+</I>&gt;<i> but at least we will know what to take into account next time).
+</I>&gt;<i>
+</I>&gt;<i> There will be a publicly archived log + a meeting summary.
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+
+
+--
+K&#230;r kve&#240;ja,
+Egill &#222;orl&#225;ksson
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">eth at lanmot.is</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101115/2db5f6e4/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#37">[ date ]</a>
+ <a href="thread.html#37">[ thread ]</a>
+ <a href="subject.html#37">[ subject ]</a>
+ <a href="author.html#37">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000038.html b/zarb-ml/mageia-webteam/2010-November/000038.html
new file mode 100644
index 000000000..8843be3c8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000038.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting?
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C4CE1344D.4020304%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000036.html">
+ <LINK REL="Next" HREF="000027.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting?</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%3F&In-Reply-To=%3C4CE1344D.4020304%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Meeting?">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Mon Nov 15 14:23:25 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000036.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000027.html">[Mageia-webteam] (no subject)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#38">[ date ]</a>
+ <a href="thread.html#38">[ thread ]</a>
+ <a href="subject.html#38">[ subject ]</a>
+ <a href="author.html#38">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>TMKCodes wrote on 11/15/2010 02:16 AM:
+&gt;<i> All of the times are good for me, but I would prefer 14:00 UTC.
+</I>&gt;<i>
+</I>Well then you are in luck, because that is when the meeting is scheduled
+for. And it's this Wednesday.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000036.html">[Mageia-webteam] Meeting?
+</A></li>
+ <LI>Next message: <A HREF="000027.html">[Mageia-webteam] (no subject)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#38">[ date ]</a>
+ <a href="thread.html#38">[ thread ]</a>
+ <a href="subject.html#38">[ subject ]</a>
+ <a href="author.html#38">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000039.html b/zarb-ml/mageia-webteam/2010-November/000039.html
new file mode 100644
index 000000000..46e17da7b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000039.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3C4CE135A9.40301%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000037.html">
+ <LINK REL="Next" HREF="000040.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting, Wednesday, 14:00 UTC</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3C4CE135A9.40301%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Meeting, Wednesday, 14:00 UTC">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Mon Nov 15 14:29:13 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#39">[ date ]</a>
+ <a href="thread.html#39">[ thread ]</a>
+ <a href="subject.html#39">[ subject ]</a>
+ <a href="author.html#39">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Egill &#222;orl&#225;ksson wrote on 11/15/2010 05:49 AM:
+&gt;<i> Hey,
+</I>&gt;<i>
+</I>&gt;<i> This isn't the best timing for me, I have a weekly football game with
+</I>&gt;<i> friends every wednesday at 13:00 GMT+0 which usually isn't over until
+</I>&gt;<i> around 15:00
+</I>&gt;<i>
+</I>&gt;<i>
+</I>Well then you will just have to have a half-time. :-)
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#39">[ date ]</a>
+ <a href="thread.html#39">[ thread ]</a>
+ <a href="subject.html#39">[ subject ]</a>
+ <a href="author.html#39">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000040.html b/zarb-ml/mageia-webteam/2010-November/000040.html
new file mode 100644
index 000000000..76a5cf9f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000040.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3C201011151455.50954.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000039.html">
+ <LINK REL="Next" HREF="000041.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting, Wednesday, 14:00 UTC</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%2C%20Wednesday%2C%2014%3A00%20UTC&In-Reply-To=%3C201011151455.50954.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Meeting, Wednesday, 14:00 UTC">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Mon Nov 15 14:55:50 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#40">[ date ]</a>
+ <a href="thread.html#40">[ thread ]</a>
+ <a href="subject.html#40">[ subject ]</a>
+ <a href="author.html#40">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Egill &#222;orl&#225;ksson &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">eth at lanmot.is</A>&gt; schrieb am 2010-11-15
+&gt;<i> This isn't the best timing for me, I have a weekly football game with
+</I>&gt;<i> friends every wednesday at 13:00 GMT+0 which usually isn't over until
+</I>&gt;<i> around 15:00
+</I>I think, it's hard enough to find a timespan where most of us aren't in bed
+because it's in the middle of the night somewhere or at wrok because it's in
+the middle of the day somewhere else.
+I think 14 UTC is kind of a compromis. It's not night yet even on the American
+west coast. We Europens have the problem to get our bosses to let us attend.
+
+Oliver
+
+--
+<A HREF="http://www.mageia.org">http://www.mageia.org</A> - Mageia, the magic continues
+
+
+Oliver Burger
+
+mageia contributor
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#40">[ date ]</a>
+ <a href="thread.html#40">[ thread ]</a>
+ <a href="subject.html#40">[ subject ]</a>
+ <a href="author.html#40">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000041.html b/zarb-ml/mageia-webteam/2010-November/000041.html
new file mode 100644
index 000000000..afdc0901a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000041.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Web Team Meeting Wed Nov 17
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20Team%20Meeting%20Wed%20Nov%2017&In-Reply-To=%3CAANLkTinF2XDY0wUmAPpr8N2jHeCEKi0%3D9KbiFJXx_-Af%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000040.html">
+ <LINK REL="Next" HREF="000042.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Web Team Meeting Wed Nov 17</H1>
+ <B>TMKCodes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20Team%20Meeting%20Wed%20Nov%2017&In-Reply-To=%3CAANLkTinF2XDY0wUmAPpr8N2jHeCEKi0%3D9KbiFJXx_-Af%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Web Team Meeting Wed Nov 17">tmkcodes at gmail.com
+ </A><BR>
+ <I>Wed Nov 17 16:17:26 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#41">[ date ]</a>
+ <a href="thread.html#41">[ thread ]</a>
+ <a href="subject.html#41">[ subject ]</a>
+ <a href="author.html#41">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello my lovely people.
+
+Meeting ended Wed Nov 17 15:10:14 2010 UTC. Rda did a nice job as the
+chairman. I will be working as the point of contact (Secretary) from
+now on. So if you need to know anything, just ask me.
+
+Here are the meeting bot minutes.
+
+Minutes:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html</A>
+Minutes (text):
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.txt">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.txt</A>
+Log:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.log.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.log.html</A>
+
+--
+Toni Mikael Korpela &quot;TMKCodes&quot;
+046 6265604
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmkcodes at gmail.com</A>
+<A HREF="http://www.crimasi.com">http://www.crimasi.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A></li>
+ <LI>Next message: <A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#41">[ date ]</a>
+ <a href="thread.html#41">[ thread ]</a>
+ <a href="subject.html#41">[ subject ]</a>
+ <a href="author.html#41">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000042.html b/zarb-ml/mageia-webteam/2010-November/000042.html
new file mode 100644
index 000000000..697a0253e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000042.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendar on the website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C4CE3F75F.4030102%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000041.html">
+ <LINK REL="Next" HREF="000043.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendar on the website</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C4CE3F75F.4030102%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Wed Nov 17 16:40:15 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A></li>
+ <LI>Next message: <A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#42">[ date ]</a>
+ <a href="thread.html#42">[ thread ]</a>
+ <a href="subject.html#42">[ subject ]</a>
+ <a href="author.html#42">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>There was some talk about using Google Calendar.
+Google Calendar is not the way to go.
+
+The best calendar program for a web site is:
+<A HREF="http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php">http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php</A>
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A></li>
+ <LI>Next message: <A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#42">[ date ]</a>
+ <a href="thread.html#42">[ thread ]</a>
+ <a href="subject.html#42">[ subject ]</a>
+ <a href="author.html#42">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000043.html b/zarb-ml/mageia-webteam/2010-November/000043.html
new file mode 100644
index 000000000..c473cbfad
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000043.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendar on the website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C201011171842.33615.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000042.html">
+ <LINK REL="Next" HREF="000044.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendar on the website</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C201011171842.33615.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Nov 17 18:42:33 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#43">[ date ]</a>
+ <a href="thread.html#43">[ thread ]</a>
+ <a href="subject.html#43">[ subject ]</a>
+ <a href="author.html#43">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; schrieb am 2010-11-17
+&gt;<i> There was some talk about using Google Calendar.
+</I>&gt;<i> Google Calendar is not the way to go.
+</I>&gt;<i>
+</I>&gt;<i> The best calendar program for a web site is:
+</I>&gt;<i> <A HREF="http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php">http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php</A>
+</I>Is it OpenSource? And if it is, where can I get the Source? Btw. there is a
+translation bug in it (German translation).
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#43">[ date ]</a>
+ <a href="thread.html#43">[ thread ]</a>
+ <a href="subject.html#43">[ subject ]</a>
+ <a href="author.html#43">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000044.html b/zarb-ml/mageia-webteam/2010-November/000044.html
new file mode 100644
index 000000000..65700ed44
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000044.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendar on the website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3CAANLkTinSkOssK%2BQySZLZHQn03-Ks4E3QCj1bXLAQUED4%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000043.html">
+ <LINK REL="Next" HREF="000045.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendar on the website</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3CAANLkTinSkOssK%2BQySZLZHQn03-Ks4E3QCj1bXLAQUED4%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Nov 17 18:44:50 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#44">[ date ]</a>
+ <a href="thread.html#44">[ thread ]</a>
+ <a href="subject.html#44">[ subject ]</a>
+ <a href="author.html#44">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="http://www.k5n.us/webcalendar.php">http://www.k5n.us/webcalendar.php</A>
+
+On 17 November 2010 17:42, Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; wrote:
+
+&gt;<i> Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; schrieb am 2010-11-17
+</I>&gt;<i> &gt; There was some talk about using Google Calendar.
+</I>&gt;<i> &gt; Google Calendar is not the way to go.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; The best calendar program for a web site is:
+</I>&gt;<i> &gt; <A HREF="http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php">http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php</A>
+</I>&gt;<i> Is it OpenSource? And if it is, where can I get the Source? Btw. there is a
+</I>&gt;<i> translation bug in it (German translation).
+</I>&gt;<i>
+</I>&gt;<i> Oliver
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101117/ce5e3846/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#44">[ date ]</a>
+ <a href="thread.html#44">[ thread ]</a>
+ <a href="subject.html#44">[ subject ]</a>
+ <a href="author.html#44">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000045.html b/zarb-ml/mageia-webteam/2010-November/000045.html
new file mode 100644
index 000000000..b804f8b9b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000045.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendar on the website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C201011171845.33932.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000044.html">
+ <LINK REL="Next" HREF="000046.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendar on the website</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C201011171845.33932.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Nov 17 18:45:33 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#45">[ date ]</a>
+ <a href="thread.html#45">[ thread ]</a>
+ <a href="subject.html#45">[ subject ]</a>
+ <a href="author.html#45">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Oliver Burger &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">oliver.bgr at googlemail.com</A>&gt; schrieb am 2010-11-17
+&gt;<i> Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; schrieb am 2010-11-17
+</I>&gt;<i> &gt; The best calendar program for a web site is:
+</I>&gt;<i> &gt; <A HREF="http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php">http://www.leesburgnazarene.waynesallee.com/WebCalendar-1.0.5/month.php</A>
+</I>&gt;<i> Is it OpenSource? And if it is, where can I get the Source? Btw. there is a
+</I>&gt;<i> translation bug in it (German translation).
+</I>Forget my question, Just found the link to sourceforge...
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#45">[ date ]</a>
+ <a href="thread.html#45">[ thread ]</a>
+ <a href="subject.html#45">[ subject ]</a>
+ <a href="author.html#45">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000046.html b/zarb-ml/mageia-webteam/2010-November/000046.html
new file mode 100644
index 000000000..d03d9d7a5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000046.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendar on the website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C4CE45415.4000606%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000045.html">
+ <LINK REL="Next" HREF="000047.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendar on the website</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C4CE45415.4000606%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Wed Nov 17 23:15:49 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#46">[ date ]</a>
+ <a href="thread.html#46">[ thread ]</a>
+ <a href="subject.html#46">[ subject ]</a>
+ <a href="author.html#46">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>One of the changes I made was to change the English translation from:
+View this entry: View this event
+to:
+View this entry: &amp;nbsp;
+
+This gets rid of the yellow popup that shows up when you put the mouse
+over an event. I find it very anoying. I started to do this with all of
+the languages, but then didn't bother to do them all since it's a local
+calendar that will get little to no access from other countries. But I'd
+recommend doing it for all of the languages for Mageia because without
+that change, the yellow pop-up gets in the way.
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#46">[ date ]</a>
+ <a href="thread.html#46">[ thread ]</a>
+ <a href="subject.html#46">[ subject ]</a>
+ <a href="author.html#46">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000047.html b/zarb-ml/mageia-webteam/2010-November/000047.html
new file mode 100644
index 000000000..aab30b620
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000047.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Calendar on the website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C201011180845.58292.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000046.html">
+ <LINK REL="Next" HREF="000048.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Calendar on the website</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Calendar%20on%20the%20website&In-Reply-To=%3C201011180845.58292.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Calendar on the website">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Nov 18 08:45:58 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000048.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#47">[ date ]</a>
+ <a href="thread.html#47">[ thread ]</a>
+ <a href="subject.html#47">[ subject ]</a>
+ <a href="author.html#47">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>One question that remains (and has to be solved with the project team). Is it
+possible to use our coming ldap for user authentication?
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000048.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#47">[ date ]</a>
+ <a href="thread.html#47">[ thread ]</a>
+ <a href="subject.html#47">[ subject ]</a>
+ <a href="author.html#47">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000048.html b/zarb-ml/mageia-webteam/2010-November/000048.html
new file mode 100644
index 000000000..56f3ff34d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000048.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting today
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20today&In-Reply-To=%3CAANLkTimTStbjMtjtgDw5j04H%3Dya6uUbmyJVn7bqi%2Bvov%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000047.html">
+ <LINK REL="Next" HREF="000049.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting today</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20today&In-Reply-To=%3CAANLkTimTStbjMtjtgDw5j04H%3Dya6uUbmyJVn7bqi%2Bvov%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting today">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Nov 24 12:10:09 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000049.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#48">[ date ]</a>
+ <a href="thread.html#48">[ thread ]</a>
+ <a href="subject.html#48">[ subject ]</a>
+ <a href="author.html#48">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+a short reminder, we are supposed to meet at 14:00 UTC on
+<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> .
+
+I may have a problem to get an access point at this time; so just in
+case, misc will chair the meeting then. Anyway, I will be around for
+sure a few hours later. Sorry for this last minute thing.
+
+Apart from past week discussion points:
+ * obgr_seneca will work on html/css for CatDap
+ * rda will document app workflow on project page
+ * open a &quot;junior jobs&quot; place to list easy tasks for people that want
+to help but are not sure how/where to start
+ * dmorgan takes care of the junior jobs list
+ * list reasonably available ssl certificates providers/prices at hand
+on <A HREF="http://mageia.org/wiki/doku.php?id=web:certificates">http://mageia.org/wiki/doku.php?id=web:certificates</A> (misc and
+others)
+ * obgr_seneca, TMKCodes and rda will look into this wiki thing
+
+(see &quot;Actions items&quot; here
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html</A>
+), we do not have a fixed list of topics. Anyone willing to add?
+
+As for myself, I'm late on CatDap workflow documentation and did not
+start the mediawiki work with obgr_seneca and TMKCodes - will do this
+evening.
+
+Cheers,
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A></li>
+ <LI>Next message: <A HREF="000049.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#48">[ date ]</a>
+ <a href="thread.html#48">[ thread ]</a>
+ <a href="subject.html#48">[ subject ]</a>
+ <a href="author.html#48">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000049.html b/zarb-ml/mageia-webteam/2010-November/000049.html
new file mode 100644
index 000000000..55d633fef
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000049.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting today
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20today&In-Reply-To=%3CAANLkTi%3DmuA8CoFu8Ufc4B5%3DZweX2%3DWz%3DXcu0Gopn6y4f%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000048.html">
+ <LINK REL="Next" HREF="000050.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting today</H1>
+ <B>christophe monteil</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20today&In-Reply-To=%3CAANLkTi%3DmuA8CoFu8Ufc4B5%3DZweX2%3DWz%3DXcu0Gopn6y4f%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting today">christophe.monteil at gmail.com
+ </A><BR>
+ <I>Wed Nov 24 13:07:03 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000048.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000050.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#49">[ date ]</a>
+ <a href="thread.html#49">[ thread ]</a>
+ <a href="subject.html#49">[ subject ]</a>
+ <a href="author.html#49">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello,
+
+I'm sorry to write that I will not participate to this meeting because I
+will work.
+
+But, if you need somebody about html/css/php/sql development, you can
+automatically include my participation in this project. (may be obgr_seneca
+or rda need help for catdap/workflow ?).
+
+Have a good day,
+
+Christophe
+
+2010/11/24 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;
+
+&gt;<i> Hi there,
+</I>&gt;<i>
+</I>&gt;<i> a short reminder, we are supposed to meet at 14:00 UTC on
+</I>&gt;<i> <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> .
+</I>&gt;<i>
+</I>&gt;<i> I may have a problem to get an access point at this time; so just in
+</I>&gt;<i> case, misc will chair the meeting then. Anyway, I will be around for
+</I>&gt;<i> sure a few hours later. Sorry for this last minute thing.
+</I>&gt;<i>
+</I>&gt;<i> Apart from past week discussion points:
+</I>&gt;<i> * obgr_seneca will work on html/css for CatDap
+</I>&gt;<i> * rda will document app workflow on project page
+</I>&gt;<i> * open a &quot;junior jobs&quot; place to list easy tasks for people that want
+</I>&gt;<i> to help but are not sure how/where to start
+</I>&gt;<i> * dmorgan takes care of the junior jobs list
+</I>&gt;<i> * list reasonably available ssl certificates providers/prices at hand
+</I>&gt;<i> on <A HREF="http://mageia.org/wiki/doku.php?id=web:certificates">http://mageia.org/wiki/doku.php?id=web:certificates</A> (misc and
+</I>&gt;<i> others)
+</I>&gt;<i> * obgr_seneca, TMKCodes and rda will look into this wiki thing
+</I>&gt;<i>
+</I>&gt;<i> (see &quot;Actions items&quot; here
+</I>&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html</A>
+</I>&gt;<i> ), we do not have a fixed list of topics. Anyone willing to add?
+</I>&gt;<i>
+</I>&gt;<i> As for myself, I'm late on CatDap workflow documentation and did not
+</I>&gt;<i> start the mediawiki work with obgr_seneca and TMKCodes - will do this
+</I>&gt;<i> evening.
+</I>&gt;<i>
+</I>&gt;<i> Cheers,
+</I>&gt;<i>
+</I>&gt;<i> Romain
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101124/a6969791/attachment.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000048.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000050.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#49">[ date ]</a>
+ <a href="thread.html#49">[ thread ]</a>
+ <a href="subject.html#49">[ subject ]</a>
+ <a href="author.html#49">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000050.html b/zarb-ml/mageia-webteam/2010-November/000050.html
new file mode 100644
index 000000000..436f77d44
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000050.html
@@ -0,0 +1,123 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Meeting today
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20today&In-Reply-To=%3CAANLkTikV0ufUySAZhnmUceCfY%2BeADtUDuuc0yTUBPspR%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000049.html">
+ <LINK REL="Next" HREF="000051.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Meeting today</H1>
+ <B>Romulo Pires</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Meeting%20today&In-Reply-To=%3CAANLkTikV0ufUySAZhnmUceCfY%2BeADtUDuuc0yTUBPspR%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Meeting today">romulo.pires123 at gmail.com
+ </A><BR>
+ <I>Wed Nov 24 13:09:10 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000049.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#50">[ date ]</a>
+ <a href="thread.html#50">[ thread ]</a>
+ <a href="subject.html#50">[ subject ]</a>
+ <a href="author.html#50">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I'm same situation!
+
+2010/11/24 christophe monteil &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">christophe.monteil at gmail.com</A>&gt;:
+&gt;<i> Hello,
+</I>&gt;<i>
+</I>&gt;<i> I'm sorry to write that I will not participate to this meeting because I
+</I>&gt;<i> will work.
+</I>&gt;<i>
+</I>&gt;<i> But, if you need somebody about html/css/php/sql development, you can
+</I>&gt;<i> automatically include my participation in this project. (may be obgr_seneca
+</I>&gt;<i> or rda need help for catdap/workflow ?).
+</I>&gt;<i>
+</I>&gt;<i> Have a good day,
+</I>&gt;<i>
+</I>&gt;<i> Christophe
+</I>&gt;<i>
+</I>&gt;<i> 2010/11/24 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Hi there,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> a short reminder, we are supposed to meet at 14:00 UTC on
+</I>&gt;&gt;<i> <A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A> .
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I may have a problem to get an access point at this time; so just in
+</I>&gt;&gt;<i> case, misc will chair the meeting then. Anyway, I will be around for
+</I>&gt;&gt;<i> sure a few hours later. Sorry for this last minute thing.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Apart from past week discussion points:
+</I>&gt;&gt;<i> &#160;* obgr_seneca will work on html/css for CatDap
+</I>&gt;&gt;<i> &#160;* rda will document app workflow on project page
+</I>&gt;&gt;<i> &#160;* open a &quot;junior jobs&quot; place to list easy tasks for people that want
+</I>&gt;&gt;<i> to help but are not sure how/where to start
+</I>&gt;&gt;<i> &#160;* dmorgan takes care of the junior jobs list
+</I>&gt;&gt;<i> &#160;* list reasonably available ssl certificates providers/prices at hand
+</I>&gt;&gt;<i> on <A HREF="http://mageia.org/wiki/doku.php?id=web:certificates">http://mageia.org/wiki/doku.php?id=web:certificates</A> (misc and
+</I>&gt;&gt;<i> others)
+</I>&gt;&gt;<i> &#160;* obgr_seneca, TMKCodes and rda will look into this wiki thing
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> (see &quot;Actions items&quot; here
+</I>&gt;&gt;<i> <A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-17-14.02.html</A>
+</I>&gt;&gt;<i> ), we do not have a fixed list of topics. Anyone willing to add?
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> As for myself, I'm late on CatDap workflow documentation and did not
+</I>&gt;&gt;<i> start the mediawiki work with obgr_seneca and TMKCodes - will do this
+</I>&gt;&gt;<i> evening.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Cheers,
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Romain
+</I>&gt;&gt;<i> _______________________________________________
+</I>&gt;&gt;<i> Mageia-webteam mailing list
+</I>&gt;&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>&gt;<i>
+</I>
+
+
+--
+Romulo Pires Pinto
+UFF/IC/BCC
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000049.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#50">[ date ]</a>
+ <a href="thread.html#50">[ thread ]</a>
+ <a href="subject.html#50">[ subject ]</a>
+ <a href="author.html#50">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000051.html b/zarb-ml/mageia-webteam/2010-November/000051.html
new file mode 100644
index 000000000..3785897ca
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000051.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Web Team Meeting Wed Nov 24
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20Team%20Meeting%20Wed%20Nov%2024&In-Reply-To=%3CAANLkTimZ17quk9oiB8wSF1bBuOXNW-pAN3ELWyU2JCuc%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000050.html">
+ <LINK REL="Next" HREF="000052.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Web Team Meeting Wed Nov 24</H1>
+ <B>TMKCodes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Web%20Team%20Meeting%20Wed%20Nov%2024&In-Reply-To=%3CAANLkTimZ17quk9oiB8wSF1bBuOXNW-pAN3ELWyU2JCuc%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Web Team Meeting Wed Nov 24">tmkcodes at gmail.com
+ </A><BR>
+ <I>Wed Nov 24 15:26:11 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000050.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#51">[ date ]</a>
+ <a href="thread.html#51">[ thread ]</a>
+ <a href="subject.html#51">[ subject ]</a>
+ <a href="author.html#51">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello again.
+
+Our small and short meeting ended quickly.
+
+Meeting ended Wed Nov 24 14:24:20 2010 UTC.
+Minutes:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-24-14.05.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-24-14.05.html</A>
+Minutes (text):
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-24-14.05.txt">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-24-14.05.txt</A>
+Log:
+<A HREF="http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-24-14.05.log.html">http://meetbot.mageia.org/mageia-web/2010/mageia-web.2010-11-24-14.05.log.html</A>
+
+--
+Toni Mikael Korpela &quot;TMKCodes&quot;
+046 6265604
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">tmkcodes at gmail.com</A>
+<A HREF="http://www.crimasi.com">http://www.crimasi.com</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000050.html">[Mageia-webteam] Meeting today
+</A></li>
+ <LI>Next message: <A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#51">[ date ]</a>
+ <a href="thread.html#51">[ thread ]</a>
+ <a href="subject.html#51">[ subject ]</a>
+ <a href="author.html#51">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000052.html b/zarb-ml/mageia-webteam/2010-November/000052.html
new file mode 100644
index 000000000..c0783f5d1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000052.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] download Mediawiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3C4CEEB295.6000803%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000051.html">
+ <LINK REL="Next" HREF="000053.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] download Mediawiki</H1>
+ <B>Christophe MONTEIL</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3C4CEEB295.6000803%40gmail.com%3E"
+ TITLE="[Mageia-webteam] download Mediawiki">christophe.monteil at gmail.com
+ </A><BR>
+ <I>Thu Nov 25 20:01:41 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A></li>
+ <LI>Next message: <A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#52">[ date ]</a>
+ <a href="thread.html#52">[ thread ]</a>
+ <a href="subject.html#52">[ subject ]</a>
+ <a href="author.html#52">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello,
+
+I tried to download mediawiki on the official website. But the stable
+-and previous- archive seem unavailable. Have you got this archive ?
+
+Bests regards,
+
+Christophe
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A></li>
+ <LI>Next message: <A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#52">[ date ]</a>
+ <a href="thread.html#52">[ thread ]</a>
+ <a href="subject.html#52">[ subject ]</a>
+ <a href="author.html#52">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000053.html b/zarb-ml/mageia-webteam/2010-November/000053.html
new file mode 100644
index 000000000..76ae9c38c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000053.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] download Mediawiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3CAANLkTikQd-2E0oO_FjisODoR-Ch-VcHay-jvZrP%3Ddvpy%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000052.html">
+ <LINK REL="Next" HREF="000054.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] download Mediawiki</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3CAANLkTikQd-2E0oO_FjisODoR-Ch-VcHay-jvZrP%3Ddvpy%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] download Mediawiki">rdalverny at gmail.com
+ </A><BR>
+ <I>Fri Nov 26 09:20:05 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI>Next message: <A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#53">[ date ]</a>
+ <a href="thread.html#53">[ thread ]</a>
+ <a href="subject.html#53">[ subject ]</a>
+ <a href="author.html#53">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+On Thu, Nov 25, 2010 at 20:01, Christophe MONTEIL
+&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">christophe.monteil at gmail.com</A>&gt; wrote:
+&gt;<i> Hello,
+</I>&gt;<i>
+</I>&gt;<i> I tried to download mediawiki on the official website. But the stable -and
+</I>&gt;<i> previous- archive seem unavailable. Have you got this archive ?
+</I>
+Seems they updated their download link:
+<A HREF="http://www.mediawiki.org/wiki/Download">http://www.mediawiki.org/wiki/Download</A> now points to
+<A HREF="http://noc.wikimedia.org/mediawiki-1.16.0.tar.gz">http://noc.wikimedia.org/mediawiki-1.16.0.tar.gz</A> (new server, download
+working)
+
+Romain
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI>Next message: <A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#53">[ date ]</a>
+ <a href="thread.html#53">[ thread ]</a>
+ <a href="subject.html#53">[ subject ]</a>
+ <a href="author.html#53">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000054.html b/zarb-ml/mageia-webteam/2010-November/000054.html
new file mode 100644
index 000000000..ca971ebb3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000054.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] download Mediawiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3C201011261103.51447.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000053.html">
+ <LINK REL="Next" HREF="000055.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] download Mediawiki</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3C201011261103.51447.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] download Mediawiki">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Fri Nov 26 11:03:51 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI>Next message: <A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#54">[ date ]</a>
+ <a href="thread.html#54">[ thread ]</a>
+ <a href="subject.html#54">[ subject ]</a>
+ <a href="author.html#54">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&quot;Romain d'Alverny&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; schrieb am 2010-11-26
+&gt;<i> On Thu, Nov 25, 2010 at 20:01, Christophe MONTEIL
+</I>&gt;<i> &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">christophe.monteil at gmail.com</A>&gt; wrote:
+</I>&gt;<i> &gt; I tried to download mediawiki on the official website. But the stable
+</I>&gt;<i> &gt; -and previous- archive seem unavailable. Have you got this archive ?
+</I>&gt;<i> &gt;
+</I>&gt;<i> Seems they updated their download link:
+</I>&gt;<i> <A HREF="http://www.mediawiki.org/wiki/Download">http://www.mediawiki.org/wiki/Download</A> now points to
+</I>&gt;<i> <A HREF="http://noc.wikimedia.org/mediawiki-1.16.0.tar.gz">http://noc.wikimedia.org/mediawiki-1.16.0.tar.gz</A> (new server, download
+</I>&gt;<i> working)
+</I>Yep, I found this, but I wanted to build a new rpm of mediawiki-1.16.0, the
+problem is: Thee needed i18n-patch file is not to be found on this new
+server...
+
+But I did rebuild the package of 1.15.1, you can find it her:
+<A HREF="ftp://ftp.mandrivauser.de/rpm/GPL/2010.1/i586/release/">ftp://ftp.mandrivauser.de/rpm/GPL/2010.1/i586/release/</A>
+
+Oliver
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI>Next message: <A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#54">[ date ]</a>
+ <a href="thread.html#54">[ thread ]</a>
+ <a href="subject.html#54">[ subject ]</a>
+ <a href="author.html#54">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000055.html b/zarb-ml/mageia-webteam/2010-November/000055.html
new file mode 100644
index 000000000..3814527be
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000055.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] download Mediawiki
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3C4CEFF312.9010005%40gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000054.html">
+ <LINK REL="Next" HREF="000056.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] download Mediawiki</H1>
+ <B>Christophe MONTEIL</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20download%20Mediawiki&In-Reply-To=%3C4CEFF312.9010005%40gmail.com%3E"
+ TITLE="[Mageia-webteam] download Mediawiki">christophe.monteil at gmail.com
+ </A><BR>
+ <I>Fri Nov 26 18:49:06 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI>Next message: <A HREF="000056.html">[Mageia-webteam] Wednesday meeting, points to discuss
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#55">[ date ]</a>
+ <a href="thread.html#55">[ thread ]</a>
+ <a href="subject.html#55">[ subject ]</a>
+ <a href="author.html#55">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>thanks ;)
+
+Le 26/11/2010 11:03, Oliver Burger a &#233;crit :
+&gt;<i> &quot;Romain d'Alverny&quot;&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; schrieb am 2010-11-26
+</I>&gt;&gt;<i> On Thu, Nov 25, 2010 at 20:01, Christophe MONTEIL
+</I>&gt;&gt;<i> &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">christophe.monteil at gmail.com</A>&gt; wrote:
+</I>&gt;&gt;&gt;<i> I tried to download mediawiki on the official website. But the stable
+</I>&gt;&gt;&gt;<i> -and previous- archive seem unavailable. Have you got this archive ?
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> Seems they updated their download link:
+</I>&gt;&gt;<i> <A HREF="http://www.mediawiki.org/wiki/Download">http://www.mediawiki.org/wiki/Download</A> now points to
+</I>&gt;&gt;<i> <A HREF="http://noc.wikimedia.org/mediawiki-1.16.0.tar.gz">http://noc.wikimedia.org/mediawiki-1.16.0.tar.gz</A> (new server, download
+</I>&gt;&gt;<i> working)
+</I>&gt;<i> Yep, I found this, but I wanted to build a new rpm of mediawiki-1.16.0, the
+</I>&gt;<i> problem is: Thee needed i18n-patch file is not to be found on this new
+</I>&gt;<i> server...
+</I>&gt;<i>
+</I>&gt;<i> But I did rebuild the package of 1.15.1, you can find it her:
+</I>&gt;<i> <A HREF="ftp://ftp.mandrivauser.de/rpm/GPL/2010.1/i586/release/">ftp://ftp.mandrivauser.de/rpm/GPL/2010.1/i586/release/</A>
+</I>&gt;<i>
+</I>&gt;<i> Oliver
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A></li>
+ <LI>Next message: <A HREF="000056.html">[Mageia-webteam] Wednesday meeting, points to discuss
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#55">[ date ]</a>
+ <a href="thread.html#55">[ thread ]</a>
+ <a href="subject.html#55">[ subject ]</a>
+ <a href="author.html#55">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/000056.html b/zarb-ml/mageia-webteam/2010-November/000056.html
new file mode 100644
index 000000000..209444a40
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/000056.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Wednesday meeting, points to discuss
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Wednesday%20meeting%2C%20points%20to%20discuss&In-Reply-To=%3CAANLkTikuKP4-noYEJZut5Jq4EA_xPtdcUC1SCA1VPMR2%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000055.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Wednesday meeting, points to discuss</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Wednesday%20meeting%2C%20points%20to%20discuss&In-Reply-To=%3CAANLkTikuKP4-noYEJZut5Jq4EA_xPtdcUC1SCA1VPMR2%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Wednesday meeting, points to discuss">rdalverny at gmail.com
+ </A><BR>
+ <I>Tue Nov 30 11:39:01 CET 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#56">[ date ]</a>
+ <a href="thread.html#56">[ thread ]</a>
+ <a href="subject.html#56">[ subject ]</a>
+ <a href="author.html#56">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi guys,
+
+reminder, the team meeting is supposed to be tomorrow at 14:00 UTC.
+
+As a side note, I will be offline all day (not going to be regular, I
+am around usually). So here's a list of topics to discuss here on the
+list or during the meeting (maybe misc you can chair the meeting or we
+can postpone it to tomorrow or other date?).
+
+I have updated <A HREF="http://mageia.org/wiki/doku.php?id=web">http://mageia.org/wiki/doku.php?id=web</A> with the status
+of current tasks. So, here are the things to check status of (please,
+if you're working on an item, comment):
+ - actions from previous meetings:
+ * identity/catdap CSS update and a few features check (obgr, blingme);
+ * wiki setup (leu, obgr, TMKCodes, rda); afaik, leu started looking at it;
+ - new status/actions
+ * website (rda); I updated the home page layout (more &quot;news&quot; put in
+front) and am working on the infrastructure to ease deployement,
+delegation and l10n
+ * forums (maat); status?
+ * blogs (dams); status seems ok, but a few instances are not set up
+yet, probably for missing people in charge of it; could we have a
+&quot;blogs&quot; page with: status, contact, team, for each blog (and those in
+need of someone)? on <A HREF="http://mageia.org/wiki/doku.php?id=blog">http://mageia.org/wiki/doku.php?id=blog</A>
+ * bugzilla (dmorgan); I believe it's in progress; and it depends on
+the LDAP setup
+ * a larger list of status of systems is here:
+<A HREF="http://mageia.org/wiki/doku.php?id=systems_check_list">http://mageia.org/wiki/doku.php?id=systems_check_list</A> (please add
+those that you think are missing; and update status if you know about
+it)
+ * about a forge for projects, status/ideas? (not sure about this one)
+
+If we can discuss this through the list before Thursday evening, that
+may replace a meeting for this week I guess.
+
+Cheers,
+
+Romain
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#56">[ date ]</a>
+ <a href="thread.html#56">[ thread ]</a>
+ <a href="subject.html#56">[ subject ]</a>
+ <a href="author.html#56">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-November/author.html b/zarb-ml/mageia-webteam/2010-November/author.html
new file mode 100644
index 000000000..a7be32700
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/author.html
@@ -0,0 +1,307 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2010 Archive by author</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>November 2010 Archives by author</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Thu Nov 4 10:34:08 CET 2010</i><br>
+ <b>Ending:</b> <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Messages:</b> 52<p>
+ <ul>
+
+<LI><A HREF="000005.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="5">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000025.html">[Mageia-webteam] Meeting?
+</A><A NAME="25">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="40">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="43">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="45">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="47">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="54">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="18">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A><A NAME="28">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="32">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="44">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000009.html">[Mageia-webteam] Head Count
+</A><A NAME="9">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000011.html">[Mageia-webteam] Head Count
+</A><A NAME="11">&nbsp;</A>
+<I>Frederic Janssens
+</I>
+
+<LI><A HREF="000027.html">[Mageia-webteam] (no subject)
+</A><A NAME="27">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="52">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="55">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="6">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000030.html">[Mageia-webteam] Meeting?
+</A><A NAME="30">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000050.html">[Mageia-webteam] Meeting today
+</A><A NAME="50">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000007.html">[Mageia-webteam] Head Count
+</A><A NAME="7">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A><A NAME="13">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000014.html">[Mageia-webteam] New Logo
+</A><A NAME="14">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="16">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000022.html">[Mageia-webteam] Meeting?
+</A><A NAME="22">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000024.html">[Mageia-webteam] Meeting?
+</A><A NAME="24">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="29">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="33">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000038.html">[Mageia-webteam] Meeting?
+</A><A NAME="38">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="39">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="42">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="46">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000036.html">[Mageia-webteam] Meeting?
+</A><A NAME="36">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A><A NAME="41">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A><A NAME="51">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000008.html">[Mageia-webteam] Head Count
+</A><A NAME="8">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<LI><A HREF="000023.html">[Mageia-webteam] Meeting?
+</A><A NAME="23">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<LI><A HREF="000010.html">[Mageia-webteam] Head Count
+</A><A NAME="10">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000026.html">[Mageia-webteam] Meeting?
+</A><A NAME="26">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="34">&nbsp;</A>
+<I>andre999
+</I>
+
+<LI><A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A><A NAME="12">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000015.html">[Mageia-webteam] New Logo
+</A><A NAME="15">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="17">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="20">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000021.html">[Mageia-webteam] Meeting?
+</A><A NAME="21">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="31">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="35">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000048.html">[Mageia-webteam] Meeting today
+</A><A NAME="48">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="53">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000056.html">[Mageia-webteam] Wednesday meeting, points to discuss
+</A><A NAME="56">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000049.html">[Mageia-webteam] Meeting today
+</A><A NAME="49">&nbsp;</A>
+<I>christophe monteil
+</I>
+
+<LI><A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="19">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<LI><A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="37">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Archived on:</b> <i>Tue Nov 30 11:39:06 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-November/date.html b/zarb-ml/mageia-webteam/2010-November/date.html
new file mode 100644
index 000000000..5c93f2ef3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/date.html
@@ -0,0 +1,307 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2010 Archive by date</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>November 2010 Archives by date</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Thu Nov 4 10:34:08 CET 2010</i><br>
+ <b>Ending:</b> <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Messages:</b> 52<p>
+ <ul>
+
+<LI><A HREF="000005.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="5">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="6">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000007.html">[Mageia-webteam] Head Count
+</A><A NAME="7">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000009.html">[Mageia-webteam] Head Count
+</A><A NAME="9">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000008.html">[Mageia-webteam] Head Count
+</A><A NAME="8">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<LI><A HREF="000010.html">[Mageia-webteam] Head Count
+</A><A NAME="10">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000011.html">[Mageia-webteam] Head Count
+</A><A NAME="11">&nbsp;</A>
+<I>Frederic Janssens
+</I>
+
+<LI><A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A><A NAME="12">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A><A NAME="13">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000014.html">[Mageia-webteam] New Logo
+</A><A NAME="14">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000015.html">[Mageia-webteam] New Logo
+</A><A NAME="15">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="16">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="17">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="18">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="19">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<LI><A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="20">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000021.html">[Mageia-webteam] Meeting?
+</A><A NAME="21">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000022.html">[Mageia-webteam] Meeting?
+</A><A NAME="22">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000024.html">[Mageia-webteam] Meeting?
+</A><A NAME="24">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000023.html">[Mageia-webteam] Meeting?
+</A><A NAME="23">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<LI><A HREF="000025.html">[Mageia-webteam] Meeting?
+</A><A NAME="25">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000026.html">[Mageia-webteam] Meeting?
+</A><A NAME="26">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000027.html">[Mageia-webteam] (no subject)
+</A><A NAME="27">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A><A NAME="28">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="29">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000030.html">[Mageia-webteam] Meeting?
+</A><A NAME="30">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="31">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="32">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="33">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="34">&nbsp;</A>
+<I>andre999
+</I>
+
+<LI><A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="35">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000036.html">[Mageia-webteam] Meeting?
+</A><A NAME="36">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="37">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<LI><A HREF="000038.html">[Mageia-webteam] Meeting?
+</A><A NAME="38">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="39">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="40">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A><A NAME="41">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="42">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="43">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="44">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="45">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="46">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="47">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000048.html">[Mageia-webteam] Meeting today
+</A><A NAME="48">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000049.html">[Mageia-webteam] Meeting today
+</A><A NAME="49">&nbsp;</A>
+<I>christophe monteil
+</I>
+
+<LI><A HREF="000050.html">[Mageia-webteam] Meeting today
+</A><A NAME="50">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A><A NAME="51">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="52">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="53">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="54">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="55">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000056.html">[Mageia-webteam] Wednesday meeting, points to discuss
+</A><A NAME="56">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Archived on:</b> <i>Tue Nov 30 11:39:06 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-November/index.html b/zarb-ml/mageia-webteam/2010-November/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2010-November/subject.html b/zarb-ml/mageia-webteam/2010-November/subject.html
new file mode 100644
index 000000000..762ac1dc1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/subject.html
@@ -0,0 +1,307 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2010 Archive by subject</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>November 2010 Archives by subject</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Thu Nov 4 10:34:08 CET 2010</i><br>
+ <b>Ending:</b> <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Messages:</b> 52<p>
+ <ul>
+
+<LI><A HREF="000027.html">[Mageia-webteam] (no subject)
+</A><A NAME="27">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="42">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="43">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="44">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="45">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="46">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="47">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="29">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="31">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="32">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="33">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="34">&nbsp;</A>
+<I>andre999
+</I>
+
+<LI><A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="52">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="53">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="54">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="55">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<LI><A HREF="000007.html">[Mageia-webteam] Head Count
+</A><A NAME="7">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000009.html">[Mageia-webteam] Head Count
+</A><A NAME="9">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<LI><A HREF="000008.html">[Mageia-webteam] Head Count
+</A><A NAME="8">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<LI><A HREF="000010.html">[Mageia-webteam] Head Count
+</A><A NAME="10">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000011.html">[Mageia-webteam] Head Count
+</A><A NAME="11">&nbsp;</A>
+<I>Frederic Janssens
+</I>
+
+<LI><A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A><A NAME="12">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="18">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="19">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<LI><A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="20">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A><A NAME="28">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<LI><A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A><A NAME="13">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000048.html">[Mageia-webteam] Meeting today
+</A><A NAME="48">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000049.html">[Mageia-webteam] Meeting today
+</A><A NAME="49">&nbsp;</A>
+<I>christophe monteil
+</I>
+
+<LI><A HREF="000050.html">[Mageia-webteam] Meeting today
+</A><A NAME="50">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="35">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="37">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<LI><A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="39">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="40">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000021.html">[Mageia-webteam] Meeting?
+</A><A NAME="21">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000022.html">[Mageia-webteam] Meeting?
+</A><A NAME="22">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000024.html">[Mageia-webteam] Meeting?
+</A><A NAME="24">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000023.html">[Mageia-webteam] Meeting?
+</A><A NAME="23">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<LI><A HREF="000025.html">[Mageia-webteam] Meeting?
+</A><A NAME="25">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000026.html">[Mageia-webteam] Meeting?
+</A><A NAME="26">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<LI><A HREF="000030.html">[Mageia-webteam] Meeting?
+</A><A NAME="30">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000036.html">[Mageia-webteam] Meeting?
+</A><A NAME="36">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000038.html">[Mageia-webteam] Meeting?
+</A><A NAME="38">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="16">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="17">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000014.html">[Mageia-webteam] New Logo
+</A><A NAME="14">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000015.html">[Mageia-webteam] New Logo
+</A><A NAME="15">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<LI><A HREF="000005.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="5">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="6">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A><A NAME="41">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A><A NAME="51">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000056.html">[Mageia-webteam] Wednesday meeting, points to discuss
+</A><A NAME="56">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Archived on:</b> <i>Tue Nov 30 11:39:06 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-November/thread.html b/zarb-ml/mageia-webteam/2010-November/thread.html
new file mode 100644
index 000000000..118d43c64
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-November/thread.html
@@ -0,0 +1,407 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam November 2010 Archive by thread</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>November 2010 Archives by thread</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Thu Nov 4 10:34:08 CET 2010</i><br>
+ <b>Ending:</b> <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Messages:</b> 52<p>
+ <ul>
+
+<!--0 01288863248- -->
+<LI><A HREF="000005.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="5">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--1 01288863248-01288869629- -->
+<LI><A HREF="000006.html">[Mageia-webteam] Setting up the Web team
+</A><A NAME="6">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<!--1 01288863248-01288874257- -->
+<LI><A HREF="000007.html">[Mageia-webteam] Head Count
+</A><A NAME="7">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<UL>
+<!--2 01288863248-01288874257-01288875671- -->
+<LI><A HREF="000009.html">[Mageia-webteam] Head Count
+</A><A NAME="9">&nbsp;</A>
+<I>Dubeau, Patrick
+</I>
+
+<!--2 01288863248-01288874257-01288875881- -->
+<LI><A HREF="000008.html">[Mageia-webteam] Head Count
+</A><A NAME="8">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<UL>
+<!--3 01288863248-01288874257-01288875881-01288876556- -->
+<LI><A HREF="000010.html">[Mageia-webteam] Head Count
+</A><A NAME="10">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<!--3 01288863248-01288874257-01288875881-01288876556-01288888494- -->
+<LI><A HREF="000011.html">[Mageia-webteam] Head Count
+</A><A NAME="11">&nbsp;</A>
+<I>Frederic Janssens
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01288892849- -->
+<LI><A HREF="000012.html">[Mageia-webteam] Head count: about 20
+</A><A NAME="12">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01288892849-01288903894- -->
+<LI><A HREF="000013.html">[Mageia-webteam] Meeting Time
+</A><A NAME="13">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+</UL>
+<!--0 01288906894- -->
+<LI><A HREF="000014.html">[Mageia-webteam] New Logo
+</A><A NAME="14">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<UL>
+<!--1 01288906894-01288908533- -->
+<LI><A HREF="000015.html">[Mageia-webteam] New Logo
+</A><A NAME="15">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01288911422- -->
+<LI><A HREF="000016.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="16">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<UL>
+<!--1 01288911422-01288944671- -->
+<LI><A HREF="000017.html">[Mageia-webteam] Moving to New Server
+</A><A NAME="17">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01288955518- -->
+<LI><A HREF="000018.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="18">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<UL>
+<!--1 01288955518-01288955748- -->
+<LI><A HREF="000019.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="19">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<!--1 01288955518-01288976668- -->
+<LI><A HREF="000020.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 2
+</A><A NAME="20">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+</UL>
+<!--0 01289516115- -->
+<LI><A HREF="000021.html">[Mageia-webteam] Meeting?
+</A><A NAME="21">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01289516115-01289518012- -->
+<LI><A HREF="000022.html">[Mageia-webteam] Meeting?
+</A><A NAME="22">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<UL>
+<!--2 01289516115-01289518012-01289521077- -->
+<LI><A HREF="000023.html">[Mageia-webteam] Meeting?
+</A><A NAME="23">&nbsp;</A>
+<I>Gr&#233;goire Terras
+</I>
+
+<UL>
+<!--3 01289516115-01289518012-01289521077-01289546591- -->
+<LI><A HREF="000025.html">[Mageia-webteam] Meeting?
+</A><A NAME="25">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+</UL>
+<!--1 01289516115-01289519639- -->
+<LI><A HREF="000024.html">[Mageia-webteam] Meeting?
+</A><A NAME="24">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<!--1 01289516115-01289552114- -->
+<LI><A HREF="000026.html">[Mageia-webteam] Meeting?
+</A><A NAME="26">&nbsp;</A>
+<I>Samuel Verschelde
+</I>
+
+<UL>
+<!--2 01289516115-01289552114-01289563968- -->
+<LI><A HREF="000030.html">[Mageia-webteam] Meeting?
+</A><A NAME="30">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+</UL>
+<!--1 01289516115-01289805391- -->
+<LI><A HREF="000036.html">[Mageia-webteam] Meeting?
+</A><A NAME="36">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<UL>
+<!--2 01289516115-01289805391-01289827405- -->
+<LI><A HREF="000038.html">[Mageia-webteam] Meeting?
+</A><A NAME="38">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+</UL>
+</UL>
+<!--0 01289556966- -->
+<LI><A HREF="000027.html">[Mageia-webteam] (no subject)
+</A><A NAME="27">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<!--0 01289560825- -->
+<LI><A HREF="000028.html">[Mageia-webteam] Mageia-webteam Digest, Vol 2, Issue 5
+</A><A NAME="28">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--0 01289563074- -->
+<LI><A HREF="000029.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="29">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<UL>
+<!--1 01289563074-01289565866- -->
+<LI><A HREF="000031.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="31">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01289563074-01289565866-01289566453- -->
+<LI><A HREF="000032.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="32">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--2 01289563074-01289565866-01289566891- -->
+<LI><A HREF="000033.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="33">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+</UL>
+<!--1 01289563074-01289581911- -->
+<LI><A HREF="000034.html">[Mageia-webteam] Domain Squatters
+</A><A NAME="34">&nbsp;</A>
+<I>andre999
+</I>
+
+</UL>
+<!--0 01289753749- -->
+<LI><A HREF="000035.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="35">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01289753749-01289818191- -->
+<LI><A HREF="000037.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="37">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<UL>
+<!--2 01289753749-01289818191-01289827753- -->
+<LI><A HREF="000039.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="39">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<!--2 01289753749-01289818191-01289829350- -->
+<LI><A HREF="000040.html">[Mageia-webteam] Meeting, Wednesday, 14:00 UTC
+</A><A NAME="40">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+</UL>
+<!--0 01290007046- -->
+<LI><A HREF="000041.html">[Mageia-webteam] Web Team Meeting Wed Nov 17
+</A><A NAME="41">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<!--0 01290008415- -->
+<LI><A HREF="000042.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="42">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<UL>
+<!--1 01290008415-01290015753- -->
+<LI><A HREF="000043.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="43">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--2 01290008415-01290015753-01290015890- -->
+<LI><A HREF="000044.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="44">&nbsp;</A>
+<I>Kosmas Chatzimichalis
+</I>
+
+<!--2 01290008415-01290015753-01290015933- -->
+<LI><A HREF="000045.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="45">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--3 01290008415-01290015753-01290015933-01290032149- -->
+<LI><A HREF="000046.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="46">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<!--3 01290008415-01290015753-01290015933-01290032149-01290066358- -->
+<LI><A HREF="000047.html">[Mageia-webteam] Calendar on the website
+</A><A NAME="47">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01290597009- -->
+<LI><A HREF="000048.html">[Mageia-webteam] Meeting today
+</A><A NAME="48">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--1 01290597009-01290600423- -->
+<LI><A HREF="000049.html">[Mageia-webteam] Meeting today
+</A><A NAME="49">&nbsp;</A>
+<I>christophe monteil
+</I>
+
+<UL>
+<!--2 01290597009-01290600423-01290600550- -->
+<LI><A HREF="000050.html">[Mageia-webteam] Meeting today
+</A><A NAME="50">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+</UL>
+</UL>
+<!--0 01290608771- -->
+<LI><A HREF="000051.html">[Mageia-webteam] Web Team Meeting Wed Nov 24
+</A><A NAME="51">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<!--0 01290711701- -->
+<LI><A HREF="000052.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="52">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+<UL>
+<!--1 01290711701-01290759605- -->
+<LI><A HREF="000053.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="53">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+<UL>
+<!--2 01290711701-01290759605-01290765831- -->
+<LI><A HREF="000054.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="54">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<UL>
+<!--3 01290711701-01290759605-01290765831-01290793746- -->
+<LI><A HREF="000055.html">[Mageia-webteam] download Mediawiki
+</A><A NAME="55">&nbsp;</A>
+<I>Christophe MONTEIL
+</I>
+
+</UL>
+</UL>
+</UL>
+<!--0 01291113541- -->
+<LI><A HREF="000056.html">[Mageia-webteam] Wednesday meeting, points to discuss
+</A><A NAME="56">&nbsp;</A>
+<I>Romain d'Alverny
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Tue Nov 30 11:39:01 CET 2010</i><br>
+ <b>Archived on:</b> <i>Tue Nov 30 11:39:06 CET 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-October.txt.gz b/zarb-ml/mageia-webteam/2010-October.txt.gz
new file mode 100644
index 000000000..39ba1ce12
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2010-October/000000.html b/zarb-ml/mageia-webteam/2010-October/000000.html
new file mode 100644
index 000000000..b8f56afef
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/000000.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Hello World
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Hello%20World&In-Reply-To=%3CAANLkTik18Yh3u%2BFBTtXLsD%2BgxkKkBySTugwZmcQGKiHy%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="000001.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Hello World</H1>
+ <B>TMKCodes</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Hello%20World&In-Reply-To=%3CAANLkTik18Yh3u%2BFBTtXLsD%2BgxkKkBySTugwZmcQGKiHy%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Hello World">tmkcodes at gmail.com
+ </A><BR>
+ <I>Wed Oct 27 18:55:39 CEST 2010</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000001.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#0">[ date ]</a>
+ <a href="thread.html#0">[ thread ]</a>
+ <a href="subject.html#0">[ subject ]</a>
+ <a href="author.html#0">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I registered as a web developer on the mageia wiki.
+
+I'm pretty good with PHP and SQL, but i suck at web design. Just
+really don't have the abilities to make nice looking sites. :)
+
+So what kind of web stuff were going to do for mageia?
+
+Greetings Toni Korpela
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="000001.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#0">[ date ]</a>
+ <a href="thread.html#0">[ thread ]</a>
+ <a href="subject.html#0">[ subject ]</a>
+ <a href="author.html#0">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-October/000001.html b/zarb-ml/mageia-webteam/2010-October/000001.html
new file mode 100644
index 000000000..e9a18086e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/000001.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] I'm in.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20I%27m%20in.&In-Reply-To=%3C4CC96D3F.4040300%40WayneSallee.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000000.html">
+ <LINK REL="Next" HREF="000003.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] I'm in.</H1>
+ <B>Wayne Sallee</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20I%27m%20in.&In-Reply-To=%3C4CC96D3F.4040300%40WayneSallee.com%3E"
+ TITLE="[Mageia-webteam] I'm in.">Wayne at WayneSallee.com
+ </A><BR>
+ <I>Thu Oct 28 14:31:59 CEST 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000000.html">[Mageia-webteam] Hello World
+</A></li>
+ <LI>Next message: <A HREF="000003.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1">[ date ]</a>
+ <a href="thread.html#1">[ thread ]</a>
+ <a href="subject.html#1">[ subject ]</a>
+ <a href="author.html#1">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi. I'm in.
+
+This makes for a good test post too. :-)
+
+Wayne Sallee
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at WayneSallee.com</A>
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000000.html">[Mageia-webteam] Hello World
+</A></li>
+ <LI>Next message: <A HREF="000003.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1">[ date ]</a>
+ <a href="thread.html#1">[ thread ]</a>
+ <a href="subject.html#1">[ subject ]</a>
+ <a href="author.html#1">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-October/000002.html b/zarb-ml/mageia-webteam/2010-October/000002.html
new file mode 100644
index 000000000..f82300421
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/000002.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] hey
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20hey&In-Reply-To=%3CAANLkTikHbTv3%2BRh_0NCzz584D%3Dz9qLx33y%3DQW7WjcNGG%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000003.html">
+ <LINK REL="Next" HREF="000004.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] hey</H1>
+ <B>Egill &#222;orl&#225;ksson</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20hey&In-Reply-To=%3CAANLkTikHbTv3%2BRh_0NCzz584D%3Dz9qLx33y%3DQW7WjcNGG%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] hey">eth at lanmot.is
+ </A><BR>
+ <I>Thu Oct 28 14:48:44 CEST 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000003.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI>Next message: <A HREF="000004.html">[Mageia-webteam] I'm in
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2">[ date ]</a>
+ <a href="thread.html#2">[ thread ]</a>
+ <a href="subject.html#2">[ subject ]</a>
+ <a href="author.html#2">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hey, I'm in!
+
+--
+K&#230;r kve&#240;ja,
+Egill &#222;orl&#225;ksson
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">eth at lanmot.is</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20101028/4124e914/attachment.html&gt;
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000003.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI>Next message: <A HREF="000004.html">[Mageia-webteam] I'm in
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2">[ date ]</a>
+ <a href="thread.html#2">[ thread ]</a>
+ <a href="subject.html#2">[ subject ]</a>
+ <a href="author.html#2">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-October/000003.html b/zarb-ml/mageia-webteam/2010-October/000003.html
new file mode 100644
index 000000000..da3320019
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/000003.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] I'm in.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20I%27m%20in.&In-Reply-To=%3C201010281504.43732.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000001.html">
+ <LINK REL="Next" HREF="000002.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] I'm in.</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20I%27m%20in.&In-Reply-To=%3C201010281504.43732.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] I'm in.">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Thu Oct 28 15:04:43 CEST 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000001.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI>Next message: <A HREF="000002.html">[Mageia-webteam] hey
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3">[ date ]</a>
+ <a href="thread.html#3">[ thread ]</a>
+ <a href="subject.html#3">[ subject ]</a>
+ <a href="author.html#3">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Wayne Sallee &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Wayne at waynesallee.com</A>&gt; schrieb am 2010-10-28
+&gt;<i> Hi. I'm in.
+</I>Me, too!
+
+Oliver
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000001.html">[Mageia-webteam] I'm in.
+</A></li>
+ <LI>Next message: <A HREF="000002.html">[Mageia-webteam] hey
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3">[ date ]</a>
+ <a href="thread.html#3">[ thread ]</a>
+ <a href="subject.html#3">[ subject ]</a>
+ <a href="author.html#3">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-October/000004.html b/zarb-ml/mageia-webteam/2010-October/000004.html
new file mode 100644
index 000000000..d38c62830
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/000004.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] I'm in
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20I%27m%20in&In-Reply-To=%3CAANLkTinAMcppROWwhwmtSJTu69eBe1Kf0JUEghEUHkGi%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000002.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] I'm in</H1>
+ <B>Romulo Pires</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20I%27m%20in&In-Reply-To=%3CAANLkTinAMcppROWwhwmtSJTu69eBe1Kf0JUEghEUHkGi%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] I'm in">romulo.pires123 at gmail.com
+ </A><BR>
+ <I>Thu Oct 28 17:06:30 CEST 2010</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000002.html">[Mageia-webteam] hey
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#4">[ date ]</a>
+ <a href="thread.html#4">[ thread ]</a>
+ <a href="subject.html#4">[ subject ]</a>
+ <a href="author.html#4">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>I'm in too :D
+
+
+
+--
+Romulo Pires Pinto
+UFF/IC/BCC
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000002.html">[Mageia-webteam] hey
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#4">[ date ]</a>
+ <a href="thread.html#4">[ thread ]</a>
+ <a href="subject.html#4">[ subject ]</a>
+ <a href="author.html#4">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2010-October/author.html b/zarb-ml/mageia-webteam/2010-October/author.html
new file mode 100644
index 000000000..8ea6a3df3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/author.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2010 Archive by author</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>October 2010 Archives by author</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Oct 27 18:55:39 CEST 2010</i><br>
+ <b>Ending:</b> <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Messages:</b> 5<p>
+ <ul>
+
+<LI><A HREF="000003.html">[Mageia-webteam] I'm in.
+</A><A NAME="3">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000004.html">[Mageia-webteam] I'm in
+</A><A NAME="4">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000001.html">[Mageia-webteam] I'm in.
+</A><A NAME="1">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000000.html">[Mageia-webteam] Hello World
+</A><A NAME="0">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000002.html">[Mageia-webteam] hey
+</A><A NAME="2">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Archived on:</b> <i>Thu Oct 28 17:06:36 CEST 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-October/date.html b/zarb-ml/mageia-webteam/2010-October/date.html
new file mode 100644
index 000000000..9f0147519
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/date.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2010 Archive by date</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>October 2010 Archives by date</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Oct 27 18:55:39 CEST 2010</i><br>
+ <b>Ending:</b> <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Messages:</b> 5<p>
+ <ul>
+
+<LI><A HREF="000000.html">[Mageia-webteam] Hello World
+</A><A NAME="0">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000001.html">[Mageia-webteam] I'm in.
+</A><A NAME="1">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000002.html">[Mageia-webteam] hey
+</A><A NAME="2">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<LI><A HREF="000003.html">[Mageia-webteam] I'm in.
+</A><A NAME="3">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+<LI><A HREF="000004.html">[Mageia-webteam] I'm in
+</A><A NAME="4">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Archived on:</b> <i>Thu Oct 28 17:06:36 CEST 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-October/index.html b/zarb-ml/mageia-webteam/2010-October/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-webteam/2010-October/subject.html b/zarb-ml/mageia-webteam/2010-October/subject.html
new file mode 100644
index 000000000..7daf32afd
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/subject.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2010 Archive by subject</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>October 2010 Archives by subject</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Oct 27 18:55:39 CEST 2010</i><br>
+ <b>Ending:</b> <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Messages:</b> 5<p>
+ <ul>
+
+<LI><A HREF="000000.html">[Mageia-webteam] Hello World
+</A><A NAME="0">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<LI><A HREF="000002.html">[Mageia-webteam] hey
+</A><A NAME="2">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<LI><A HREF="000004.html">[Mageia-webteam] I'm in
+</A><A NAME="4">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+<LI><A HREF="000001.html">[Mageia-webteam] I'm in.
+</A><A NAME="1">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<LI><A HREF="000003.html">[Mageia-webteam] I'm in.
+</A><A NAME="3">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Archived on:</b> <i>Thu Oct 28 17:06:36 CEST 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2010-October/thread.html b/zarb-ml/mageia-webteam/2010-October/thread.html
new file mode 100644
index 000000000..201faaec9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2010-October/thread.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-webteam October 2010 Archive by thread</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>October 2010 Archives by thread</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Wed Oct 27 18:55:39 CEST 2010</i><br>
+ <b>Ending:</b> <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Messages:</b> 5<p>
+ <ul>
+
+<!--0 01288198539- -->
+<LI><A HREF="000000.html">[Mageia-webteam] Hello World
+</A><A NAME="0">&nbsp;</A>
+<I>TMKCodes
+</I>
+
+<!--0 01288269119- -->
+<LI><A HREF="000001.html">[Mageia-webteam] I'm in.
+</A><A NAME="1">&nbsp;</A>
+<I>Wayne Sallee
+</I>
+
+<UL>
+<!--1 01288269119-01288271083- -->
+<LI><A HREF="000003.html">[Mageia-webteam] I'm in.
+</A><A NAME="3">&nbsp;</A>
+<I>Oliver Burger
+</I>
+
+</UL>
+<!--0 01288270124- -->
+<LI><A HREF="000002.html">[Mageia-webteam] hey
+</A><A NAME="2">&nbsp;</A>
+<I>Egill &#222;orl&#225;ksson
+</I>
+
+<!--0 01288278390- -->
+<LI><A HREF="000004.html">[Mageia-webteam] I'm in
+</A><A NAME="4">&nbsp;</A>
+<I>Romulo Pires
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Thu Oct 28 17:06:30 CEST 2010</i><br>
+ <b>Archived on:</b> <i>Thu Oct 28 17:06:36 CEST 2010</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-webteam/2011-April.txt.gz b/zarb-ml/mageia-webteam/2011-April.txt.gz
new file mode 100644
index 000000000..b7a313566
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April.txt.gz
Binary files differ
diff --git a/zarb-ml/mageia-webteam/2011-April/000622.html b/zarb-ml/mageia-webteam/2011-April/000622.html
new file mode 100644
index 000000000..2cace1222
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000622.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110331220002.9A522427EE%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="000623.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110331220002.9A522427EE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 1 00:00:02 CEST 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#622">[ date ]</a>
+ <a href="thread.html#622">[ thread ]</a>
+ <a href="subject.html#622">[ subject ]</a>
+ <a href="author.html#622">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#622">[ date ]</a>
+ <a href="thread.html#622">[ thread ]</a>
+ <a href="subject.html#622">[ subject ]</a>
+ <a href="author.html#622">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000623.html b/zarb-ml/mageia-webteam/2011-April/000623.html
new file mode 100644
index 000000000..a1b169620
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000623.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 591] Test bug, please ignore
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20591%5D%20Test%20bug%2C%20please%20ignore&In-Reply-To=%3C20110401092916.3A8A34282B%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000622.html">
+ <LINK REL="Next" HREF="000624.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 591] Test bug, please ignore</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20591%5D%20Test%20bug%2C%20please%20ignore&In-Reply-To=%3C20110401092916.3A8A34282B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 591] Test bug, please ignore">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 1 11:29:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000622.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#623">[ date ]</a>
+ <a href="thread.html#623">[ thread ]</a>
+ <a href="subject.html#623">[ subject ]</a>
+ <a href="author.html#623">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=591">https://bugs.mageia.org/show_bug.cgi?id=591</A>
+
+Thierry Vignaud &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">thierry.vignaud at gmail.com</A>
+ Priority|Normal |Low
+ Severity|normal |enhancement
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000622.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#623">[ date ]</a>
+ <a href="thread.html#623">[ thread ]</a>
+ <a href="subject.html#623">[ subject ]</a>
+ <a href="author.html#623">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000624.html b/zarb-ml/mageia-webteam/2011-April/000624.html
new file mode 100644
index 000000000..7bcd6dcc2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000624.html
@@ -0,0 +1,139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Forums structure : support catregory
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20structure%20%3A%20support%20catregory&In-Reply-To=%3C4D96072C.6060706%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000623.html">
+ <LINK REL="Next" HREF="000625.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Forums structure : support catregory</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Forums%20structure%20%3A%20support%20catregory&In-Reply-To=%3C4D96072C.6060706%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Forums structure : support catregory">maat-ml at vilarem.net
+ </A><BR>
+ <I>Fri Apr 1 19:11:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI>Next message: <A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#624">[ date ]</a>
+ <a href="thread.html#624">[ thread ]</a>
+ <a href="subject.html#624">[ subject ]</a>
+ <a href="author.html#624">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 31/03/2011 20:49, Ahmad Samir a &#233;crit :
+&gt;<i> On 25 March 2011 06:16, Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; wrote:
+</I>&gt;&gt;<i> On 23 March 2011 01:24, Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt; wrote:
+</I>&gt;&gt;&gt;<i> Hi there,
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> ahmad(78) and i have had a talk on irc about this part of the forum.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> we agreed to disagree on the subject so this leaded us to search for more points of views / comments / suggestions about it.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> my first structure was just 2 forums :
+</I>&gt;&gt;&gt;<i> -- Basic support
+</I>&gt;&gt;&gt;<i> -- Advanced support
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> He pushed 3 forums :
+</I>&gt;&gt;&gt;<i> -- Software
+</I>&gt;&gt;&gt;<i> -- Printers and printing
+</I>&gt;&gt;&gt;<i> -- Networking
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> Then i tried to use sub-forums under &quot;Basic support&quot; :
+</I>&gt;&gt;&gt;<i> -- Networking
+</I>&gt;&gt;&gt;<i> -- Video
+</I>&gt;&gt;&gt;<i> -- Sound
+</I>&gt;&gt;&gt;<i> -- Printers and printing
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> What do you think ?
+</I>&gt;&gt;<i> Here's my proposal (based on my usage of the mandriva forums previously, the
+</I>&gt;&gt;<i> English speaking section).
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> I am not going to talk bout chat/lounge forums, only the support ones.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> IMHO, there should be:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - Software
+</I>&gt;&gt;<i> o includes questions on software packages included in the repos (e.g.
+</I>&gt;&gt;<i> firefox-doesn't-work, kmail-takes-ages-to-get-my-mail, gnome-panel crashes
+</I>&gt;&gt;<i> at login... etc).
+</I>&gt;&gt;<i> o Installation problems
+</I>&gt;&gt;<i> o that includes installer problems (&quot;I don't know how to partition my HD&quot;,
+</I>&gt;&gt;<i> &quot;I don't know where to install the thing called &quot;bootloader&quot;&quot;... etc)
+</I>&gt;&gt;<i> N.B. &quot;Installation&quot; could be a separate forum or a sub-forum of Software.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - General Hardware
+</I>&gt;&gt;<i> o Sound cards problems
+</I>&gt;&gt;<i> o Graphics cards and display problems
+</I>&gt;&gt;<i> o Hardware problems not covered by Networking and Printers forums
+</I>&gt;&gt;<i> I'd rather if these ^ forums weren't sub-forums, the posts can be mixed
+</I>&gt;&gt;<i> (judging by what I saw in the mdv forums, sound and graphics cards forums
+</I>&gt;&gt;<i> had low-medium traffic)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - Networking
+</I>&gt;&gt;<i> o this is a forum where networking experts from the community can reside,
+</I>&gt;&gt;<i> anything to do with networking problems goes here, NIC chipsets problems,
+</I>&gt;&gt;<i> wifi problems (software and hardware), routers/switches. Given how much
+</I>&gt;&gt;<i> networking problems Linux has, this warrants a separate forum. There's such
+</I>&gt;&gt;<i> a forum in the mdv forums, and it was/is a great success since Germ created
+</I>&gt;&gt;<i> it.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - Printers &amp; Printing
+</I>&gt;&gt;<i> o this is the forum where printing problems can posted; again given how much
+</I>&gt;&gt;<i> printing issues exist, this warrants a separate forum
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - Cauldron development:
+</I>&gt;&gt;<i> o this forum is dedicated to problems Cauldron users hit (ideally valid bugs
+</I>&gt;&gt;<i> should be redirected to bugzilla by the more experienced users).
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Personally, I am not in favour of the &quot;Basic&quot; and &quot;Advanced&quot; support layout...
+</I>&gt;&gt;<i> in the end it's all support, there can be a topic that has both basic
+</I>&gt;&gt;<i> and advanced debugging side by side.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> --
+</I>&gt;&gt;<i> Ahmad Samir
+</I>&gt;&gt;<i>
+</I>&gt;<i> Ping.
+</I>&gt;<i>
+</I>&gt;<i> (IMHO, structure changes, if any, should be done early on before the
+</I>&gt;<i> forums are heavily used....).
+</I>
+We can reorganize later but you-re right : that would give moderators a lot of tedious work
+
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI>Next message: <A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#624">[ date ]</a>
+ <a href="thread.html#624">[ thread ]</a>
+ <a href="subject.html#624">[ subject ]</a>
+ <a href="author.html#624">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000625.html b/zarb-ml/mageia-webteam/2011-April/000625.html
new file mode 100644
index 000000000..4a2a45966
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000625.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D960825.1030903%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000624.html">
+ <LINK REL="Next" HREF="000627.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D960825.1030903%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">maat-ml at vilarem.net
+ </A><BR>
+ <I>Fri Apr 1 19:15:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#625">[ date ]</a>
+ <a href="thread.html#625">[ thread ]</a>
+ <a href="subject.html#625">[ subject ]</a>
+ <a href="author.html#625">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 31/03/2011 19:29, Maarten Vanraes a &#233;crit :
+&gt;<i> Op donderdag 31 maart 2011 13:05:31 schreef Michael Scherer:
+</I>&gt;<i> [...]
+</I>&gt;&gt;<i> I would propose to have a organisation that's as simple as possible.
+</I>&gt;<i> [...]
+</I>&gt;&gt;<i> Ie, that when someone is promoted to become i18n commiters ( see i18n
+</I>&gt;&gt;<i> team organisation ), he then also receive the right on forum in the same
+</I>&gt;&gt;<i> way that this person receive right to commit to svn and to transifex.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> This way, we would not have the mess of tracking everything in several
+</I>&gt;&gt;<i> permissions databases, which in turn mean we will have a clearer
+</I>&gt;&gt;<i> documentation and view of the various capabilities of our users.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> And this also would help if we decide to vote, as epoll have ldap
+</I>&gt;&gt;<i> integration ( that is quite painful to use at the moment as we need to
+</I>&gt;&gt;<i> give all information again each time ). And this also make sure that
+</I>&gt;&gt;<i> there is no confusion about who decide for what. Ie, the i18n team is
+</I>&gt;&gt;<i> consistently managed.
+</I>&gt;<i> +1
+</I>This would need a patch &quot;as complex as possible&quot; as the forums do not get their group data from ldap (only username and password)
+
+this would be a very very agressive patch hitting low level code of the board :-/
+
+And perhaps we don't need every member of a team to be able to have extended privileges on the forum
+
+
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
+</A></li>
+ <LI>Next message: <A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#625">[ date ]</a>
+ <a href="thread.html#625">[ thread ]</a>
+ <a href="subject.html#625">[ subject ]</a>
+ <a href="author.html#625">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000626.html b/zarb-ml/mageia-webteam/2011-April/000626.html
new file mode 100644
index 000000000..822222f4f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000626.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BForum%5D%20Fwd%3A%20A%20request%20to%20join%20your%20group%20has%0A%20been%20made&In-Reply-To=%3C4D960CD5.4050206%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000659.html">
+ <LINK REL="Next" HREF="000631.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Forum] Fwd: A request to join your group has been made</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BForum%5D%20Fwd%3A%20A%20request%20to%20join%20your%20group%20has%0A%20been%20made&In-Reply-To=%3C4D960CD5.4050206%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] [Forum] Fwd: A request to join your group has been made">maat-ml at vilarem.net
+ </A><BR>
+ <I>Fri Apr 1 19:35:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#626">[ date ]</a>
+ <a href="thread.html#626">[ thread ]</a>
+ <a href="subject.html#626">[ subject ]</a>
+ <a href="author.html#626">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 30/03/2011 22:37, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/3/30 Pascal &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+</I>&gt;&gt;<i> Le 30 mars 2011 &#224; 19:58, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; a &#233;crit :
+</I>&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> 1. What are the criteriae for the &quot;translator group&quot;?
+</I>&gt;&gt;<i> To be defined (by you as a leader of i18n team or by a common position
+</I>&gt;&gt;<i> defined after an open debate in the heresaid team)
+</I>&gt;<i> ??? This has nothing to do with the i18n team, it's a forum group, to
+</I>&gt;<i> have some function in the forum.
+</I>&gt;<i>
+</I>
+This is supposed to be a tag that allow to search people of a given team for help or chat (if they want to be searched of course)
+
+Teams in phpbb can be used as &quot;semantic&quot; tags... being in a team does not mean that you will have very extended privileges
+
+
+&gt;&gt;&gt;<i> As I pointed out before, &quot;Translators&quot; are listed as moderators in the
+</I>&gt;&gt;&gt;<i> forum,
+</I>&gt;&gt;<i> They are not (or they should not)
+</I>&gt;<i> They were when I joined. If this is not the case any more, then what
+</I>&gt;<i> is the purpose for the translator group in the forum?
+</I>&gt;<i>
+</I>
+Every member of the translator (i18n team) willing to show that he's in is supposed to be in that group. That's as simple as that.
+
+(But this is not perhaps needed to add extended privileges for this group. I don't know. At first i thought it was a cool idea to allow &quot;active&quot; people, this mean people comitting their work for example, to be able to answer people on technical questions with the ability to edit topics - for example to add [resolved] tags - made by other people)
+
+&gt;<i> As I said before, I'm quite confused, may be we both have completely
+</I>&gt;<i> different understandings of the &quot;groups&quot; in the forum.
+</I>&gt;<i>
+</I>
+A group is just that : a group
+
+Then with groups we can do things... allowing to share private forums, extend rights on parts of the board and so on.
+
+And what we can do is just limited by our imagination
+
+&gt;<i> Could you elaborate about what you understand by
+</I>&gt;<i>
+</I>&gt;<i> - group (what's the purpose of a group in the forum)
+</I>&gt;<i> - moderators (what's their task if not &quot;moderating&quot;)
+</I>&gt;<i>
+</I>
+Moderators DO moderate :)
+
+&gt;<i> Did you set &quot;moderators&quot; per forum or as &quot;global moderators&quot;?
+</I>&gt;<i>
+</I>You got confused because giving some extended privileges to groups makes phpbb mark them as &quot;forum moderators&quot;. local
+
+I changed the template to prevent it showing those groups as forum moderators
+
+There is only one kind of moderators : the global moderators who ARE the moderators of the forum and whose job is to moderate.
+
+Some users mays have locally extended privileges (to be defined precisely) depending on their role in the community to allow them to give a better forum experience to &quot;standard&quot; users.
+
+That's all, that very simple, and easy to understand : only one kind of people moderate the forum : the moderators.
+
+:<i>)
+</I>
+
+
+
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#626">[ date ]</a>
+ <a href="thread.html#626">[ thread ]</a>
+ <a href="subject.html#626">[ subject ]</a>
+ <a href="author.html#626">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000627.html b/zarb-ml/mageia-webteam/2011-April/000627.html
new file mode 100644
index 000000000..d27a2601b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000627.html
@@ -0,0 +1,120 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CAANLkTikMno8HOdKgzk%3DKNqkSEZfCsha7uPTUJJq4vZtO%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000625.html">
+ <LINK REL="Next" HREF="000628.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CAANLkTikMno8HOdKgzk%3DKNqkSEZfCsha7uPTUJJq4vZtO%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Fri Apr 1 20:08:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#627">[ date ]</a>
+ <a href="thread.html#627">[ thread ]</a>
+ <a href="subject.html#627">[ subject ]</a>
+ <a href="author.html#627">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/1 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 31/03/2011 19:29, Maarten Vanraes a &#233;crit :
+</I>&gt;&gt;<i> Op donderdag 31 maart 2011 13:05:31 schreef Michael Scherer:
+</I>&gt;&gt;<i> [...]
+</I>&gt;&gt;&gt;<i> I would propose to have a organisation that's as simple as possible.
+</I>&gt;&gt;<i> [...]
+</I>&gt;&gt;&gt;<i> Ie, that when someone is promoted to become i18n commiters ( see i18n
+</I>&gt;&gt;&gt;<i> team organisation ), he then also receive the right on forum in the same
+</I>&gt;&gt;&gt;<i> way that this person receive right to commit to svn and to transifex.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> This way, we would not have the mess of tracking everything in several
+</I>&gt;&gt;&gt;<i> permissions databases, which in turn mean we will have a clearer
+</I>&gt;&gt;&gt;<i> documentation and view of the various capabilities of our users.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> And this also would help if we decide to vote, as epoll have ldap
+</I>&gt;&gt;&gt;<i> integration ( that is quite painful to use at the moment as we need to
+</I>&gt;&gt;&gt;<i> give all information again each time ). And this also make sure that
+</I>&gt;&gt;&gt;<i> there is no confusion about who decide for what. Ie, the i18n team is
+</I>&gt;&gt;&gt;<i> consistently managed.
+</I>&gt;&gt;<i> +1
+</I>&gt;<i> This would need a patch &quot;as complex as possible&quot; as the forums do not get their group data from ldap (only username and password)
+</I>&gt;<i>
+</I>&gt;<i> this would be a very very agressive patch hitting low level code of the board :-/
+</I>&gt;<i>
+</I>&gt;<i> And perhaps we don't need every member of a team to be able to have extended privileges on the forum
+</I>
+Hmm, you are mixing Mageia teams with forum groups.
+
+1. As you also state, the relation between LDAP and the forum software
+is only for login, nothing more. Groups and privileges are set within
+the forum software, it's designed to do just that.
+
+2. I'd keep this as simple as possible. First for the sake of
+maintaining, second for the people who are in the groups, and third to
+make the &quot;hierarchy&quot; transparent to the users. The more different
+groups with different privileges, the more complicated it is for all.
+
+3. Privileges in the forum have to be tied to the task of the
+group/user, nothing else.
+
+For simplicity I'd go for
+
+ - Admin group (creating/changing forum structures, creating groups,
+maintenance of the forum, making announcements about the forum, etc.)
+
+ - Global moderators = all moderators, where moderating means:
+ - - moving/merging/closing threads, editing posts (if necessary
+because of forum or legal rules), counseling users (positive and
+negative), announcing important things, etc.
+
+ - Special groups who could be additional moderators of one section,
+like packagers and translators who are not in Global Moderators but
+could be moderators and contacts for the &quot;Packaging and Translating&quot;
+section. They have privileges only in this section.
+
+That's all. Simple, transparent, easy to understand and to maintain
+and to scale if needed.
+
+We've been working with this setup for years (even before we switched
+to phpbb3). Moderators were happy, users knew who to turn to. Admin
+was happy :)
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#627">[ date ]</a>
+ <a href="thread.html#627">[ thread ]</a>
+ <a href="subject.html#627">[ subject ]</a>
+ <a href="author.html#627">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000628.html b/zarb-ml/mageia-webteam/2011-April/000628.html
new file mode 100644
index 000000000..71c7cf4e9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000628.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CAANLkTimqTO8Rqiycy8PYBQgizwdFJofWEtb7yCrgzqDX%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000627.html">
+ <LINK REL="Next" HREF="000629.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Rapha&#235;l Jadot</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CAANLkTimqTO8Rqiycy8PYBQgizwdFJofWEtb7yCrgzqDX%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">ashledombos at hodo.fr
+ </A><BR>
+ <I>Fri Apr 1 20:10:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#628">[ date ]</a>
+ <a href="thread.html#628">[ thread ]</a>
+ <a href="subject.html#628">[ subject ]</a>
+ <a href="author.html#628">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/1 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+&gt;<i> Admin
+</I>&gt;<i> was happy :)
+</I>
+Wonder who he was :)
+
+--
+RJ
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#628">[ date ]</a>
+ <a href="thread.html#628">[ thread ]</a>
+ <a href="subject.html#628">[ subject ]</a>
+ <a href="author.html#628">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000629.html b/zarb-ml/mageia-webteam/2011-April/000629.html
new file mode 100644
index 000000000..14d8f10e2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000629.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CAANLkTik8%2BEJYtRqFm2%3DYArjPhPZZxKnPkywfHc7LgLXP%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000628.html">
+ <LINK REL="Next" HREF="000630.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CAANLkTik8%2BEJYtRqFm2%3DYArjPhPZZxKnPkywfHc7LgLXP%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Fri Apr 1 20:15:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#629">[ date ]</a>
+ <a href="thread.html#629">[ thread ]</a>
+ <a href="subject.html#629">[ subject ]</a>
+ <a href="author.html#629">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/1 Rapha&#235;l Jadot &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ashledombos at hodo.fr</A>&gt;:
+&gt;<i> 2011/4/1 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+</I>&gt;&gt;<i> Admin
+</I>&gt;&gt;<i> was happy :)
+</I>&gt;<i>
+</I>&gt;<i> Wonder who he was :)
+</I>
+All 4 of them, and for a long time, no matter what the changes in
+forums and users were :)
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#629">[ date ]</a>
+ <a href="thread.html#629">[ thread ]</a>
+ <a href="subject.html#629">[ subject ]</a>
+ <a href="author.html#629">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000630.html b/zarb-ml/mageia-webteam/2011-April/000630.html
new file mode 100644
index 000000000..a9928732d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000630.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C1301687291.7286.3.camel%40planas-pinguy%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000629.html">
+ <LINK REL="Next" HREF="000652.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>planas</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C1301687291.7286.3.camel%40planas-pinguy%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">jslozier at gmail.com
+ </A><BR>
+ <I>Fri Apr 1 21:48:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#630">[ date ]</a>
+ <a href="thread.html#630">[ thread ]</a>
+ <a href="subject.html#630">[ subject ]</a>
+ <a href="author.html#630">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, 2011-04-01 at 20:15 +0200, Wolfgang Bornath wrote:
+
+&gt;<i> 2011/4/1 Rapha&#235;l Jadot &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ashledombos at hodo.fr</A>&gt;:
+</I>&gt;<i> &gt; 2011/4/1 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+</I>&gt;<i> &gt;&gt; Admin
+</I>&gt;<i> &gt;&gt; was happy :)
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; Wonder who he was :)
+</I>&gt;<i>
+</I>&gt;<i> All 4 of them, and for a long time, no matter what the changes in
+</I>&gt;<i> forums and users were :)
+</I>&gt;<i>
+</I>
+I agree with you about keeping the groups simple, it will be less
+confusing for a user. Also, contacting a person (how to be decided)
+about an issue will be more transparent. You can tell a user who to
+contact based on the type of question. Whether the contact is direct
+contact to a specific person or to the a general contact for each group
+or a combination of both will need to be determined.
+--
+Jay Lozier
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Jslozier at gmail.com</A>
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110401/9206cbe4/attachment-0001.html&gt;
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#630">[ date ]</a>
+ <a href="thread.html#630">[ thread ]</a>
+ <a href="subject.html#630">[ subject ]</a>
+ <a href="author.html#630">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000631.html b/zarb-ml/mageia-webteam/2011-April/000631.html
new file mode 100644
index 000000000..93494e11f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000631.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110401220002.63EDF42844%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000626.html">
+ <LINK REL="Next" HREF="000632.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110401220002.63EDF42844%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 2 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#631">[ date ]</a>
+ <a href="thread.html#631">[ thread ]</a>
+ <a href="subject.html#631">[ subject ]</a>
+ <a href="author.html#631">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI>Next message: <A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#631">[ date ]</a>
+ <a href="thread.html#631">[ thread ]</a>
+ <a href="subject.html#631">[ subject ]</a>
+ <a href="author.html#631">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000632.html b/zarb-ml/mageia-webteam/2011-April/000632.html
new file mode 100644
index 000000000..959b3a7f4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000632.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3C20110402111231.1B4044284B%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000631.html">
+ <LINK REL="Next" HREF="000633.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3C20110402111231.1B4044284B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 2 13:12:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#632">[ date ]</a>
+ <a href="thread.html#632">[ thread ]</a>
+ <a href="subject.html#632">[ subject ]</a>
+ <a href="author.html#632">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=40">https://bugs.mageia.org/show_bug.cgi?id=40</A>
+
+--- Comment #4 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-04-02 13:12:30 UTC ---
+any news about the switch?
+
+in the 4.0 release there are interesting new features that can help mageia to
+improve the bugfixing phase:
+
+<A HREF="http://www.bugzilla.org/releases/4.0/release-notes.html#v40_feat">http://www.bugzilla.org/releases/4.0/release-notes.html#v40_feat</A>
+
+cheers,
+Marcello
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#632">[ date ]</a>
+ <a href="thread.html#632">[ thread ]</a>
+ <a href="subject.html#632">[ subject ]</a>
+ <a href="author.html#632">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000633.html b/zarb-ml/mageia-webteam/2011-April/000633.html
new file mode 100644
index 000000000..7e50398e0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000633.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3C20110402151717.9999842851%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000632.html">
+ <LINK REL="Next" HREF="000634.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3C20110402151717.9999842851%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 2 17:17:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#633">[ date ]</a>
+ <a href="thread.html#633">[ thread ]</a>
+ <a href="subject.html#633">[ subject ]</a>
+ <a href="author.html#633">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=40">https://bugs.mageia.org/show_bug.cgi?id=40</A>
+
+--- Comment #5 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-04-02 17:17:17 UTC ---
+it will be done, i started to work on the templates but this ask time, and we
+have other task pending too so we try to achieve which can't be done all at a
+time.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#633">[ date ]</a>
+ <a href="thread.html#633">[ thread ]</a>
+ <a href="subject.html#633">[ subject ]</a>
+ <a href="author.html#633">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000634.html b/zarb-ml/mageia-webteam/2011-April/000634.html
new file mode 100644
index 000000000..7bfc3904c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000634.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110402220002.8ACBA402F6%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000633.html">
+ <LINK REL="Next" HREF="000635.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110402220002.8ACBA402F6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 3 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#634">[ date ]</a>
+ <a href="thread.html#634">[ thread ]</a>
+ <a href="subject.html#634">[ subject ]</a>
+ <a href="author.html#634">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#634">[ date ]</a>
+ <a href="thread.html#634">[ thread ]</a>
+ <a href="subject.html#634">[ subject ]</a>
+ <a href="author.html#634">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000635.html b/zarb-ml/mageia-webteam/2011-April/000635.html
new file mode 100644
index 000000000..b038fe554
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000635.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2018%5D%20Do%20not%20allow%20to%20change%20status%20without%20a%0A%09comment&In-Reply-To=%3C20110403105055.CA96942721%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000634.html">
+ <LINK REL="Next" HREF="000636.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2018%5D%20Do%20not%20allow%20to%20change%20status%20without%20a%0A%09comment&In-Reply-To=%3C20110403105055.CA96942721%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 18] Do not allow to change status without a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 3 12:50:55 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#635">[ date ]</a>
+ <a href="thread.html#635">[ thread ]</a>
+ <a href="subject.html#635">[ subject ]</a>
+ <a href="author.html#635">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=18">https://bugs.mageia.org/show_bug.cgi?id=18</A>
+
+Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+
+--- Comment #6 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-03 12:50:55 UTC ---
+Admin &gt; Bug Status Workflow &gt; View Comments Required on Status Transitions,
+that's it.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#635">[ date ]</a>
+ <a href="thread.html#635">[ thread ]</a>
+ <a href="subject.html#635">[ subject ]</a>
+ <a href="author.html#635">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000636.html b/zarb-ml/mageia-webteam/2011-April/000636.html
new file mode 100644
index 000000000..a60e5e0b8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000636.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110403220002.4253242861%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000635.html">
+ <LINK REL="Next" HREF="000637.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110403220002.4253242861%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 4 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#636">[ date ]</a>
+ <a href="thread.html#636">[ thread ]</a>
+ <a href="subject.html#636">[ subject ]</a>
+ <a href="author.html#636">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#636">[ date ]</a>
+ <a href="thread.html#636">[ thread ]</a>
+ <a href="subject.html#636">[ subject ]</a>
+ <a href="author.html#636">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000637.html b/zarb-ml/mageia-webteam/2011-April/000637.html
new file mode 100644
index 000000000..1a62bb1f8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000637.html
@@ -0,0 +1,85 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2018%5D%20Do%20not%20allow%20to%20change%20status%20without%20a%0A%09comment&In-Reply-To=%3C20110404090910.EDB6342859%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000636.html">
+ <LINK REL="Next" HREF="000638.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 18] Do not allow to change status without a comment</H1>
+ <B>D Morgan</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2018%5D%20Do%20not%20allow%20to%20change%20status%20without%20a%0A%09comment&In-Reply-To=%3C20110404090910.EDB6342859%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 18] Do not allow to change status without a comment">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 4 11:09:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#637">[ date ]</a>
+ <a href="thread.html#637">[ thread ]</a>
+ <a href="subject.html#637">[ subject ]</a>
+ <a href="author.html#637">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=18">https://bugs.mageia.org/show_bug.cgi?id=18</A>
+
+D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ Status|REOPENED |RESOLVED
+
+--- Comment #7 from D Morgan &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">dmorganec at gmail.com</A>&gt; 2011-04-04 11:09:10 CEST ---
+sorry i missed time for this bug.
+
+
+Now this is OK, thanks frederic for your help.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#637">[ date ]</a>
+ <a href="thread.html#637">[ thread ]</a>
+ <a href="subject.html#637">[ subject ]</a>
+ <a href="author.html#637">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000638.html b/zarb-ml/mageia-webteam/2011-April/000638.html
new file mode 100644
index 000000000..008bf302e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000638.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Fwd%3A%20%5BMageia-i18n%5D%20Update%20Romanian%20homepage&In-Reply-To=%3CBANLkTinzsuK7zB8xKDEKYQ%3D07pTf98EHng%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000637.html">
+ <LINK REL="Next" HREF="000639.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Fwd%3A%20%5BMageia-i18n%5D%20Update%20Romanian%20homepage&In-Reply-To=%3CBANLkTinzsuK7zB8xKDEKYQ%3D07pTf98EHng%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage">molch.b at googlemail.com
+ </A><BR>
+ <I>Mon Apr 4 15:50:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#638">[ date ]</a>
+ <a href="thread.html#638">[ thread ]</a>
+ <a href="subject.html#638">[ subject ]</a>
+ <a href="author.html#638">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>---------- Forwarded message ----------
+From: Catalin Florin RUSSEN &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">cfrussen at yahoo.co.uk</A>&gt;
+Date: 2011/4/4
+Subject: [Mageia-i18n] Update Romanian homepage
+To: Mageia-i18n &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-i18n at mageia.org</A>&gt;
+
+
+Dear all,
+
+It's possible to replace the &quot;O nou&#259; distribu&#539;ie comunitar&#259; de Linux&quot; with &quot;O
+nou&#259; distribu&#539;ie Linux&quot; on the site's homepage?
+
+I see that with the new design (and a very nice one) the old text it's a bit too
+long.
+
+Many thanks in advance
+
+&#160;Best regards,
+Florin Catalin RUSSEN
+Romanian Translation Team
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a comment
+</A></li>
+ <LI>Next message: <A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#638">[ date ]</a>
+ <a href="thread.html#638">[ thread ]</a>
+ <a href="subject.html#638">[ subject ]</a>
+ <a href="author.html#638">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000639.html b/zarb-ml/mageia-webteam/2011-April/000639.html
new file mode 100644
index 000000000..8e7d38ccf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000639.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110404220003.0952C4206D%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000638.html">
+ <LINK REL="Next" HREF="000640.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110404220003.0952C4206D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 5 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A></li>
+ <LI>Next message: <A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#639">[ date ]</a>
+ <a href="thread.html#639">[ thread ]</a>
+ <a href="subject.html#639">[ subject ]</a>
+ <a href="author.html#639">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
+</A></li>
+ <LI>Next message: <A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#639">[ date ]</a>
+ <a href="thread.html#639">[ thread ]</a>
+ <a href="subject.html#639">[ subject ]</a>
+ <a href="author.html#639">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000640.html b/zarb-ml/mageia-webteam/2011-April/000640.html
new file mode 100644
index 000000000..48dd98a7a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000640.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 591] Test bug, please ignore
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20591%5D%20Test%20bug%2C%20please%20ignore&In-Reply-To=%3C20110405032352.491AF4272D%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000639.html">
+ <LINK REL="Next" HREF="000641.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 591] Test bug, please ignore</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20591%5D%20Test%20bug%2C%20please%20ignore&In-Reply-To=%3C20110405032352.491AF4272D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 591] Test bug, please ignore">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 5 05:23:52 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#640">[ date ]</a>
+ <a href="thread.html#640">[ thread ]</a>
+ <a href="subject.html#640">[ subject ]</a>
+ <a href="author.html#640">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=591">https://bugs.mageia.org/show_bug.cgi?id=591</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Resolution| |FIXED
+ Status|ASSIGNED |RESOLVED
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-05 05:23:52 UTC ---
+Fixed by dmorgan on the same day actually...
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#640">[ date ]</a>
+ <a href="thread.html#640">[ thread ]</a>
+ <a href="subject.html#640">[ subject ]</a>
+ <a href="author.html#640">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000641.html b/zarb-ml/mageia-webteam/2011-April/000641.html
new file mode 100644
index 000000000..b49a36c31
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000641.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3C20110405190437.68C554283B%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000640.html">
+ <LINK REL="Next" HREF="000642.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2040%5D%20Upgrade%20to%20Bugzilla%204.0&In-Reply-To=%3C20110405190437.68C554283B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 5 21:04:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI>Next message: <A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#641">[ date ]</a>
+ <a href="thread.html#641">[ thread ]</a>
+ <a href="subject.html#641">[ subject ]</a>
+ <a href="author.html#641">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=40">https://bugs.mageia.org/show_bug.cgi?id=40</A>
+
+--- Comment #6 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-05 21:04:37 CEST ---
+(In reply to comment #5)
+&gt;<i> it will be done, i started to work on the templates but this ask time
+</I>
+I forgot if I asked you already (maybe on IRC), but do you really have so many
+customizations in your templates and backend code?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
+</A></li>
+ <LI>Next message: <A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#641">[ date ]</a>
+ <a href="thread.html#641">[ thread ]</a>
+ <a href="subject.html#641">[ subject ]</a>
+ <a href="author.html#641">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000642.html b/zarb-ml/mageia-webteam/2011-April/000642.html
new file mode 100644
index 000000000..1135d99a6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000642.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110405220002.4E9404286D%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000641.html">
+ <LINK REL="Next" HREF="000643.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110405220002.4E9404286D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#642">[ date ]</a>
+ <a href="thread.html#642">[ thread ]</a>
+ <a href="subject.html#642">[ subject ]</a>
+ <a href="author.html#642">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
+</A></li>
+ <LI>Next message: <A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#642">[ date ]</a>
+ <a href="thread.html#642">[ thread ]</a>
+ <a href="subject.html#642">[ subject ]</a>
+ <a href="author.html#642">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000643.html b/zarb-ml/mageia-webteam/2011-April/000643.html
new file mode 100644
index 000000000..538ff09a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000643.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 14 meeting
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2014%20meeting&In-Reply-To=%3CBANLkTi%3D4UhvWznogLqjvh0dg%2BH%3Dz1LHbQA%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000642.html">
+ <LINK REL="Next" HREF="000644.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 14 meeting</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2014%20meeting&In-Reply-To=%3CBANLkTi%3D4UhvWznogLqjvh0dg%2BH%3Dz1LHbQA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 14 meeting">rdalverny at gmail.com
+ </A><BR>
+ <I>Wed Apr 6 12:18:47 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#643">[ date ]</a>
+ <a href="thread.html#643">[ thread ]</a>
+ <a href="subject.html#643">[ subject ]</a>
+ <a href="author.html#643">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi there,
+
+as usual, 13:00 UTC (15:00 Paris time) on #mageia-web.
+
+Topics:
+ - maintdb roadmap
+ - new wiki roadmap
+ - bugs review
+ - open topics/questions
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#643">[ date ]</a>
+ <a href="thread.html#643">[ thread ]</a>
+ <a href="subject.html#643">[ subject ]</a>
+ <a href="author.html#643">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000644.html b/zarb-ml/mageia-webteam/2011-April/000644.html
new file mode 100644
index 000000000..fafedbb11
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000644.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 655] [New] Open German forum
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20655%5D%20%5BNew%5D%20Open%20German%20forum&In-Reply-To=%3Cbug-655-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000643.html">
+ <LINK REL="Next" HREF="000731.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 655] [New] Open German forum</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20655%5D%20%5BNew%5D%20Open%20German%20forum&In-Reply-To=%3Cbug-655-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 655] [New] Open German forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 12:20:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI>Next message: <A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#644">[ date ]</a>
+ <a href="thread.html#644">[ thread ]</a>
+ <a href="subject.html#644">[ subject ]</a>
+ <a href="author.html#644">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+
+ Summary: Open German forum
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: forums.mageia.org
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+
+<A HREF="http://forums.mageia.org/de/">http://forums.mageia.org/de/</A> should host a German-spoken forum.
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI>Next message: <A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#644">[ date ]</a>
+ <a href="thread.html#644">[ thread ]</a>
+ <a href="subject.html#644">[ subject ]</a>
+ <a href="author.html#644">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000645.html b/zarb-ml/mageia-webteam/2011-April/000645.html
new file mode 100644
index 000000000..cf14610f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000645.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20%5BNew%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3Cbug-656-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000732.html">
+ <LINK REL="Next" HREF="000730.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20%5BNew%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3Cbug-656-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 12:23:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI>Next message: <A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#645">[ date ]</a>
+ <a href="thread.html#645">[ thread ]</a>
+ <a href="subject.html#645">[ subject ]</a>
+ <a href="author.html#645">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+
+ Summary: Fix forum locales redirections
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: forums.mageia.org
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+
+mageia.org hosts forums for some locales:
+ * English: <A HREF="http://forums.mageia.org/en/">http://forums.mageia.org/en/</A>
+ * German: <A HREF="http://forums.mageia.org/de/">http://forums.mageia.org/de/</A> (todo: view bug 655)
+ * others on demand (see
+<A HREF="http://mageia.org/wiki/doku.php?id=web:forums#asking_for_a_forum_in_a_specific_language">http://mageia.org/wiki/doku.php?id=web:forums#asking_for_a_forum_in_a_specific_language</A>)
+
+And other communities host a Mageia forum in their own locale:
+ * French, through MLO - should be redirected to it from
+<A HREF="http://forums.mageia.org/fr/">http://forums.mageia.org/fr/</A>
+ * Spanish, through Blogdrake - same, from <A HREF="http://forums.mageia.org/es/">http://forums.mageia.org/es/</A>
+
+It is needed first to get from these two groups what exact URL to redirect to.
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI>Next message: <A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#645">[ date ]</a>
+ <a href="thread.html#645">[ thread ]</a>
+ <a href="subject.html#645">[ subject ]</a>
+ <a href="author.html#645">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000646.html b/zarb-ml/mageia-webteam/2011-April/000646.html
new file mode 100644
index 000000000..464c90c2e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000646.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] 2011/week 14 meeting
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2014%20meeting&In-Reply-To=%3CXH4wqxk9rlTf.BFxCWQnp%40smtp.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000734.html">
+ <LINK REL="Next" HREF="000647.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] 2011/week 14 meeting</H1>
+ <B>kosmasc at gmail.com</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%202011/week%2014%20meeting&In-Reply-To=%3CXH4wqxk9rlTf.BFxCWQnp%40smtp.gmail.com%3E"
+ TITLE="[Mageia-webteam] 2011/week 14 meeting">kosmasc at gmail.com
+ </A><BR>
+ <I>Wed Apr 6 13:05:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#646">[ date ]</a>
+ <a href="thread.html#646">[ thread ]</a>
+ <a href="subject.html#646">[ subject ]</a>
+ <a href="author.html#646">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi
+Wont be able to be in meeting as currently on the road.
+Token authent. Only disabled on specific post. As discussed. Paging installed but not enabled yet
+Kosmas
+-original message-
+Subject: [Mageia-webteam] 2011/week 14 meeting
+From: &quot;Romain d'Alverny&quot; &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt;
+Date: 06/04/2011 11:19
+
+Hi there,
+
+as usual, 13:00 UTC (15:00 Paris time) on #mageia-web.
+
+Topics:
+ - maintdb roadmap
+ - new wiki roadmap
+ - bugs review
+ - open topics/questions
+_______________________________________________
+Mageia-webteam mailing list
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#646">[ date ]</a>
+ <a href="thread.html#646">[ thread ]</a>
+ <a href="subject.html#646">[ subject ]</a>
+ <a href="author.html#646">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000647.html b/zarb-ml/mageia-webteam/2011-April/000647.html
new file mode 100644
index 000000000..6fad2fe63
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000647.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406173543.EFF174288A%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000646.html">
+ <LINK REL="Next" HREF="000648.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406173543.EFF174288A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 19:35:43 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI>Next message: <A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#647">[ date ]</a>
+ <a href="thread.html#647">[ thread ]</a>
+ <a href="subject.html#647">[ subject ]</a>
+ <a href="author.html#647">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|ASSIGNED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #17 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-06 19:35:43 UTC ---
+This bug is fixed in indexhtml-1-3.mga1.
+
+Closing, reopen if the bug isn't fixed for you.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI>Next message: <A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#647">[ date ]</a>
+ <a href="thread.html#647">[ thread ]</a>
+ <a href="subject.html#647">[ subject ]</a>
+ <a href="author.html#647">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000648.html b/zarb-ml/mageia-webteam/2011-April/000648.html
new file mode 100644
index 000000000..24ce48655
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000648.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406184358.7477B42892%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000647.html">
+ <LINK REL="Next" HREF="000649.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406184358.7477B42892%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 20:43:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#648">[ date ]</a>
+ <a href="thread.html#648">[ thread ]</a>
+ <a href="subject.html#648">[ subject ]</a>
+ <a href="author.html#648">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|FIXED |
+
+--- Comment #18 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-04-06 20:43:58 UTC ---
+still not working for me on my updated alpha 1 with FF.
+
+how to reproduce:
+ - install alpha 1
+ - open FF and see that it doesn't work well, you see only &quot;mageia&quot; with a
+link.
+ - update it completely
+ - reboot
+ - open firefox and and you see an error now: /usr/share/doc/HTML/index.html is
+not found.
+
+i suspect firefox home page needs to be corrected as well...
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#648">[ date ]</a>
+ <a href="thread.html#648">[ thread ]</a>
+ <a href="subject.html#648">[ subject ]</a>
+ <a href="author.html#648">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000649.html b/zarb-ml/mageia-webteam/2011-April/000649.html
new file mode 100644
index 000000000..9ddfdc666
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000649.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406185621.1124242893%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000648.html">
+ <LINK REL="Next" HREF="000650.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406185621.1124242893%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 20:56:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#649">[ date ]</a>
+ <a href="thread.html#649">[ thread ]</a>
+ <a href="subject.html#649">[ subject ]</a>
+ <a href="author.html#649">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #19 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-06 20:56:20 UTC ---
+It won't work with old firefox profiles, as the:
+user_pref(&quot;browser.startup.homepage&quot;, &quot;<A HREF="file:///usr/share/doc/HTML/index.html">file:///usr/share/doc/HTML/index.html</A>&quot;);
+
+is already in ~/.mozilla/firefox/&lt;profile name&gt;/prefs.js. This is not the scope
+of this report.
+
+Also note that no rpm post scriptlet will/should ever touch a config file in
+the user's /home dir, and that whatever firefox default/system-wide default
+browser.startup.homepage is, it won't affect a setting in prefs.js, as prefs.js
+overrides system-wide settings...
+
+I guess a note could be dropped in the errata about this issue, with a sed
+command to fix it for the user, or explaining how to edit
+~/.mozilla/firefox/&lt;profile name&gt;/prefs.js manually...
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#649">[ date ]</a>
+ <a href="thread.html#649">[ thread ]</a>
+ <a href="subject.html#649">[ subject ]</a>
+ <a href="author.html#649">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000650.html b/zarb-ml/mageia-webteam/2011-April/000650.html
new file mode 100644
index 000000000..6698f4fb1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000650.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406193635.2685342892%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000649.html">
+ <LINK REL="Next" HREF="000651.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406193635.2685342892%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 21:36:35 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#650">[ date ]</a>
+ <a href="thread.html#650">[ thread ]</a>
+ <a href="subject.html#650">[ subject ]</a>
+ <a href="author.html#650">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #20 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-04-06 21:36:35 UTC ---
+i will test on a new installation, if it's ok there, then i consider this
+closed as we should not &quot;support&quot; a non-stable release.
+
+I will check a little while later.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#650">[ date ]</a>
+ <a href="thread.html#650">[ thread ]</a>
+ <a href="subject.html#650">[ subject ]</a>
+ <a href="author.html#650">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000651.html b/zarb-ml/mageia-webteam/2011-April/000651.html
new file mode 100644
index 000000000..fe87f8e19
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000651.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406213129.1624A42880%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000650.html">
+ <LINK REL="Next" HREF="000653.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110406213129.1624A42880%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 6 23:31:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#651">[ date ]</a>
+ <a href="thread.html#651">[ thread ]</a>
+ <a href="subject.html#651">[ subject ]</a>
+ <a href="author.html#651">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #21 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-06 23:31:28 UTC ---
+No need of a new installation, just rename ~/.mozilla or test in a new user
+account.
+
+I don't see where non-stable release enter here, this will affect any old
+firefox profile with any upgrade from an mdv release.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#651">[ date ]</a>
+ <a href="thread.html#651">[ thread ]</a>
+ <a href="subject.html#651">[ subject ]</a>
+ <a href="author.html#651">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000652.html b/zarb-ml/mageia-webteam/2011-April/000652.html
new file mode 100644
index 000000000..151e6e80a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000652.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D9CDBFA.9080903%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000630.html">
+ <LINK REL="Next" HREF="000656.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D9CDBFA.9080903%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">maat-ml at vilarem.net
+ </A><BR>
+ <I>Wed Apr 6 23:32:42 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#652">[ date ]</a>
+ <a href="thread.html#652">[ thread ]</a>
+ <a href="subject.html#652">[ subject ]</a>
+ <a href="author.html#652">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 01/04/2011 20:08, Wolfgang Bornath a &#233;crit :
+&gt;<i> 3. Privileges in the forum have to be tied to the task of the
+</I>&gt;<i> group/user, nothing else.
+</I>&gt;<i>
+</I>&gt;<i> For simplicity I'd go for
+</I>&gt;<i>
+</I>&gt;<i> - Admin group (creating/changing forum structures, creating groups,
+</I>&gt;<i> maintenance of the forum, making announcements about the forum, etc.)
+</I>&gt;<i>
+</I>&gt;<i> - Global moderators = all moderators, where moderating means:
+</I>&gt;<i> - - moving/merging/closing threads, editing posts (if necessary
+</I>&gt;<i> because of forum or legal rules), counseling users (positive and
+</I>&gt;<i> negative), announcing important things, etc.
+</I>&gt;<i>
+</I>&gt;<i> - Special groups who could be additional moderators of one section,
+</I>&gt;<i> like packagers and translators who are not in Global Moderators but
+</I>&gt;<i> could be moderators and contacts for the &quot;Packaging and Translating&quot;
+</I>&gt;<i> section. They have privileges only in this section.
+</I>&gt;<i>
+</I>&gt;<i> That's all. Simple, transparent, easy to understand and to maintain
+</I>&gt;<i> and to scale if needed.
+</I>&gt;<i>
+</I>&gt;<i> We've been working with this setup for years (even before we switched
+</I>&gt;<i> to phpbb3). Moderators were happy, users knew who to turn to. Admin
+</I>&gt;<i> was happy :)
+</I>
+Do you realise that you precisely describe what we have set up on the mageia forums from the beginning ?
+
+:<i>)
+</I>
+cheers,
+
+Ma&#226;t
+
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#652">[ date ]</a>
+ <a href="thread.html#652">[ thread ]</a>
+ <a href="subject.html#652">[ subject ]</a>
+ <a href="author.html#652">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000653.html b/zarb-ml/mageia-webteam/2011-April/000653.html
new file mode 100644
index 000000000..1c215be61
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000653.html
@@ -0,0 +1,128 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110406220002.78B004288F%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000651.html">
+ <LINK REL="Next" HREF="000654.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110406220002.78B004288F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#653">[ date ]</a>
+ <a href="thread.html#653">[ thread ]</a>
+ <a href="subject.html#653">[ subject ]</a>
+ <a href="author.html#653">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#653">[ date ]</a>
+ <a href="thread.html#653">[ thread ]</a>
+ <a href="subject.html#653">[ subject ]</a>
+ <a href="author.html#653">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000654.html b/zarb-ml/mageia-webteam/2011-April/000654.html
new file mode 100644
index 000000000..86a3aa151
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000654.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407064216.6F88942898%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000653.html">
+ <LINK REL="Next" HREF="000655.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407064216.6F88942898%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 08:42:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#654">[ date ]</a>
+ <a href="thread.html#654">[ thread ]</a>
+ <a href="subject.html#654">[ subject ]</a>
+ <a href="author.html#654">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #22 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-04-07 08:42:16 UTC ---
+oh, ic that you are right. didn't think about upgrade from mdv...
+
+
+in that case, i would suggest keeping the /HTML/ directory, and perhaps linking
+the files in indexhtml/ to HTML/ ?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#654">[ date ]</a>
+ <a href="thread.html#654">[ thread ]</a>
+ <a href="subject.html#654">[ subject ]</a>
+ <a href="author.html#654">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000655.html b/zarb-ml/mageia-webteam/2011-April/000655.html
new file mode 100644
index 000000000..073a3fb80
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000655.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407081309.5F0B94289B%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000654.html">
+ <LINK REL="Next" HREF="000664.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407081309.5F0B94289B%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 10:13:09 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#655">[ date ]</a>
+ <a href="thread.html#655">[ thread ]</a>
+ <a href="subject.html#655">[ subject ]</a>
+ <a href="author.html#655">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #23 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-07 10:13:09 UTC ---
+That looks like a good option. Ahmad, wdyt?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#655">[ date ]</a>
+ <a href="thread.html#655">[ thread ]</a>
+ <a href="subject.html#655">[ subject ]</a>
+ <a href="author.html#655">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000656.html b/zarb-ml/mageia-webteam/2011-April/000656.html
new file mode 100644
index 000000000..5a1def2f3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000656.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTim45U8tHmvFzj5pnLXn6ZD3hp%2BE%3Dw%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000652.html">
+ <LINK REL="Next" HREF="000657.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTim45U8tHmvFzj5pnLXn6ZD3hp%2BE%3Dw%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Apr 7 10:49:07 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#656">[ date ]</a>
+ <a href="thread.html#656">[ thread ]</a>
+ <a href="subject.html#656">[ subject ]</a>
+ <a href="author.html#656">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/6 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 01/04/2011 20:08, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> 3. Privileges in the forum have to be tied to the task of the
+</I>&gt;&gt;<i> group/user, nothing else.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> For simplicity I'd go for
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> &#160;- Admin group (creating/changing forum structures, creating groups,
+</I>&gt;&gt;<i> maintenance of the forum, making announcements about the forum, etc.)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> &#160;- Global moderators = all moderators, where moderating means:
+</I>&gt;&gt;<i> &#160;- - moving/merging/closing threads, editing posts (if necessary
+</I>&gt;&gt;<i> because of forum or legal rules), counseling users (positive and
+</I>&gt;&gt;<i> negative), announcing important things, etc.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> &#160;- Special groups who could be additional moderators of one section,
+</I>&gt;&gt;<i> like packagers and translators who are not in Global Moderators but
+</I>&gt;&gt;<i> could be moderators and contacts for the &quot;Packaging and Translating&quot;
+</I>&gt;&gt;<i> section. They have privileges only in this section.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> That's all. Simple, transparent, easy to understand and to maintain
+</I>&gt;&gt;<i> and to scale if needed.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> We've been working with this setup for years (even before we switched
+</I>&gt;&gt;<i> to phpbb3). Moderators were happy, users knew who to turn to. Admin
+</I>&gt;&gt;<i> was happy :)
+</I>&gt;<i>
+</I>&gt;<i> Do you realise that you precisely describe what we have set up on the mageia forums from the beginning ?
+</I>
+Then why is it not so now? Why does my description differ so much to yours?
+For instance: What am I? According to the color and profile I am a
+member of the &quot;founders&quot; group.
+What does that mean in practice? I haven't found out yet. Same for the
+other &quot;special groups&quot;.
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#656">[ date ]</a>
+ <a href="thread.html#656">[ thread ]</a>
+ <a href="subject.html#656">[ subject ]</a>
+ <a href="author.html#656">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000657.html b/zarb-ml/mageia-webteam/2011-April/000657.html
new file mode 100644
index 000000000..02a648e52
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000657.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTinCd5DuUXW%3DcmZJnXLtdpwA7QwAbg%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000656.html">
+ <LINK REL="Next" HREF="000660.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTinCd5DuUXW%3DcmZJnXLtdpwA7QwAbg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Apr 7 12:22:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#657">[ date ]</a>
+ <a href="thread.html#657">[ thread ]</a>
+ <a href="subject.html#657">[ subject ]</a>
+ <a href="author.html#657">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/7 Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt;:
+&gt;<i> 2011/4/6 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+</I>&gt;&gt;<i> Le 01/04/2011 20:08, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;&gt;<i> 3. Privileges in the forum have to be tied to the task of the
+</I>&gt;&gt;&gt;<i> group/user, nothing else.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> For simplicity I'd go for
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> &#160;- Admin group (creating/changing forum structures, creating groups,
+</I>&gt;&gt;&gt;<i> maintenance of the forum, making announcements about the forum, etc.)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> &#160;- Global moderators = all moderators, where moderating means:
+</I>&gt;&gt;&gt;<i> &#160;- - moving/merging/closing threads, editing posts (if necessary
+</I>&gt;&gt;&gt;<i> because of forum or legal rules), counseling users (positive and
+</I>&gt;&gt;&gt;<i> negative), announcing important things, etc.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> &#160;- Special groups who could be additional moderators of one section,
+</I>&gt;&gt;&gt;<i> like packagers and translators who are not in Global Moderators but
+</I>&gt;&gt;&gt;<i> could be moderators and contacts for the &quot;Packaging and Translating&quot;
+</I>&gt;&gt;&gt;<i> section. They have privileges only in this section.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> That's all. Simple, transparent, easy to understand and to maintain
+</I>&gt;&gt;&gt;<i> and to scale if needed.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> We've been working with this setup for years (even before we switched
+</I>&gt;&gt;&gt;<i> to phpbb3). Moderators were happy, users knew who to turn to. Admin
+</I>&gt;&gt;&gt;<i> was happy :)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Do you realise that you precisely describe what we have set up on the mageia forums from the beginning ?
+</I>&gt;<i>
+</I>&gt;<i> Then why is it not so now? Why does my description differ so much to yours?
+</I>&gt;<i> For instance: What am I? According to the color and profile I am a
+</I>&gt;<i> member of the &quot;founders&quot; group.
+</I>&gt;<i> What does that mean in practice? I haven't found out yet. Same for the
+</I>&gt;<i> other &quot;special groups&quot;.
+</I>
+Additional question:
+Why do I (as member of &quot;Founders&quot; and &quot;Translators&quot;) have moderator
+rights (editing other's posts) in &quot;News&amp;Announcements&quot; but not in
+&quot;General discussions&quot; and &quot;Wizards Lair&quot;? News seldomly need a
+moderator, but the other two are the forums which will need most
+attention by moderators.
+
+--
+wobo
+</PRE>
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#657">[ date ]</a>
+ <a href="thread.html#657">[ thread ]</a>
+ <a href="subject.html#657">[ subject ]</a>
+ <a href="author.html#657">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000658.html b/zarb-ml/mageia-webteam/2011-April/000658.html
new file mode 100644
index 000000000..eabafa2b1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000658.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D9DAFD8.4090409%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000729.html">
+ <LINK REL="Next" HREF="000659.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D9DAFD8.4090409%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">maat-ml at vilarem.net
+ </A><BR>
+ <I>Thu Apr 7 14:36:40 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#658">[ date ]</a>
+ <a href="thread.html#658">[ thread ]</a>
+ <a href="subject.html#658">[ subject ]</a>
+ <a href="author.html#658">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 07/04/2011 10:49, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/4/6 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+</I>&gt;&gt;<i> Le 01/04/2011 20:08, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;&gt;<i> 3. Privileges in the forum have to be tied to the task of the
+</I>&gt;&gt;&gt;<i> group/user, nothing else.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> For simplicity I'd go for
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> - Admin group (creating/changing forum structures, creating groups,
+</I>&gt;&gt;&gt;<i> maintenance of the forum, making announcements about the forum, etc.)
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> - Global moderators = all moderators, where moderating means:
+</I>&gt;&gt;&gt;<i> - - moving/merging/closing threads, editing posts (if necessary
+</I>&gt;&gt;&gt;<i> because of forum or legal rules), counseling users (positive and
+</I>&gt;&gt;&gt;<i> negative), announcing important things, etc.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> - Special groups who could be additional moderators of one section,
+</I>&gt;&gt;&gt;<i> like packagers and translators who are not in Global Moderators but
+</I>&gt;&gt;&gt;<i> could be moderators and contacts for the &quot;Packaging and Translating&quot;
+</I>&gt;&gt;&gt;<i> section. They have privileges only in this section.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> That's all. Simple, transparent, easy to understand and to maintain
+</I>&gt;&gt;&gt;<i> and to scale if needed.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> We've been working with this setup for years (even before we switched
+</I>&gt;&gt;&gt;<i> to phpbb3). Moderators were happy, users knew who to turn to. Admin
+</I>&gt;&gt;&gt;<i> was happy :)
+</I>&gt;&gt;<i> Do you realise that you precisely describe what we have set up on the mageia forums from the beginning ?
+</I>&gt;<i> Then why is it not so now? Why does my description differ so much to yours?
+</I>&gt;<i> For instance: What am I? According to the color and profile I am a
+</I>&gt;<i> member of the &quot;founders&quot; group.
+</I>&gt;<i> What does that mean in practice? I haven't found out yet. Same for the
+</I>&gt;<i> other &quot;special groups&quot;
+</I>I just let you answer to yourself :
+
+Le 01/04/2011 20:08, Wolfgang Bornath a &#233;crit :
+&gt;<i> - Special groups who could be additional moderators of one section,
+</I>&gt;<i> like packagers and translators who are not in Global Moderators but
+</I>&gt;<i> could be moderators and contacts for the &quot;Packaging and Translating&quot;
+</I>&gt;<i> section. They have privileges only in this section.
+</I>&gt;<i>
+</I>&gt;<i> That's all. Simple, transparent, easy to understand and to maintain
+</I>&gt;<i> and to scale if needed.
+</I>You are in a special group who *could* be additional moderator of one section (or an other) :)
+
+That's all. Simple, transparent, easy to understand and to maintain and to scale if needed. :o)
+
+I really don't understand how you come to see a difference between to things that are actually identical :o_&#212;
+
+
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#658">[ date ]</a>
+ <a href="thread.html#658">[ thread ]</a>
+ <a href="subject.html#658">[ subject ]</a>
+ <a href="author.html#658">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000659.html b/zarb-ml/mageia-webteam/2011-April/000659.html
new file mode 100644
index 000000000..6064cb460
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000659.html
@@ -0,0 +1,117 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTi%3DFyQ5w42P9FD3DBa%2BnmXczbGbdwg%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000658.html">
+ <LINK REL="Next" HREF="000626.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTi%3DFyQ5w42P9FD3DBa%2BnmXczbGbdwg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Apr 7 14:44:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#659">[ date ]</a>
+ <a href="thread.html#659">[ thread ]</a>
+ <a href="subject.html#659">[ subject ]</a>
+ <a href="author.html#659">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/7 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 07/04/2011 10:49, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> 2011/4/6 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+</I>&gt;&gt;&gt;<i> Le 01/04/2011 20:08, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;&gt;&gt;<i> 3. Privileges in the forum have to be tied to the task of the
+</I>&gt;&gt;&gt;&gt;<i> group/user, nothing else.
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> For simplicity I'd go for
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> &#160;- Admin group (creating/changing forum structures, creating groups,
+</I>&gt;&gt;&gt;&gt;<i> maintenance of the forum, making announcements about the forum, etc.)
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> &#160;- Global moderators = all moderators, where moderating means:
+</I>&gt;&gt;&gt;&gt;<i> &#160;- - moving/merging/closing threads, editing posts (if necessary
+</I>&gt;&gt;&gt;&gt;<i> because of forum or legal rules), counseling users (positive and
+</I>&gt;&gt;&gt;&gt;<i> negative), announcing important things, etc.
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> &#160;- Special groups who could be additional moderators of one section,
+</I>&gt;&gt;&gt;&gt;<i> like packagers and translators who are not in Global Moderators but
+</I>&gt;&gt;&gt;&gt;<i> could be moderators and contacts for the &quot;Packaging and Translating&quot;
+</I>&gt;&gt;&gt;&gt;<i> section. They have privileges only in this section.
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> That's all. Simple, transparent, easy to understand and to maintain
+</I>&gt;&gt;&gt;&gt;<i> and to scale if needed.
+</I>&gt;&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;&gt;<i> We've been working with this setup for years (even before we switched
+</I>&gt;&gt;&gt;&gt;<i> to phpbb3). Moderators were happy, users knew who to turn to. Admin
+</I>&gt;&gt;&gt;&gt;<i> was happy :)
+</I>&gt;&gt;&gt;<i> Do you realise that you precisely describe what we have set up on the mageia forums from the beginning ?
+</I>&gt;&gt;<i> Then why is it not so now? Why does my description differ so much to yours?
+</I>&gt;&gt;<i> For instance: What am I? According to the color and profile I am a
+</I>&gt;&gt;<i> member of the &quot;founders&quot; group.
+</I>&gt;&gt;<i> What does that mean in practice? I haven't found out yet. Same for the
+</I>&gt;&gt;<i> other &quot;special groups&quot;
+</I>&gt;<i> I just let you answer to yourself :
+</I>&gt;<i>
+</I>&gt;<i> Le 01/04/2011 20:08, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> &#160;- Special groups who could be additional moderators of one section,
+</I>&gt;&gt;<i> like packagers and translators who are not in Global Moderators but
+</I>&gt;&gt;<i> could be moderators and contacts for the &quot;Packaging and Translating&quot;
+</I>&gt;&gt;<i> section. They have privileges only in this section.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> That's all. Simple, transparent, easy to understand and to maintain
+</I>&gt;&gt;<i> and to scale if needed.
+</I>&gt;<i> You are in a special group who *could* be additional moderator of one section (or an other) :)
+</I>
+Yes, of course, I asked why these and not others.
+
+&gt;<i> I really don't understand how you come to see a difference between to things that are actually identical :o_&#212;
+</I>
+The difference is not in the different stages, there we seem to have a
+similar setup, although it looked very different in the beginning. The
+current (and more important) difference is in the description of the
+tasks and the related permissions you gave.
+
+--
+wobo
+</PRE>
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#659">[ date ]</a>
+ <a href="thread.html#659">[ thread ]</a>
+ <a href="subject.html#659">[ subject ]</a>
+ <a href="author.html#659">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000660.html b/zarb-ml/mageia-webteam/2011-April/000660.html
new file mode 100644
index 000000000..e9c4571f0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000660.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D9DB1C6.3000800%40vilarem.net%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000657.html">
+ <LINK REL="Next" HREF="000661.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Ma&#226;t</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C4D9DB1C6.3000800%40vilarem.net%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">maat-ml at vilarem.net
+ </A><BR>
+ <I>Thu Apr 7 14:44:54 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#660">[ date ]</a>
+ <a href="thread.html#660">[ thread ]</a>
+ <a href="subject.html#660">[ subject ]</a>
+ <a href="author.html#660">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 07/04/2011 12:22, Wolfgang Bornath a &#233;crit :
+&gt;<i> Additional question:
+</I>&gt;<i> Why do I (as member of &quot;Founders&quot; and &quot;Translators&quot;) have moderator
+</I>&gt;<i> rights (editing other's posts) in &quot;News&amp;Announcements&quot; but not in
+</I>&gt;<i> &quot;General discussions&quot; and &quot;Wizards Lair&quot;? News seldomly need a
+</I>&gt;<i> moderator, but the other two are the forums which will need most
+</I>&gt;<i> attention by moderators.
+</I>&gt;<i>
+</I>Once again you did not get the way phpbb3 deals with groups and privileges
+
+As a member of founders you are able to post and edit in news and in welcome parts
+
+As a translator you you are able to post and edit in translation forum (the best example is to retitle a topic or mark it &quot;[resolved]&quot; without having to bother a moderator
+
+Moderation is once again something that phpbb3 uses for many things... having the right to edit topics title in one section does not make technically of you a &quot;moderator&quot;, having the right to make a post sticky not more.
+
+But one of them is labeled as a moderation right in phpbb3, the other nope it's an advanced user right that phpbb admins disable for all &quot;normal user groups&quot; (in vbulletin both are moderation rights iinm, same thing for ipb, phpbb2 i don't remember).
+
+As you said there are moderators and special groups which are NOT moderators... special groups *could* be moderators or have extended rights on sections (which are called forums in phpbb3 jargon)
+
+Hope that will help you a little bit :)
+
+
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#660">[ date ]</a>
+ <a href="thread.html#660">[ thread ]</a>
+ <a href="subject.html#660">[ subject ]</a>
+ <a href="author.html#660">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000661.html b/zarb-ml/mageia-webteam/2011-April/000661.html
new file mode 100644
index 000000000..fd584229a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000661.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTi%3DorjSc61NyOzVoh16_39ySWCouow%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000660.html">
+ <LINK REL="Next" HREF="000662.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTi%3DorjSc61NyOzVoh16_39ySWCouow%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Apr 7 14:51:53 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#661">[ date ]</a>
+ <a href="thread.html#661">[ thread ]</a>
+ <a href="subject.html#661">[ subject ]</a>
+ <a href="author.html#661">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/7 Ma&#226;t &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maat-ml at vilarem.net</A>&gt;:
+&gt;<i> Le 07/04/2011 12:22, Wolfgang Bornath a &#233;crit :
+</I>&gt;&gt;<i> Additional question:
+</I>&gt;&gt;<i> Why do I (as member of &quot;Founders&quot; and &quot;Translators&quot;) have moderator
+</I>&gt;&gt;<i> rights (editing other's posts) in &quot;News&amp;Announcements&quot; but not in
+</I>&gt;&gt;<i> &quot;General discussions&quot; and &quot;Wizards Lair&quot;? News seldomly need a
+</I>&gt;&gt;<i> moderator, but the other two are the forums which will need most
+</I>&gt;&gt;<i> attention by moderators.
+</I>&gt;&gt;<i>
+</I>&gt;<i> Once again you did not get the way phpbb3 deals with groups and privileges
+</I>&gt;<i>
+</I>&gt;<i> As a member of founders you are able to post and edit in news and in welcome parts
+</I>&gt;<i>
+</I>&gt;<i> As a translator you you are able to post and edit in translation forum (the best example is to retitle a topic or mark it &quot;[resolved]&quot; without having to bother a moderator
+</I>&gt;<i>
+</I>&gt;<i> Moderation is once again something that phpbb3 uses for many things... having the right to edit topics title in one section does not make technically of you a &quot;moderator&quot;, having the right to make a post sticky not more.
+</I>&gt;<i>
+</I>&gt;<i> But one of them is labeled as a moderation right in phpbb3, the other nope it's an advanced user right that phpbb admins disable for all &quot;normal user groups&quot; (in vbulletin both are moderation rights iinm, same thing for ipb, phpbb2 i don't remember).
+</I>&gt;<i>
+</I>&gt;<i> As you said there are moderators and special groups which are NOT moderators... special groups *could* be moderators or have extended rights on sections (which are called forums in phpbb3 jargon)
+</I>
+See, the differences are there and you describe them very well. :)
+ You have changed single permissions of groups in &quot;advanced user
+permissions&quot;, which makes it hard to maintain. In my forum I did not
+do that. I kept it simple and only setup groups (admins, global
+moderators, special groups (which have moderator status in their
+forums)).
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#661">[ date ]</a>
+ <a href="thread.html#661">[ thread ]</a>
+ <a href="subject.html#661">[ subject ]</a>
+ <a href="author.html#661">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000662.html b/zarb-ml/mageia-webteam/2011-April/000662.html
new file mode 100644
index 000000000..594ddf5ab
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000662.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C20110407132120.GY21938%40mars-attacks.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000661.html">
+ <LINK REL="Next" HREF="000663.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3C20110407132120.GY21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">boklm at mars-attacks.org
+ </A><BR>
+ <I>Thu Apr 7 15:21:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#662">[ date ]</a>
+ <a href="thread.html#662">[ thread ]</a>
+ <a href="subject.html#662">[ subject ]</a>
+ <a href="author.html#662">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Thu, 07 Apr 2011, Ma&#226;t wrote:
+
+&gt;<i>
+</I>&gt;<i> As you said there are moderators and special groups which are NOT moderators... special groups *could* be moderators or have extended rights on sections (which are called forums in phpbb3 jargon)
+</I>
+It seems there are a lot of groups that are duplicate of ldap groups
+(packagers, sysadmin, translators, founders, bug hunters). As ldap
+cannot be used in phpbb for this, it means groups will have to be
+manually synchronised, which is a lot of work.
+
+So I think an option would be to remove those groups, as they are not
+really necessary, and only use moderator groups.
+
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#662">[ date ]</a>
+ <a href="thread.html#662">[ thread ]</a>
+ <a href="subject.html#662">[ subject ]</a>
+ <a href="author.html#662">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000663.html b/zarb-ml/mageia-webteam/2011-April/000663.html
new file mode 100644
index 000000000..252826513
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000663.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTikmY%2BOpumejDNaD36f_fy3oqPWSrg%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000662.html">
+ <LINK REL="Next" HREF="000729.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Wolfgang Bornath</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTikmY%2BOpumejDNaD36f_fy3oqPWSrg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">molch.b at googlemail.com
+ </A><BR>
+ <I>Thu Apr 7 15:35:31 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#663">[ date ]</a>
+ <a href="thread.html#663">[ thread ]</a>
+ <a href="subject.html#663">[ subject ]</a>
+ <a href="author.html#663">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/7 nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt;:
+&gt;<i> On Thu, 07 Apr 2011, Ma&#226;t wrote:
+</I>&gt;<i>
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> As you said there are moderators and special groups which are NOT moderators... special groups *could* be moderators or have extended rights on sections (which are called forums in phpbb3 jargon)
+</I>&gt;<i>
+</I>&gt;<i> It seems there are a lot of groups that are duplicate of ldap groups
+</I>&gt;<i> (packagers, sysadmin, translators, founders, bug hunters). As ldap
+</I>&gt;<i> cannot be used in phpbb for this, it means groups will have to be
+</I>&gt;<i> manually synchronised, which is a lot of work.
+</I>&gt;<i>
+</I>&gt;<i> So I think an option would be to remove those groups, as they are not
+</I>&gt;<i> really necessary, and only use moderator groups.
+</I>
+This would match my approach, yes.
+But as for the relation to LDAP - it is not necessary. The groups in
+the forum were set up inside the forum and will be &quot;filled&quot; with
+people inside the froum group management. LDAP is not concerned with
+matters inside the forum, only for authentification (login).
+
+--
+wobo
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#663">[ date ]</a>
+ <a href="thread.html#663">[ thread ]</a>
+ <a href="subject.html#663">[ subject ]</a>
+ <a href="author.html#663">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000664.html b/zarb-ml/mageia-webteam/2011-April/000664.html
new file mode 100644
index 000000000..b904a5e1b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000664.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407152106.D3A3342872%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000655.html">
+ <LINK REL="Next" HREF="000665.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407152106.D3A3342872%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 17:21:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#664">[ date ]</a>
+ <a href="thread.html#664">[ thread ]</a>
+ <a href="subject.html#664">[ subject ]</a>
+ <a href="author.html#664">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #24 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-07 17:21:06 UTC ---
+(In reply to comment #23)
+&gt;<i> That looks like a good option. Ahmad, wdyt?
+</I>
+Then the symlink will have to be there for a very long time; the two options
+are:
+1) the symlink is created and kept there for as long as 2010.x is supported
+(that somehow defines the reasons the files location were changes in
+indexhtml); Mageia ideally supports upgrading from 2010.x
+2) no symlink is created and a note is dropped in the Errata, it's as simple as
+a single sed command on prefs.js in the user's profile, and is a one time
+issue.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#664">[ date ]</a>
+ <a href="thread.html#664">[ thread ]</a>
+ <a href="subject.html#664">[ subject ]</a>
+ <a href="author.html#664">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000665.html b/zarb-ml/mageia-webteam/2011-April/000665.html
new file mode 100644
index 000000000..eb6242d8b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000665.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407152941.4E26242780%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000664.html">
+ <LINK REL="Next" HREF="000666.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407152941.4E26242780%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 17:29:41 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#665">[ date ]</a>
+ <a href="thread.html#665">[ thread ]</a>
+ <a href="subject.html#665">[ subject ]</a>
+ <a href="author.html#665">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #25 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-07 17:29:41 UTC ---
+(In reply to comment #24)
+
+My only concern here is for the upgrade path from 2010.x, so that users that
+didn't change their start page in the meantime do get the Mageia one:
+ - so we should not change prefs.js anyway;
+ - a symlink to be created only for Mageia 1 would be ok - later upgrades
+should not remove this symlink, right?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#665">[ date ]</a>
+ <a href="thread.html#665">[ thread ]</a>
+ <a href="subject.html#665">[ subject ]</a>
+ <a href="author.html#665">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000666.html b/zarb-ml/mageia-webteam/2011-April/000666.html
new file mode 100644
index 000000000..9bb797517
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000666.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407155017.D448C42780%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000665.html">
+ <LINK REL="Next" HREF="000667.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407155017.D448C42780%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 17:50:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#666">[ date ]</a>
+ <a href="thread.html#666">[ thread ]</a>
+ <a href="subject.html#666">[ subject ]</a>
+ <a href="author.html#666">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>
+
+--- Comment #26 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-07 17:50:18 UTC ---
+Another solution would be to set this in a shell wrapper when firefox is
+started ( ie, the sed stuff ).
+But this could change profile page when people do not want, so that's not
+ideal.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#666">[ date ]</a>
+ <a href="thread.html#666">[ thread ]</a>
+ <a href="subject.html#666">[ subject ]</a>
+ <a href="author.html#666">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000667.html b/zarb-ml/mageia-webteam/2011-April/000667.html
new file mode 100644
index 000000000..41b823abf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000667.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407181216.62C784286E%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000666.html">
+ <LINK REL="Next" HREF="000668.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407181216.62C784286E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 20:12:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#667">[ date ]</a>
+ <a href="thread.html#667">[ thread ]</a>
+ <a href="subject.html#667">[ subject ]</a>
+ <a href="author.html#667">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #27 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-07 20:12:15 UTC ---
+(In reply to comment #25)
+&gt;<i> (In reply to comment #24)
+</I>&gt;<i>
+</I>&gt;<i> My only concern here is for the upgrade path from 2010.x, so that users that
+</I>&gt;<i> didn't change their start page in the meantime do get the Mageia one:
+</I>&gt;<i> - so we should not change prefs.js anyway;
+</I>&gt;<i> - a symlink to be created only for Mageia 1 would be ok - later upgrades
+</I>&gt;<i> should not remove this symlink, right?
+</I>
+The point is, if the user doesn't edit prefs.js to change the pref, it'll be
+there forever, people usually use the same profile as it contains bookmarks,
+tags, saved passwords... etc.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#667">[ date ]</a>
+ <a href="thread.html#667">[ thread ]</a>
+ <a href="subject.html#667">[ subject ]</a>
+ <a href="author.html#667">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000668.html b/zarb-ml/mageia-webteam/2011-April/000668.html
new file mode 100644
index 000000000..ff0b7e6f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000668.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407191232.3349B4286E%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000667.html">
+ <LINK REL="Next" HREF="000669.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110407191232.3349B4286E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 21:12:32 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#668">[ date ]</a>
+ <a href="thread.html#668">[ thread ]</a>
+ <a href="subject.html#668">[ subject ]</a>
+ <a href="author.html#668">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #28 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-04-07 21:12:30 UTC ---
+the symlinks looks like a big maintainability issue, but not having symlinks
+will probably create alot of noise, especially with reviewers who might &quot;test&quot;
+our upgrade path...
+
+so what if the few symlinks are there? is that a real problem? is it the end of
+the world if the user has it in his profile for 10years or more? not imho.
+
+what about other browsers?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#668">[ date ]</a>
+ <a href="thread.html#668">[ thread ]</a>
+ <a href="subject.html#668">[ subject ]</a>
+ <a href="author.html#668">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000669.html b/zarb-ml/mageia-webteam/2011-April/000669.html
new file mode 100644
index 000000000..a8b28de2e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000669.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 690] [New] language redirection problem
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20%5BNew%5D%20language%20redirection%20problem&In-Reply-To=%3Cbug-690-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000668.html">
+ <LINK REL="Next" HREF="000671.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 690] [New] language redirection problem</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20%5BNew%5D%20language%20redirection%20problem&In-Reply-To=%3Cbug-690-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 690] [New] language redirection problem">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 7 21:53:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#669">[ date ]</a>
+ <a href="thread.html#669">[ thread ]</a>
+ <a href="subject.html#669">[ subject ]</a>
+ <a href="author.html#669">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=690">https://bugs.mageia.org/show_bug.cgi?id=690</A>
+
+ Summary: language redirection problem
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: major
+ Priority: Normal
+ Component: Other
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>
+
+
+Description of problem:
+a friend of mine mentioned this to me on IRC:
+
+AL13N: about mageia web site. from download page <A HREF="http://mageia.org/downloads/">http://mageia.org/downloads/</A>
+it redirect me to
+AL13N: <A HREF="http://mageia.org/ru/downloads/">http://mageia.org/ru/downloads/</A> and it return 404
+
+
+could this be fixed please? preferably in some kind of generalised way? ie: no
+redirect if there is no language yet?
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#669">[ date ]</a>
+ <a href="thread.html#669">[ thread ]</a>
+ <a href="subject.html#669">[ subject ]</a>
+ <a href="author.html#669">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000670.html b/zarb-ml/mageia-webteam/2011-April/000670.html
new file mode 100644
index 000000000..b815e549b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000670.html
@@ -0,0 +1,123 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110407220002.A6241427DC%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000717.html">
+ <LINK REL="Next" HREF="000672.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110407220002.A6241427DC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 8 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI>Next message: <A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#670">[ date ]</a>
+ <a href="thread.html#670">[ thread ]</a>
+ <a href="subject.html#670">[ subject ]</a>
+ <a href="author.html#670">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI>Next message: <A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#670">[ date ]</a>
+ <a href="thread.html#670">[ thread ]</a>
+ <a href="subject.html#670">[ subject ]</a>
+ <a href="author.html#670">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000671.html b/zarb-ml/mageia-webteam/2011-April/000671.html
new file mode 100644
index 000000000..ecef333fa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000671.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 690] /ru/downloads 404
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20/ru/downloads%20404&In-Reply-To=%3C20110408072825.0565542871%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000669.html">
+ <LINK REL="Next" HREF="000716.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 690] /ru/downloads 404</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20/ru/downloads%20404&In-Reply-To=%3C20110408072825.0565542871%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 690] /ru/downloads 404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 8 09:28:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A></li>
+ <LI>Next message: <A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#671">[ date ]</a>
+ <a href="thread.html#671">[ thread ]</a>
+ <a href="subject.html#671">[ subject ]</a>
+ <a href="author.html#671">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=690">https://bugs.mageia.org/show_bug.cgi?id=690</A>
+
+Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|language redirection |/ru/downloads 404
+ |problem |
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #1 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-08 09:28:25 UTC ---
+Fixed.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
+</A></li>
+ <LI>Next message: <A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#671">[ date ]</a>
+ <a href="thread.html#671">[ thread ]</a>
+ <a href="subject.html#671">[ subject ]</a>
+ <a href="author.html#671">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000672.html b/zarb-ml/mageia-webteam/2011-April/000672.html
new file mode 100644
index 000000000..74fb50de8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000672.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110408081508.62A5442872%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000670.html">
+ <LINK REL="Next" HREF="000673.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110408081508.62A5442872%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 8 10:15:08 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#672">[ date ]</a>
+ <a href="thread.html#672">[ thread ]</a>
+ <a href="subject.html#672">[ subject ]</a>
+ <a href="author.html#672">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #29 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-08 10:15:08 UTC ---
+(In reply to comment #27)
+&gt;<i> The point is, if the user doesn't edit prefs.js to change the pref, it'll be
+</I>&gt;<i> there forever, people usually use the same profile as it contains bookmarks,
+</I>&gt;<i> tags, saved passwords... etc.
+</I>
+We can afford having their home page broken by a later release/upgrade - if
+they didn't customize it - when we would remove the symlink (we should perhaps
+leave a hint to this bug in the spec file?).
+
+Here the crucial thing is really the Mandriva 2010.x/Mageia 1 transition where
+we should not leave people in the void.
+
+(In reply to comment #28)
+&gt;<i> what about other browsers?
+</I>
+Opera doesn't use this page afaik; links does and has been updated, however I
+don't know if there's a user prefs file for it.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#672">[ date ]</a>
+ <a href="thread.html#672">[ thread ]</a>
+ <a href="subject.html#672">[ subject ]</a>
+ <a href="author.html#672">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000673.html b/zarb-ml/mageia-webteam/2011-April/000673.html
new file mode 100644
index 000000000..546c1e857
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000673.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 72] default page doesn't redirect to website
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110408154059.DE3A742827%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000672.html">
+ <LINK REL="Next" HREF="000674.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 72] default page doesn't redirect to website</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%2072%5D%20default%20page%20doesn%27t%20redirect%20to%20website&In-Reply-To=%3C20110408154059.DE3A742827%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 72] default page doesn't redirect to website">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 8 17:40:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#673">[ date ]</a>
+ <a href="thread.html#673">[ thread ]</a>
+ <a href="subject.html#673">[ subject ]</a>
+ <a href="author.html#673">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=72">https://bugs.mageia.org/show_bug.cgi?id=72</A>
+
+--- Comment #30 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-08 17:41:00 UTC ---
+(In reply to comment #29)
+&gt;<i> (In reply to comment #27)
+</I>&gt;<i> &gt; The point is, if the user doesn't edit prefs.js to change the pref, it'll be
+</I>&gt;<i> &gt; there forever, people usually use the same profile as it contains bookmarks,
+</I>&gt;<i> &gt; tags, saved passwords... etc.
+</I>&gt;<i>
+</I>&gt;<i> We can afford having their home page broken by a later release/upgrade - if
+</I>&gt;<i> they didn't customize it - when we would remove the symlink (we should perhaps
+</I>&gt;<i> leave a hint to this bug in the spec file?).
+</I>&gt;<i>
+</I>&gt;<i> Here the crucial thing is really the Mandriva 2010.x/Mageia 1 transition where
+</I>&gt;<i> we should not leave people in the void.
+</I>&gt;<i>
+</I>
+I see your point, (so we break it for Mageia 2 :)).
+
+Symlink added and a new package submitted.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#673">[ date ]</a>
+ <a href="thread.html#673">[ thread ]</a>
+ <a href="subject.html#673">[ subject ]</a>
+ <a href="author.html#673">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000674.html b/zarb-ml/mageia-webteam/2011-April/000674.html
new file mode 100644
index 000000000..4bb2820a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000674.html
@@ -0,0 +1,113 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 723] [New] incorrect suggested command
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20723%5D%20%5BNew%5D%20incorrect%20suggested%20command&In-Reply-To=%3Cbug-723-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000673.html">
+ <LINK REL="Next" HREF="000675.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 723] [New] incorrect suggested command</H1>
+ <B>robert marshall</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20723%5D%20%5BNew%5D%20incorrect%20suggested%20command&In-Reply-To=%3Cbug-723-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 723] [New] incorrect suggested command">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 8 22:45:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#674">[ date ]</a>
+ <a href="thread.html#674">[ thread ]</a>
+ <a href="subject.html#674">[ subject ]</a>
+ <a href="author.html#674">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=723">https://bugs.mageia.org/show_bug.cgi?id=723</A>
+
+ Summary: incorrect suggested command
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="http://mageia.org/wiki/doku.php?id=qa_upgrade">http://mageia.org/wiki/doku.php?id=qa_upgrade</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: wiki.mageia.org
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">robert at capuchin.co.uk</A>
+
+
+Description of problem:
+
+The upgrade instructions suggest
+$ rpm -qa | grep kernel*latest (must display the verion of the package
+installed)
+
+with shell expansion that isn't going to work
+
+Version-Release number of selected component (if applicable):
+
+
+How reproducible:
+
+
+Steps to Reproduce:
+1.enter suggested command after upgrade
+2. you don't get any output
+3.
+
+suggest:
+$ rpm -qa | grep kernel | grep latest (must display the version of the package
+installed)
+
+
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
+</A></li>
+ <LI>Next message: <A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#674">[ date ]</a>
+ <a href="thread.html#674">[ thread ]</a>
+ <a href="subject.html#674">[ subject ]</a>
+ <a href="author.html#674">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000675.html b/zarb-ml/mageia-webteam/2011-April/000675.html
new file mode 100644
index 000000000..81d594f49
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000675.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 723] incorrect suggested command
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20723%5D%20incorrect%20suggested%20command&In-Reply-To=%3C20110408204639.9A6854276F%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000674.html">
+ <LINK REL="Next" HREF="000676.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 723] incorrect suggested command</H1>
+ <B>robert marshall</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20723%5D%20incorrect%20suggested%20command&In-Reply-To=%3C20110408204639.9A6854276F%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 723] incorrect suggested command">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 8 22:46:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A></li>
+ <LI>Next message: <A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#675">[ date ]</a>
+ <a href="thread.html#675">[ thread ]</a>
+ <a href="subject.html#675">[ subject ]</a>
+ <a href="author.html#675">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=723">https://bugs.mageia.org/show_bug.cgi?id=723</A>
+
+--- Comment #1 from robert marshall &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">robert at capuchin.co.uk</A>&gt; 2011-04-08 22:46:39 UTC ---
+sorry, the url is <A HREF="http://mageia.org/wiki/doku.php?id=qa_upgrade">http://mageia.org/wiki/doku.php?id=qa_upgrade</A>
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
+</A></li>
+ <LI>Next message: <A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#675">[ date ]</a>
+ <a href="thread.html#675">[ thread ]</a>
+ <a href="subject.html#675">[ subject ]</a>
+ <a href="author.html#675">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000676.html b/zarb-ml/mageia-webteam/2011-April/000676.html
new file mode 100644
index 000000000..d8e4a5838
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000676.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 723] incorrect suggested command
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20723%5D%20incorrect%20suggested%20command&In-Reply-To=%3C20110408205621.E0EA5427DB%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000675.html">
+ <LINK REL="Next" HREF="000677.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 723] incorrect suggested command</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20723%5D%20incorrect%20suggested%20command&In-Reply-To=%3C20110408205621.E0EA5427DB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 723] incorrect suggested command">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 8 22:56:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI>Next message: <A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#676">[ date ]</a>
+ <a href="thread.html#676">[ thread ]</a>
+ <a href="subject.html#676">[ subject ]</a>
+ <a href="author.html#676">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=723">https://bugs.mageia.org/show_bug.cgi?id=723</A>
+
+Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>
+
+--- Comment #2 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-04-08 22:56:22 UTC ---
+Yes, it should be &quot;rpm -qa | grep kernel.*latest&quot;.
+I updated the page. Thanks.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI>Next message: <A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#676">[ date ]</a>
+ <a href="thread.html#676">[ thread ]</a>
+ <a href="subject.html#676">[ subject ]</a>
+ <a href="author.html#676">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000677.html b/zarb-ml/mageia-webteam/2011-April/000677.html
new file mode 100644
index 000000000..8b9a98dde
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000677.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110408220003.050F242831%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000676.html">
+ <LINK REL="Next" HREF="000678.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110408220003.050F242831%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 9 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI>Next message: <A HREF="000678.html">[Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#677">[ date ]</a>
+ <a href="thread.html#677">[ thread ]</a>
+ <a href="subject.html#677">[ subject ]</a>
+ <a href="author.html#677">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
+</A></li>
+ <LI>Next message: <A HREF="000678.html">[Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#677">[ date ]</a>
+ <a href="thread.html#677">[ thread ]</a>
+ <a href="subject.html#677">[ subject ]</a>
+ <a href="author.html#677">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000678.html b/zarb-ml/mageia-webteam/2011-April/000678.html
new file mode 100644
index 000000000..c3bf4fd5c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000678.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20734%5D%20%5BNew%5D%20Text%20in%20bug%20submission%20page%0A%20suggests%20using%20the%20Core%20option%20-%20this%20option%20is%20not%20available%21&In-Reply-To=%3Cbug-734-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000677.html">
+ <LINK REL="Next" HREF="000681.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!</H1>
+ <B>robert marshall</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20734%5D%20%5BNew%5D%20Text%20in%20bug%20submission%20page%0A%20suggests%20using%20the%20Core%20option%20-%20this%20option%20is%20not%20available%21&In-Reply-To=%3Cbug-734-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 9 12:45:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#678">[ date ]</a>
+ <a href="thread.html#678">[ thread ]</a>
+ <a href="subject.html#678">[ subject ]</a>
+ <a href="author.html#678">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=734">https://bugs.mageia.org/show_bug.cgi?id=734</A>
+
+ Summary: Text in bug submission page suggests using the Core
+ option - this option is not available!
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ URL: <A HREF="https://bugs.mageia.org/enter_bug.cgi?product=Infrastr">https://bugs.mageia.org/enter_bug.cgi?product=Infrastr</A>
+ ucture&amp;format=guided
+ OS/Version: Linux
+ Status: NEW
+ Severity: minor
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">robert at capuchin.co.uk</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Description of problem:
+
+When you report a bug in bugzilla, you see the following text:
+
+'Core packages are those packages found in the main and contrib repositories,
+and Other packages are those found in non-free and commercial repositories; if
+you're unsure, choose Core.'
+
+However 'Core' is not an available option!
+
+
+How reproducible:
+
+Steps to Reproduce:
+1. visit the specified url
+2. look at the text beneath the combo box in the Component section
+3.
+
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#678">[ date ]</a>
+ <a href="thread.html#678">[ thread ]</a>
+ <a href="subject.html#678">[ subject ]</a>
+ <a href="author.html#678">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000679.html b/zarb-ml/mageia-webteam/2011-April/000679.html
new file mode 100644
index 000000000..921de39db
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000679.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20%5BNew%5D%20New%20user%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20keywords&In-Reply-To=%3Cbug-742-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000681.html">
+ <LINK REL="Next" HREF="000721.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords</H1>
+ <B>Fran&#195;&#167;ois Jaouen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20%5BNew%5D%20New%20user%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20keywords&In-Reply-To=%3Cbug-742-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 9 18:02:23 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI>Next message: <A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#679">[ date ]</a>
+ <a href="thread.html#679">[ thread ]</a>
+ <a href="subject.html#679">[ subject ]</a>
+ <a href="author.html#679">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+
+ Summary: New user form is difficult to understand if you don't
+ know LDAP keywords
+ Product: Websites
+ Version: trunk
+ Platform: i586
+ URL: <A HREF="https://identity.mageia.org/user">https://identity.mageia.org/user</A>
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: identity.mageia.org
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">farfouille64 at laposte.net</A>
+
+
+IMHO, summary is clear enough.
+
+Some suggestion :
+
+Full Name (cn)
+First Name (givenName)
+Last Name (sn)
+Preferred Language (preferredLanguage)
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI>Next message: <A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#679">[ date ]</a>
+ <a href="thread.html#679">[ thread ]</a>
+ <a href="subject.html#679">[ subject ]</a>
+ <a href="author.html#679">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000680.html b/zarb-ml/mageia-webteam/2011-April/000680.html
new file mode 100644
index 000000000..f33e6ef9e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000680.html
@@ -0,0 +1,127 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110409220002.B70C5428B0%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000724.html">
+ <LINK REL="Next" HREF="000682.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110409220002.B70C5428B0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 10 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#680">[ date ]</a>
+ <a href="thread.html#680">[ thread ]</a>
+ <a href="subject.html#680">[ subject ]</a>
+ <a href="author.html#680">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#680">[ date ]</a>
+ <a href="thread.html#680">[ thread ]</a>
+ <a href="subject.html#680">[ subject ]</a>
+ <a href="author.html#680">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000681.html b/zarb-ml/mageia-webteam/2011-April/000681.html
new file mode 100644
index 000000000..ac60fc269
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000681.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20734%5D%20Text%20in%20bug%20submission%20page%20suggests%0A%20using%20the%20Core%20option%20-%20this%20option%20is%20not%20available%21&In-Reply-To=%3C20110409225046.DA209428AB%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000678.html">
+ <LINK REL="Next" HREF="000679.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20734%5D%20Text%20in%20bug%20submission%20page%20suggests%0A%20using%20the%20Core%20option%20-%20this%20option%20is%20not%20available%21&In-Reply-To=%3C20110409225046.DA209428AB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 10 00:50:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000678.html">[Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI>Next message: <A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#681">[ date ]</a>
+ <a href="thread.html#681">[ thread ]</a>
+ <a href="subject.html#681">[ subject ]</a>
+ <a href="author.html#681">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=734">https://bugs.mageia.org/show_bug.cgi?id=734</A>
+
+Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #1 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-10 00:50:47 UTC ---
+Fixed in SVN, should take effect once the crontab updates the templates from
+SVN.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000678.html">[Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!
+</A></li>
+ <LI>Next message: <A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#681">[ date ]</a>
+ <a href="thread.html#681">[ thread ]</a>
+ <a href="subject.html#681">[ subject ]</a>
+ <a href="author.html#681">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000682.html b/zarb-ml/mageia-webteam/2011-April/000682.html
new file mode 100644
index 000000000..c8adee1eb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000682.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20767%5D%20%5BNew%5D%20Strange%20notice%20on%20the%20download%20page&In-Reply-To=%3Cbug-767-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000680.html">
+ <LINK REL="Next" HREF="000685.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 767] [New] Strange notice on the download page</H1>
+ <B>Egor Suldin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20767%5D%20%5BNew%5D%20Strange%20notice%20on%20the%20download%20page&In-Reply-To=%3Cbug-767-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 767] [New] Strange notice on the download page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 10 23:30:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#682">[ date ]</a>
+ <a href="thread.html#682">[ thread ]</a>
+ <a href="subject.html#682">[ subject ]</a>
+ <a href="author.html#682">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=767">https://bugs.mageia.org/show_bug.cgi?id=767</A>
+
+ Summary: Strange notice on the download page
+ Product: Websites
+ Version: trunk
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: www.mageia.org
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rd3tap at yandex.ru</A>
+
+
+When I open
+<A HREF="http://mageia.org/ru/downloads/dl.php?product=mageia-1-beta1-dvd-i586,">http://mageia.org/ru/downloads/dl.php?product=mageia-1-beta1-dvd-i586,</A> I get
+notice at the top of the page: &quot;Notice: geoip_country_code_by_name()
+[function.geoip-country-code-by-name]: Host &lt;My_IP&gt; not found in
+/home/projects/mageia/public_html/lib/Downloads.php on line 172&quot;.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#682">[ date ]</a>
+ <a href="thread.html#682">[ thread ]</a>
+ <a href="subject.html#682">[ subject ]</a>
+ <a href="author.html#682">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000683.html b/zarb-ml/mageia-webteam/2011-April/000683.html
new file mode 100644
index 000000000..70bb9e4de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000683.html
@@ -0,0 +1,128 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110410220002.8DC4B428CF%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000686.html">
+ <LINK REL="Next" HREF="000684.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110410220002.8DC4B428CF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 11 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#683">[ date ]</a>
+ <a href="thread.html#683">[ thread ]</a>
+ <a href="subject.html#683">[ subject ]</a>
+ <a href="author.html#683">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#683">[ date ]</a>
+ <a href="thread.html#683">[ thread ]</a>
+ <a href="subject.html#683">[ subject ]</a>
+ <a href="author.html#683">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000684.html b/zarb-ml/mageia-webteam/2011-April/000684.html
new file mode 100644
index 000000000..65d7bbe46
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000684.html
@@ -0,0 +1,128 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110411220003.5751842904%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000683.html">
+ <LINK REL="Next" HREF="000687.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110411220003.5751842904%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 12 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#684">[ date ]</a>
+ <a href="thread.html#684">[ thread ]</a>
+ <a href="subject.html#684">[ subject ]</a>
+ <a href="author.html#684">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#684">[ date ]</a>
+ <a href="thread.html#684">[ thread ]</a>
+ <a href="subject.html#684">[ subject ]</a>
+ <a href="author.html#684">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000685.html b/zarb-ml/mageia-webteam/2011-April/000685.html
new file mode 100644
index 000000000..d25e2cf08
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000685.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 767] Strange notice on the download page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20767%5D%20Strange%20notice%20on%20the%20download%20page&In-Reply-To=%3C20110412133812.D2EEA428D6%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000682.html">
+ <LINK REL="Next" HREF="000686.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 767] Strange notice on the download page</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20767%5D%20Strange%20notice%20on%20the%20download%20page&In-Reply-To=%3C20110412133812.D2EEA428D6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 767] Strange notice on the download page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 12 15:38:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#685">[ date ]</a>
+ <a href="thread.html#685">[ thread ]</a>
+ <a href="subject.html#685">[ subject ]</a>
+ <a href="author.html#685">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=767">https://bugs.mageia.org/show_bug.cgi?id=767</A>
+
+Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #1 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-12 15:38:11 UTC ---
+Thanks for the report, looking into it (at least to handle the error case).
+Which version of IP was &lt;My_IP&gt;? 4 or 6?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#685">[ date ]</a>
+ <a href="thread.html#685">[ thread ]</a>
+ <a href="subject.html#685">[ subject ]</a>
+ <a href="author.html#685">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000686.html b/zarb-ml/mageia-webteam/2011-April/000686.html
new file mode 100644
index 000000000..d131163d6
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000686.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 767] Strange notice on the download page
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20767%5D%20Strange%20notice%20on%20the%20download%20page&In-Reply-To=%3C20110412142957.F1DA2428DD%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000685.html">
+ <LINK REL="Next" HREF="000683.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 767] Strange notice on the download page</H1>
+ <B>Egor Suldin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20767%5D%20Strange%20notice%20on%20the%20download%20page&In-Reply-To=%3C20110412142957.F1DA2428DD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 767] Strange notice on the download page">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 12 16:29:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#686">[ date ]</a>
+ <a href="thread.html#686">[ thread ]</a>
+ <a href="subject.html#686">[ subject ]</a>
+ <a href="author.html#686">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=767">https://bugs.mageia.org/show_bug.cgi?id=767</A>
+
+--- Comment #2 from Egor Suldin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rd3tap at yandex.ru</A>&gt; 2011-04-12 16:29:55 UTC ---
+(In reply to comment #1)
+&gt;<i> Thanks for the report, looking into it (at least to handle the error case).
+</I>&gt;<i> Which version of IP was &lt;My_IP&gt;? 4 or 6?
+</I>
+IPv4
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
+</A></li>
+ <LI>Next message: <A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#686">[ date ]</a>
+ <a href="thread.html#686">[ thread ]</a>
+ <a href="subject.html#686">[ subject ]</a>
+ <a href="author.html#686">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000687.html b/zarb-ml/mageia-webteam/2011-April/000687.html
new file mode 100644
index 000000000..583226bc1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000687.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110412220002.861A142875%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000684.html">
+ <LINK REL="Next" HREF="000688.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110412220002.861A142875%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 13 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#687">[ date ]</a>
+ <a href="thread.html#687">[ thread ]</a>
+ <a href="subject.html#687">[ subject ]</a>
+ <a href="author.html#687">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#687">[ date ]</a>
+ <a href="thread.html#687">[ thread ]</a>
+ <a href="subject.html#687">[ subject ]</a>
+ <a href="author.html#687">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000688.html b/zarb-ml/mageia-webteam/2011-April/000688.html
new file mode 100644
index 000000000..be3651bda
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000688.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Team%20meeting%20-%20Wednesday%2C%20April%2013th%20-%20aka%20today&In-Reply-To=%3C201104131101.50955.oliver.bgr%40googlemail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000687.html">
+ <LINK REL="Next" HREF="000689.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today</H1>
+ <B>Oliver Burger</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Team%20meeting%20-%20Wednesday%2C%20April%2013th%20-%20aka%20today&In-Reply-To=%3C201104131101.50955.oliver.bgr%40googlemail.com%3E"
+ TITLE="[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today">oliver.bgr at googlemail.com
+ </A><BR>
+ <I>Wed Apr 13 11:01:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#688">[ date ]</a>
+ <a href="thread.html#688">[ thread ]</a>
+ <a href="subject.html#688">[ subject ]</a>
+ <a href="author.html#688">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi everyone,
+
+as usual the webteam meeting will take place today at 13.00 UTC.
+
+Topics:
+- wiki
+- maintdb
+- others
+
+Till later,
+
+Oliver
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#688">[ date ]</a>
+ <a href="thread.html#688">[ thread ]</a>
+ <a href="subject.html#688">[ subject ]</a>
+ <a href="author.html#688">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000689.html b/zarb-ml/mageia-webteam/2011-April/000689.html
new file mode 100644
index 000000000..3c92aa7d5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000689.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Installing maintdb on Mageia servers
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3C20110413115627.GR21938%40mars-attacks.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000688.html">
+ <LINK REL="Next" HREF="000690.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Installing maintdb on Mageia servers</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3C20110413115627.GR21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Installing maintdb on Mageia servers">boklm at mars-attacks.org
+ </A><BR>
+ <I>Wed Apr 13 13:56:27 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A></li>
+ <LI>Next message: <A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#689">[ date ]</a>
+ <a href="thread.html#689">[ thread ]</a>
+ <a href="subject.html#689">[ subject ]</a>
+ <a href="author.html#689">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hello,
+
+As we need to have a maintainers database soon, we need to start
+installing it on Mageia servers.
+
+So I have some questions about maintainers db :
+
+Is it ready to be installed on Mageia servers (which are currently
+running Mandriva 2010.1), at least for testing (even if it doesn't have
+all features yet) ?
+
+Is there some documentation about installing maintdb on Mandriva 2010.1 ?
+If not, is it possible to write a short documentation to help us install
+maintdb ?
+
+Thanks
+
+Nicolas
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
+</A></li>
+ <LI>Next message: <A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#689">[ date ]</a>
+ <a href="thread.html#689">[ thread ]</a>
+ <a href="subject.html#689">[ subject ]</a>
+ <a href="author.html#689">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000690.html b/zarb-ml/mageia-webteam/2011-April/000690.html
new file mode 100644
index 000000000..d1c56eac1
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000690.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Installing maintdb on Mageia servers
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3CBANLkTimjHJv_TtV7zyZGENcdOxZqrB3%2B1A%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000689.html">
+ <LINK REL="Next" HREF="000691.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Installing maintdb on Mageia servers</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3CBANLkTimjHJv_TtV7zyZGENcdOxZqrB3%2B1A%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Installing maintdb on Mageia servers">Kosmas at mach7x.com
+ </A><BR>
+ <I>Wed Apr 13 14:11:12 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#690">[ date ]</a>
+ <a href="thread.html#690">[ thread ]</a>
+ <a href="subject.html#690">[ subject ]</a>
+ <a href="author.html#690">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi Nicolas,
+
+I think it would be a good idea to install on the Mageia servers for
+testing.
+Is not finished, as I'm struggling for time at the moment, and have an
+imminent relocation to another country.
+
+The deployment is taken care from a capistrano recipe, so we would need to
+add the server details.
+After that we should be able to try and install it.
+
+Kosmas
+
+On 13 April 2011 12:56, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; wrote:
+
+&gt;<i> Hello,
+</I>&gt;<i>
+</I>&gt;<i> As we need to have a maintainers database soon, we need to start
+</I>&gt;<i> installing it on Mageia servers.
+</I>&gt;<i>
+</I>&gt;<i> So I have some questions about maintainers db :
+</I>&gt;<i>
+</I>&gt;<i> Is it ready to be installed on Mageia servers (which are currently
+</I>&gt;<i> running Mandriva 2010.1), at least for testing (even if it doesn't have
+</I>&gt;<i> all features yet) ?
+</I>&gt;<i>
+</I>&gt;<i> Is there some documentation about installing maintdb on Mandriva 2010.1 ?
+</I>&gt;<i> If not, is it possible to write a short documentation to help us install
+</I>&gt;<i> maintdb ?
+</I>&gt;<i>
+</I>&gt;<i> Thanks
+</I>&gt;<i>
+</I>&gt;<i> Nicolas
+</I>&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110413/4a58b749/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#690">[ date ]</a>
+ <a href="thread.html#690">[ thread ]</a>
+ <a href="subject.html#690">[ subject ]</a>
+ <a href="author.html#690">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000691.html b/zarb-ml/mageia-webteam/2011-April/000691.html
new file mode 100644
index 000000000..0443992f9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000691.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Installing maintdb on Mageia servers
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3C20110413124344.GS21938%40mars-attacks.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000690.html">
+ <LINK REL="Next" HREF="000712.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Installing maintdb on Mageia servers</H1>
+ <B>nicolas vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3C20110413124344.GS21938%40mars-attacks.org%3E"
+ TITLE="[Mageia-webteam] Installing maintdb on Mageia servers">boklm at mars-attacks.org
+ </A><BR>
+ <I>Wed Apr 13 14:43:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#691">[ date ]</a>
+ <a href="thread.html#691">[ thread ]</a>
+ <a href="subject.html#691">[ subject ]</a>
+ <a href="author.html#691">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Wed, 13 Apr 2011, Kosmas Chatzimichalis wrote:
+
+&gt;<i> Hi Nicolas,
+</I>&gt;<i>
+</I>&gt;<i> I think it would be a good idea to install on the Mageia servers for
+</I>&gt;<i> testing.
+</I>&gt;<i> Is not finished, as I'm struggling for time at the moment, and have an
+</I>&gt;<i> imminent relocation to another country.
+</I>&gt;<i>
+</I>&gt;<i> The deployment is taken care from a capistrano recipe, so we would need to
+</I>&gt;<i> add the server details.
+</I>&gt;<i> After that we should be able to try and install it.
+</I>
+Is it possible to deploy without using capistrano ?
+According to the description of the project, Capistrano is a tool to
+execute commands on remote machines via SSH. But we are already using
+puppet to deploy everything else on Mageia servers, so we should use it
+for maintdb too.
+
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#691">[ date ]</a>
+ <a href="thread.html#691">[ thread ]</a>
+ <a href="subject.html#691">[ subject ]</a>
+ <a href="author.html#691">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000692.html b/zarb-ml/mageia-webteam/2011-April/000692.html
new file mode 100644
index 000000000..e333179d4
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000692.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20marketing%20plan%20is%20on%20the%20way%2C%0A%09proposals%20and%20team%20reports%20needed&In-Reply-To=%3C201104132033.18448.marcello.anni%40alice.it%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000712.html">
+ <LINK REL="Next" HREF="000693.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20marketing%20plan%20is%20on%20the%20way%2C%0A%09proposals%20and%20team%20reports%20needed&In-Reply-To=%3C201104132033.18448.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed">marcello.anni at alice.it
+ </A><BR>
+ <I>Wed Apr 13 20:33:18 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#692">[ date ]</a>
+ <a href="thread.html#692">[ thread ]</a>
+ <a href="subject.html#692">[ subject ]</a>
+ <a href="author.html#692">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Hi,
+
+i'm working on a Marketing plan for Mageia in order to define a coherent growth
+of the project, both in the &quot;hard&quot; side and in the &quot;soft&quot; side of it.
+
+At this stage i need:
+
+- a report for each team
+
+* It should contain current manpower, level (and trend) of activities, current
+tasks, available infos and statistics.
+* if possibile it's better if made by the team leader (naturally he can share
+all the members toughts)
+* about &quot;sensitive data&quot;: is better to send an e-mail directely to my e-mail
+adress (this)
+
+- proposals to be added in the marketing plan
+
+They should contain ideas about:
+ * Vision (which needs mageia project should satisfy in a long-term
+horizont?)
+ * Mission (how can be satisfied these long-term needs in a mid-term
+horizont?)
+ * possible strategies (what can be done to satisfy these mid-term needs?)
+ * action plan (which aspects should be improved in a short term horizont?)
+ * threats and opportunities of the project
+
+
+Please, try to be short and precise. i'm waiting your inputs!
+
+
+cheers,
+Marcello
+______________________
+Mageia Marketing Team - <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-marketing at mageia.org</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#692">[ date ]</a>
+ <a href="thread.html#692">[ thread ]</a>
+ <a href="subject.html#692">[ subject ]</a>
+ <a href="author.html#692">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000693.html b/zarb-ml/mageia-webteam/2011-April/000693.html
new file mode 100644
index 000000000..d0b4060aa
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000693.html
@@ -0,0 +1,128 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-artwork%5D%20Mageia%20marketing%20plan%20is%20on%0A%20the%20way%2C%20proposals%20and%20team%20reports%20needed&In-Reply-To=%3CBANLkTi%3DOoHj32NGApEBRjk%2BgrBkkMMdV%2BA%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000692.html">
+ <LINK REL="Next" HREF="000694.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed</H1>
+ <B>Anne nicolas</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BMageia-artwork%5D%20Mageia%20marketing%20plan%20is%20on%0A%20the%20way%2C%20proposals%20and%20team%20reports%20needed&In-Reply-To=%3CBANLkTi%3DOoHj32NGApEBRjk%2BgrBkkMMdV%2BA%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed">ennael at mageia.org
+ </A><BR>
+ <I>Wed Apr 13 20:45:17 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI>Next message: <A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#693">[ date ]</a>
+ <a href="thread.html#693">[ thread ]</a>
+ <a href="subject.html#693">[ subject ]</a>
+ <a href="author.html#693">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>2011/4/13 Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt;:
+&gt;<i> Hi,
+</I>
+Hi
+
+Thanks for your enthousiasm. But before mailing all mailing-lists on
+earth you should not forget you are working in a community project.
+You cannot decide in one way such things. Please check first with
+marketing team, they are looking for volunteers to work with but in a
+collaborative way.
+
+
+Thanks for advance
+
+&gt;<i>
+</I>&gt;<i> i'm working on a Marketing plan for Mageia in order to define a coherent growth
+</I>&gt;<i> of the project, both in the &quot;hard&quot; &#160;side and in the &quot;soft&quot; side of it.
+</I>&gt;<i>
+</I>&gt;<i> At this stage i need:
+</I>&gt;<i>
+</I>&gt;<i> - a report for each team
+</I>&gt;<i>
+</I>&gt;<i> * It should contain current manpower, level (and trend) of activities, current
+</I>&gt;<i> tasks, available infos and statistics.
+</I>&gt;<i> * if possibile it's better if made by the team leader (naturally he can share
+</I>&gt;<i> all the members toughts)
+</I>&gt;<i> * about &quot;sensitive data&quot;: &#160;is better to send an e-mail directely to my e-mail
+</I>&gt;<i> adress (this)
+</I>&gt;<i>
+</I>&gt;<i> - proposals to be added in the marketing plan
+</I>&gt;<i>
+</I>&gt;<i> They should contain ideas about:
+</I>&gt;<i> &#160;* &#160;Vision (which needs mageia project should satisfy in a long-term
+</I>&gt;<i> horizont?)
+</I>&gt;<i> &#160;* &#160;Mission (how can be satisfied these long-term needs in a mid-term
+</I>&gt;<i> horizont?)
+</I>&gt;<i> &#160;* &#160;possible strategies (what can be done to satisfy these mid-term needs?)
+</I>&gt;<i> &#160;* &#160;action plan (which aspects should be improved in a short term horizont?)
+</I>&gt;<i> &#160;* &#160;threats and opportunities of the project
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Please, try to be short and precise. i'm waiting your inputs!
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> cheers,
+</I>&gt;<i> Marcello
+</I>&gt;<i> ______________________
+</I>&gt;<i> Mageia Marketing Team - <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-marketing at mageia.org</A>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-artwork mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-artwork at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-artwork">https://www.mageia.org/mailman/listinfo/mageia-artwork</A>
+</I>&gt;<i>
+</I>
+
+
+--
+Anne
+<A HREF="http://www.mageia.org">http://www.mageia.org</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI>Next message: <A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#693">[ date ]</a>
+ <a href="thread.html#693">[ thread ]</a>
+ <a href="subject.html#693">[ subject ]</a>
+ <a href="author.html#693">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000694.html b/zarb-ml/mageia-webteam/2011-April/000694.html
new file mode 100644
index 000000000..fdc44c68a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000694.html
@@ -0,0 +1,131 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110413220002.3BEED42882%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000693.html">
+ <LINK REL="Next" HREF="000695.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110413220002.3BEED42882%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI>Next message: <A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#694">[ date ]</a>
+ <a href="thread.html#694">[ thread ]</a>
+ <a href="subject.html#694">[ subject ]</a>
+ <a href="author.html#694">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+ Open German forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+ Fix forum locales redirections
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI>Next message: <A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#694">[ date ]</a>
+ <a href="thread.html#694">[ thread ]</a>
+ <a href="subject.html#694">[ subject ]</a>
+ <a href="author.html#694">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000695.html b/zarb-ml/mageia-webteam/2011-April/000695.html
new file mode 100644
index 000000000..9aafbbdc5
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000695.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20%5BNew%5D%20The%20timestamp%20in%20Bugzilla%20comments%0A%09is%20wrong&In-Reply-To=%3Cbug-813-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000694.html">
+ <LINK REL="Next" HREF="000698.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20%5BNew%5D%20The%20timestamp%20in%20Bugzilla%20comments%0A%09is%20wrong&In-Reply-To=%3Cbug-813-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 02:39:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#695">[ date ]</a>
+ <a href="thread.html#695">[ thread ]</a>
+ <a href="subject.html#695">[ subject ]</a>
+ <a href="author.html#695">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+ Summary: The timestamp in Bugzilla comments is wrong
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+See e.g. bug 808 comment 5. I submitted it at 02:35 CEST, but the comment
+timestamp says 04:35 CEST.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#695">[ date ]</a>
+ <a href="thread.html#695">[ thread ]</a>
+ <a href="subject.html#695">[ subject ]</a>
+ <a href="author.html#695">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000696.html b/zarb-ml/mageia-webteam/2011-April/000696.html
new file mode 100644
index 000000000..68d0122a3
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000696.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 320] Missing component for infrastructure
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20320%5D%20Missing%20component%20for%20infrastructure&In-Reply-To=%3C20110414130704.A8AAF428CC%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000806.html">
+ <LINK REL="Next" HREF="000697.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20320%5D%20Missing%20component%20for%20infrastructure&In-Reply-To=%3C20110414130704.A8AAF428CC%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 15:07:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#696">[ date ]</a>
+ <a href="thread.html#696">[ thread ]</a>
+ <a href="subject.html#696">[ subject ]</a>
+ <a href="author.html#696">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=320">https://bugs.mageia.org/show_bug.cgi?id=320</A>
+
+--- Comment #7 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-04-14 15:07:04 CEST ---
+I think we should start by adding the &quot;Others&quot; component now. And add other
+components as needed, when we see that many items would fit in that component.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#696">[ date ]</a>
+ <a href="thread.html#696">[ thread ]</a>
+ <a href="subject.html#696">[ subject ]</a>
+ <a href="author.html#696">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000697.html b/zarb-ml/mageia-webteam/2011-April/000697.html
new file mode 100644
index 000000000..2d76b563c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000697.html
@@ -0,0 +1,139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20marketing%20plan%20is%20on%20the%20way%2C%0A%09proposals%20and%20team%20reports%20needed&In-Reply-To=%3C201104141608.10677.marcello.anni%40alice.it%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000696.html">
+ <LINK REL="Next" HREF="000709.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Mageia%20marketing%20plan%20is%20on%20the%20way%2C%0A%09proposals%20and%20team%20reports%20needed&In-Reply-To=%3C201104141608.10677.marcello.anni%40alice.it%3E"
+ TITLE="[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed">marcello.anni at alice.it
+ </A><BR>
+ <I>Thu Apr 14 16:08:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#697">[ date ]</a>
+ <a href="thread.html#697">[ thread ]</a>
+ <a href="subject.html#697">[ subject ]</a>
+ <a href="author.html#697">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>&gt;<i> Hi,
+</I>&gt;<i>
+</I>&gt;<i> i'm working on a Marketing plan for Mageia in order to define a coherent
+</I>growth
+&gt;<i> of the project, both in the &quot;hard&quot; side and in the &quot;soft&quot; side of it.
+</I>&gt;<i>
+</I>&gt;<i> At this stage i need:
+</I>&gt;<i>
+</I>&gt;<i> - a report for each team
+</I>&gt;<i>
+</I>&gt;<i> * It should contain current manpower, level (and trend) of activities,
+</I>current
+&gt;<i> tasks, available infos and statistics.
+</I>&gt;<i> * if possibile it's better if made by the team leader (naturally he can
+</I>share
+&gt;<i> all the members toughts)
+</I>&gt;<i> * about &quot;sensitive data&quot;: is better to send an e-mail directely to my e-
+</I>mail
+&gt;<i> adress (this)
+</I>&gt;<i>
+</I>&gt;<i> - proposals to be added in the marketing plan
+</I>&gt;<i>
+</I>&gt;<i> They should contain ideas about:
+</I>&gt;<i> * Vision (which needs mageia project should satisfy in a long-term
+</I>&gt;<i> horizont?)
+</I>&gt;<i> * Mission (how can be satisfied these long-term needs in a mid-term
+</I>&gt;<i> horizont?)
+</I>&gt;<i> * possible strategies (what can be done to satisfy these mid-term needs?)
+</I>&gt;<i> * action plan (which aspects should be improved in a short term horizont?)
+</I>&gt;<i> * threats and opportunities of the project
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> Please, try to be short and precise. i'm waiting your inputs!
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> cheers,
+</I>&gt;<i> Marcello
+</I>&gt;<i> ______________________
+</I>&gt;<i> Mageia Marketing Team - <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-marketing at mageia.org</A>
+</I>
+Hi,
+
+Patricia set up in the marketing wiki page:
+
+<A HREF="http://www.mageia.org/wiki/doku.php?id=marketing">http://www.mageia.org/wiki/doku.php?id=marketing</A>
+
+an appropriate space to share your ideas and proposals, partecipating in the
+mageia marketing plan is as easy as logging in in the wiki : )
+
+here is it the link:
+
+<A HREF="http://www.mageia.org/wiki/doku.php?id=marketing#sandbox_for_developing_marketing_comms_ideas_texts_and_input">http://www.mageia.org/wiki/doku.php?id=marketing#sandbox_for_developing_marketing_comms_ideas_texts_and_input</A>
+
+
+cheers,
+Marcello
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#697">[ date ]</a>
+ <a href="thread.html#697">[ thread ]</a>
+ <a href="subject.html#697">[ subject ]</a>
+ <a href="author.html#697">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000698.html b/zarb-ml/mageia-webteam/2011-April/000698.html
new file mode 100644
index 000000000..f0a1c1a7d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000698.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414144816.B750F428BD%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000695.html">
+ <LINK REL="Next" HREF="000699.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414144816.B750F428BD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 16:48:16 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#698">[ date ]</a>
+ <a href="thread.html#698">[ thread ]</a>
+ <a href="subject.html#698">[ subject ]</a>
+ <a href="author.html#698">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>
+
+--- Comment #1 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-14 16:48:16 UTC ---
+Here, the server show &quot;02:35:55 UTC&quot;, which look correct to me :
+
+~ $ date
+jeu. avril 14 16:47:29 CEST 2011
+~ $ date -u
+jeu. avril 14 14:47:32 UTC 2011
+
+So maybe that's a issue with your setting ( or with mine ).
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#698">[ date ]</a>
+ <a href="thread.html#698">[ thread ]</a>
+ <a href="subject.html#698">[ subject ]</a>
+ <a href="author.html#698">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000699.html b/zarb-ml/mageia-webteam/2011-April/000699.html
new file mode 100644
index 000000000..15c817486
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000699.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414144951.E683342810%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000698.html">
+ <LINK REL="Next" HREF="000700.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414144951.E683342810%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 16:49:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#699">[ date ]</a>
+ <a href="thread.html#699">[ thread ]</a>
+ <a href="subject.html#699">[ subject ]</a>
+ <a href="author.html#699">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #2 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-14 16:49:52 UTC ---
+Michael Scherer 2011-04-14 18:48:16 CEST &lt;-- that's in two hours.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#699">[ date ]</a>
+ <a href="thread.html#699">[ thread ]</a>
+ <a href="subject.html#699">[ subject ]</a>
+ <a href="author.html#699">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000700.html b/zarb-ml/mageia-webteam/2011-April/000700.html
new file mode 100644
index 000000000..9237f8d23
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000700.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414145420.39C60428CF%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000699.html">
+ <LINK REL="Next" HREF="000701.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414145420.39C60428CF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 16:54:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#700">[ date ]</a>
+ <a href="thread.html#700">[ thread ]</a>
+ <a href="subject.html#700">[ subject ]</a>
+ <a href="author.html#700">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-14 16:54:19 UTC ---
+Ok so there is something funky going on.
+Does it happen :
+- when you are not logged ?
+- using a different browser ?
+
+I still do not see the issue using firefox and not being connected, yet I fail
+to see how this would changes something ( and yet, it does ).
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#700">[ date ]</a>
+ <a href="thread.html#700">[ thread ]</a>
+ <a href="subject.html#700">[ subject ]</a>
+ <a href="author.html#700">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000701.html b/zarb-ml/mageia-webteam/2011-April/000701.html
new file mode 100644
index 000000000..9a4668b51
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000701.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414145611.4311B428D0%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000700.html">
+ <LINK REL="Next" HREF="000702.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414145611.4311B428D0%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 16:56:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#701">[ date ]</a>
+ <a href="thread.html#701">[ thread ]</a>
+ <a href="subject.html#701">[ subject ]</a>
+ <a href="author.html#701">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #4 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-14 16:56:11 UTC ---
+If I'm logged out and viewing this bug, your last comment 3 has the timestamp
+2011-04-14 16:54:19 UTC. This is unrelated to my browser as Bugzilla sets it
+server-side.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#701">[ date ]</a>
+ <a href="thread.html#701">[ thread ]</a>
+ <a href="subject.html#701">[ subject ]</a>
+ <a href="author.html#701">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000702.html b/zarb-ml/mageia-webteam/2011-April/000702.html
new file mode 100644
index 000000000..b18d86d3a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000702.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414150225.310F2428DD%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000701.html">
+ <LINK REL="Next" HREF="000703.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Frank Griffin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414150225.310F2428DD%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 17:02:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#702">[ date ]</a>
+ <a href="thread.html#702">[ thread ]</a>
+ <a href="subject.html#702">[ subject ]</a>
+ <a href="author.html#702">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+Frank Griffin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ftg at roadrunner.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ftg at roadrunner.com</A>
+
+--- Comment #5 from Frank Griffin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ftg at roadrunner.com</A>&gt; 2011-04-14 17:02:25 UTC ---
+I see the same timestamp that Frederic does, and I'm in UTC-5:00 using firefox.
+ It is indeed coming from the server, as the page source shows:
+
+ &lt;span class=&quot;bz_comment_time&quot;&gt;
+ 2011-04-14 16:54:19 UTC
+ &lt;/span&gt;
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#702">[ date ]</a>
+ <a href="thread.html#702">[ thread ]</a>
+ <a href="subject.html#702">[ subject ]</a>
+ <a href="author.html#702">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000703.html b/zarb-ml/mageia-webteam/2011-April/000703.html
new file mode 100644
index 000000000..ddcabb04b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000703.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414150620.56452428DE%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000702.html">
+ <LINK REL="Next" HREF="000704.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414150620.56452428DE%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 17:06:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#703">[ date ]</a>
+ <a href="thread.html#703">[ thread ]</a>
+ <a href="subject.html#703">[ subject ]</a>
+ <a href="author.html#703">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #6 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-14 17:06:20 UTC ---
+Are Bugzilla and the DB server in the same timezone?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#703">[ date ]</a>
+ <a href="thread.html#703">[ thread ]</a>
+ <a href="subject.html#703">[ subject ]</a>
+ <a href="author.html#703">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000704.html b/zarb-ml/mageia-webteam/2011-April/000704.html
new file mode 100644
index 000000000..cc839c582
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000704.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414153815.6AA0F428EB%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000703.html">
+ <LINK REL="Next" HREF="000705.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414153815.6AA0F428EB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 17:38:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#704">[ date ]</a>
+ <a href="thread.html#704">[ thread ]</a>
+ <a href="subject.html#704">[ subject ]</a>
+ <a href="author.html#704">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #7 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-14 17:38:15 UTC ---
+Same server, likely same timezone. I can restart both but I would prefer not.
+
+The httpd server has less env vars thatn postgresql, yet there doesn't seems to
+have any issue related to timezone.
+
+So that's set server side, but we do not have the same result.
+
+So just to be clear, the issue is on the web page, or on mail sent on the ml ?
+( cause I have been looking at the web page, but maybe I misunderstood )
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#704">[ date ]</a>
+ <a href="thread.html#704">[ thread ]</a>
+ <a href="subject.html#704">[ subject ]</a>
+ <a href="author.html#704">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000705.html b/zarb-ml/mageia-webteam/2011-April/000705.html
new file mode 100644
index 000000000..fd50ea6b0
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000705.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414154330.2F9F5428EB%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000704.html">
+ <LINK REL="Next" HREF="000706.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414154330.2F9F5428EB%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 17:43:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#705">[ date ]</a>
+ <a href="thread.html#705">[ thread ]</a>
+ <a href="subject.html#705">[ subject ]</a>
+ <a href="author.html#705">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #8 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-14 17:43:30 UTC ---
+The issue is on the web page, yes. The Date: header in bugmails is correct.
+
+What's the output of: SELECT LOCALTIMESTAMP(0) in PostgreSQL?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#705">[ date ]</a>
+ <a href="thread.html#705">[ thread ]</a>
+ <a href="subject.html#705">[ subject ]</a>
+ <a href="author.html#705">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000706.html b/zarb-ml/mageia-webteam/2011-April/000706.html
new file mode 100644
index 000000000..fbf478c3a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000706.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414160121.2C5D3428F7%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000705.html">
+ <LINK REL="Next" HREF="000707.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414160121.2C5D3428F7%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 18:01:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#706">[ date ]</a>
+ <a href="thread.html#706">[ thread ]</a>
+ <a href="subject.html#706">[ subject ]</a>
+ <a href="author.html#706">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #9 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-14 18:01:19 UTC ---
+postgres=# SELECT LOCALTIMESTAMP(0);
+ timestamp
+---------------------
+ 2011-04-14 18:00:54
+(1 row)
+
+using admin account.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#706">[ date ]</a>
+ <a href="thread.html#706">[ thread ]</a>
+ <a href="subject.html#706">[ subject ]</a>
+ <a href="author.html#706">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000707.html b/zarb-ml/mageia-webteam/2011-April/000707.html
new file mode 100644
index 000000000..fbbf6d3fe
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000707.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414161157.2DC38428F6%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000706.html">
+ <LINK REL="Next" HREF="000708.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414161157.2DC38428F6%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 18:11:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#707">[ date ]</a>
+ <a href="thread.html#707">[ thread ]</a>
+ <a href="subject.html#707">[ subject ]</a>
+ <a href="author.html#707">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #10 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-14 18:11:54 UTC ---
+bugs=&gt; SELECT LOCALTIMESTAMP(0);
+ timestamp
+---------------------
+ 2011-04-14 18:11:24
+(1 row)
+
+using bugzilla account
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#707">[ date ]</a>
+ <a href="thread.html#707">[ thread ]</a>
+ <a href="subject.html#707">[ subject ]</a>
+ <a href="author.html#707">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000708.html b/zarb-ml/mageia-webteam/2011-April/000708.html
new file mode 100644
index 000000000..2a9de1c61
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000708.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414162003.7EBBA42903%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000707.html">
+ <LINK REL="Next" HREF="000751.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110414162003.7EBBA42903%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 18:20:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#708">[ date ]</a>
+ <a href="thread.html#708">[ thread ]</a>
+ <a href="subject.html#708">[ subject ]</a>
+ <a href="author.html#708">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #11 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-14 18:20:03 UTC ---
+Really weird. I will have to look at the source code to guess what's wrong.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#708">[ date ]</a>
+ <a href="thread.html#708">[ thread ]</a>
+ <a href="subject.html#708">[ subject ]</a>
+ <a href="author.html#708">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000709.html b/zarb-ml/mageia-webteam/2011-April/000709.html
new file mode 100644
index 000000000..0b0a360d7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000709.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20829%5D%20%5BNew%5D%20Do%20not%20send%20reminder%20every%20day%20per%0A%09default&In-Reply-To=%3Cbug-829-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000697.html">
+ <LINK REL="Next" HREF="000714.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20829%5D%20%5BNew%5D%20Do%20not%20send%20reminder%20every%20day%20per%0A%09default&In-Reply-To=%3Cbug-829-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Thu Apr 14 19:57:11 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI>Next message: <A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#709">[ date ]</a>
+ <a href="thread.html#709">[ thread ]</a>
+ <a href="subject.html#709">[ subject ]</a>
+ <a href="author.html#709">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=829">https://bugs.mageia.org/show_bug.cgi?id=829</A>
+
+ Summary: Do not send reminder every day per default
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Bugzilla send daily reminders to say &quot;here is bugs that you should look at&quot;.
+While this could be useful in some case ( but I personnaly tend to ignore the
+requests after some time ), I think that this is too much.
+A weekly reminder could be enough and I think that sending reminder on mailling
+list is not very helpful.
+
+So I propose that we disable this by default , people who want reminder can
+enable them.
+
+Reproducible:
+
+Steps to Reproduce:
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI>Next message: <A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#709">[ date ]</a>
+ <a href="thread.html#709">[ thread ]</a>
+ <a href="subject.html#709">[ subject ]</a>
+ <a href="author.html#709">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000710.html b/zarb-ml/mageia-webteam/2011-April/000710.html
new file mode 100644
index 000000000..9c4bdb035
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000710.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110414220003.5E32F40246%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000746.html">
+ <LINK REL="Next" HREF="000711.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110414220003.5E32F40246%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 15 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="000711.html">[Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#710">[ date ]</a>
+ <a href="thread.html#710">[ thread ]</a>
+ <a href="subject.html#710">[ subject ]</a>
+ <a href="author.html#710">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+ Open German forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+ Fix forum locales redirections
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="000711.html">[Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#710">[ date ]</a>
+ <a href="thread.html#710">[ thread ]</a>
+ <a href="subject.html#710">[ subject ]</a>
+ <a href="author.html#710">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000711.html b/zarb-ml/mageia-webteam/2011-April/000711.html
new file mode 100644
index 000000000..da79cb4bc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000711.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20831%5D%20%5BNew%5D%20Reporting%20bug%20doesn%27t%20open%20the%0A%20requested%20form%20in%20browser%20even%20if%20we%20are%20already%20logged%20into%20Bugzilla&In-Reply-To=%3Cbug-831-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000710.html">
+ <LINK REL="Next" HREF="000747.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla</H1>
+ <B>Johan Pirlouit</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20831%5D%20%5BNew%5D%20Reporting%20bug%20doesn%27t%20open%20the%0A%20requested%20form%20in%20browser%20even%20if%20we%20are%20already%20logged%20into%20Bugzilla&In-Reply-To=%3Cbug-831-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 15 00:38:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000747.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#711">[ date ]</a>
+ <a href="thread.html#711">[ thread ]</a>
+ <a href="subject.html#711">[ subject ]</a>
+ <a href="author.html#711">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=831">https://bugs.mageia.org/show_bug.cgi?id=831</A>
+
+ Summary: Reporting bug doesn't open the requested form in
+ browser even if we are already logged into Bugzilla
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">pindle at hotmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>
+
+
+Hi all,
+
+I don't know if it is really a bug with Bugzilla...
+
+I had a crash with RPMDrake and I wanted to report it following the Bug Report
+Tool indications. But when the browser window is open, I only get the default
+page &quot;First, you must pick a product on which to enter a bug&quot; though all
+informations about the bug are transmitted by URL and though I'm already logged
+into Bugzilla.
+
+If I read the text in the Bug Report Tool, I see &quot;To submit a bug report, click
+the Report button. This will open a browser window on Bugzilla where you will
+find a form to complete. The information displayed above [error report] will be
+transferred to this server.&quot;
+
+If I follow the steps from the page &quot;First, you must pick a product on which to
+enter a bug&quot;, I only get an empty form with nothing previously transmitted by
+URL from the Bug Report Tool...
+
+How to reproduce: follow the described steps in the Bug Report Tool.
+
+(If it is not a bug, sorry for this reporting ;-)
+
+Regards,
+Johan
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000747.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#711">[ date ]</a>
+ <a href="thread.html#711">[ thread ]</a>
+ <a href="subject.html#711">[ subject ]</a>
+ <a href="author.html#711">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000712.html b/zarb-ml/mageia-webteam/2011-April/000712.html
new file mode 100644
index 000000000..2b14a2d16
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000712.html
@@ -0,0 +1,113 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Installing maintdb on Mageia servers
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3CBANLkTikHBNME8Y2ANGMoSxMoY4kkShAChg%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000691.html">
+ <LINK REL="Next" HREF="000692.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Installing maintdb on Mageia servers</H1>
+ <B>Kosmas Chatzimichalis</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Installing%20maintdb%20on%20Mageia%20servers&In-Reply-To=%3CBANLkTikHBNME8Y2ANGMoSxMoY4kkShAChg%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Installing maintdb on Mageia servers">Kosmas at mach7x.com
+ </A><BR>
+ <I>Fri Apr 15 19:30:15 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#712">[ date ]</a>
+ <a href="thread.html#712">[ thread ]</a>
+ <a href="subject.html#712">[ subject ]</a>
+ <a href="author.html#712">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 13 April 2011 13:43, nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; wrote:
+
+&gt;<i> On Wed, 13 Apr 2011, Kosmas Chatzimichalis wrote:
+</I>&gt;<i>
+</I>&gt;<i> &gt; Hi Nicolas,
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; I think it would be a good idea to install on the Mageia servers for
+</I>&gt;<i> &gt; testing.
+</I>&gt;<i> &gt; Is not finished, as I'm struggling for time at the moment, and have an
+</I>&gt;<i> &gt; imminent relocation to another country.
+</I>&gt;<i> &gt;
+</I>&gt;<i> &gt; The deployment is taken care from a capistrano recipe, so we would need
+</I>&gt;<i> to
+</I>&gt;<i> &gt; add the server details.
+</I>&gt;<i> &gt; After that we should be able to try and install it.
+</I>&gt;<i>
+</I>&gt;<i> Is it possible to deploy without using capistrano ?
+</I>&gt;<i> According to the description of the project, Capistrano is a tool to
+</I>&gt;<i> execute commands on remote machines via SSH. But we are already using
+</I>&gt;<i> puppet to deploy everything else on Mageia servers, so we should use it
+</I>&gt;<i> for maintdb too.
+</I>&gt;<i>
+</I>
+Nicolas,
+
+I've seen puppet being used to deploy using capistrano recipes so that
+shouldn't be a problem.
+
+If that is a problem, we can maybe go through another way of deploying the
+application.
+
+The nice thing about using puppet + capistrano I believe that is easy to
+deploy new versions of the application.
+
+Or by doing a quick search how about that:
+<A HREF="http://railsmachine.com/articles/2009/03/18/moonshine-what-burns-blue-makes-your-blues-go-away/">http://railsmachine.com/articles/2009/03/18/moonshine-what-burns-blue-makes-your-blues-go-away/</A>
+
+&gt;<i>
+</I>&gt;<i> _______________________________________________
+</I>&gt;<i> Mageia-webteam mailing list
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
+</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
+</I>&gt;<i>
+</I>-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-webteam/attachments/20110415/e761a233/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
+</A></li>
+ <LI>Next message: <A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way, proposals and team reports needed
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#712">[ date ]</a>
+ <a href="thread.html#712">[ thread ]</a>
+ <a href="subject.html#712">[ subject ]</a>
+ <a href="author.html#712">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000713.html b/zarb-ml/mageia-webteam/2011-April/000713.html
new file mode 100644
index 000000000..e4f1e404a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000713.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 320] Missing component for infrastructure
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20320%5D%20Missing%20component%20for%20infrastructure&In-Reply-To=%3C20110415184359.9E04842943%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000778.html">
+ <LINK REL="Next" HREF="000715.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20320%5D%20Missing%20component%20for%20infrastructure&In-Reply-To=%3C20110415184359.9E04842943%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 15 20:43:59 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000778.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#713">[ date ]</a>
+ <a href="thread.html#713">[ thread ]</a>
+ <a href="subject.html#713">[ subject ]</a>
+ <a href="author.html#713">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=320">https://bugs.mageia.org/show_bug.cgi?id=320</A>
+
+--- Comment #8 from Ahmad Samir &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>&gt; 2011-04-15 20:43:59 UTC ---
+(In reply to comment #7)
+&gt;<i> I think we should start by adding the &quot;Others&quot; component now. And add other
+</I>&gt;<i> components as needed, when we see that many items would fit in that component.
+</I>
+That's looks optimal to me.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000778.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#713">[ date ]</a>
+ <a href="thread.html#713">[ thread ]</a>
+ <a href="subject.html#713">[ subject ]</a>
+ <a href="author.html#713">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000714.html b/zarb-ml/mageia-webteam/2011-April/000714.html
new file mode 100644
index 000000000..3b35df4ce
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000714.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 829] Do not send reminder every day per default
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20829%5D%20Do%20not%20send%20reminder%20every%20day%20per%0A%09default&In-Reply-To=%3C20110415194929.E356442947%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000709.html">
+ <LINK REL="Next" HREF="000746.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 829] Do not send reminder every day per default</H1>
+ <B>Marcello Anni</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20829%5D%20Do%20not%20send%20reminder%20every%20day%20per%0A%09default&In-Reply-To=%3C20110415194929.E356442947%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 829] Do not send reminder every day per default">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Fri Apr 15 21:49:29 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#714">[ date ]</a>
+ <a href="thread.html#714">[ thread ]</a>
+ <a href="subject.html#714">[ subject ]</a>
+ <a href="author.html#714">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=829">https://bugs.mageia.org/show_bug.cgi?id=829</A>
+
+Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>
+
+--- Comment #1 from Marcello Anni &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">marcello.anni at alice.it</A>&gt; 2011-04-15 21:49:29 UTC ---
+i think a weekly reminder can be ok, but the reminder in the ML is quite good
+as it allows to monitor all the bugs still ignored.
+
+
+cheers,
+Marcello
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#714">[ date ]</a>
+ <a href="thread.html#714">[ thread ]</a>
+ <a href="subject.html#714">[ subject ]</a>
+ <a href="author.html#714">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000715.html b/zarb-ml/mageia-webteam/2011-April/000715.html
new file mode 100644
index 000000000..1a234b33b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000715.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110415220003.0AA6442947%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000713.html">
+ <LINK REL="Next" HREF="000718.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110415220003.0AA6442947%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 16 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#715">[ date ]</a>
+ <a href="thread.html#715">[ thread ]</a>
+ <a href="subject.html#715">[ subject ]</a>
+ <a href="author.html#715">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+ Open German forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+ Fix forum locales redirections
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#715">[ date ]</a>
+ <a href="thread.html#715">[ thread ]</a>
+ <a href="subject.html#715">[ subject ]</a>
+ <a href="author.html#715">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000716.html b/zarb-ml/mageia-webteam/2011-April/000716.html
new file mode 100644
index 000000000..6cf057248
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000716.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 690] /ru/downloads 404
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20/ru/downloads%20404&In-Reply-To=%3C20110415220646.779EF42940%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000671.html">
+ <LINK REL="Next" HREF="000717.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 690] /ru/downloads 404</H1>
+ <B>AL13N</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20/ru/downloads%20404&In-Reply-To=%3C20110415220646.779EF42940%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 690] /ru/downloads 404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 16 00:06:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI>Next message: <A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#716">[ date ]</a>
+ <a href="thread.html#716">[ thread ]</a>
+ <a href="subject.html#716">[ subject ]</a>
+ <a href="author.html#716">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=690">https://bugs.mageia.org/show_bug.cgi?id=690</A>
+
+AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|RESOLVED |REOPENED
+ Resolution|FIXED |
+
+--- Comment #2 from AL13N &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">maarten.vanraes at gmail.com</A>&gt; 2011-04-16 00:06:46 UTC ---
+apparently now, there's a geoip issue:
+
+on <A HREF="http://www.mageia.org/ru/downloads/dl.php?product=mageia-1-beta1-dvd-i586">http://www.mageia.org/ru/downloads/dl.php?product=mageia-1-beta1-dvd-i586</A>
+
+
+Notice: geoip_country_code_by_name() [function.geoip-country-code-by-name]:
+Host 1.10.100.2 not found in
+/home/projects/mageia/public_html/lib/Downloads.php on line 172
+
+
+this means that:
+A) the user probably has a proxy
+B) for geoip, you should use the connected server (even if it IS a proxy) as
+endpoint; so probably using a different header would be beneficial imho.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI>Next message: <A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#716">[ date ]</a>
+ <a href="thread.html#716">[ thread ]</a>
+ <a href="subject.html#716">[ subject ]</a>
+ <a href="author.html#716">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000717.html b/zarb-ml/mageia-webteam/2011-April/000717.html
new file mode 100644
index 000000000..53a99d345
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000717.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 690] /ru/downloads 404
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20/ru/downloads%20404&In-Reply-To=%3C20110416082900.B4F7942942%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000716.html">
+ <LINK REL="Next" HREF="000670.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 690] /ru/downloads 404</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20690%5D%20/ru/downloads%20404&In-Reply-To=%3C20110416082900.B4F7942942%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 690] /ru/downloads 404">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sat Apr 16 10:29:00 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI>Next message: <A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#717">[ date ]</a>
+ <a href="thread.html#717">[ thread ]</a>
+ <a href="subject.html#717">[ subject ]</a>
+ <a href="author.html#717">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=690">https://bugs.mageia.org/show_bug.cgi?id=690</A>
+
+Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|REOPENED |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-16 10:29:00 UTC ---
+That's a separate issue, see bug 767.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
+</A></li>
+ <LI>Next message: <A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#717">[ date ]</a>
+ <a href="thread.html#717">[ thread ]</a>
+ <a href="subject.html#717">[ subject ]</a>
+ <a href="author.html#717">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000718.html b/zarb-ml/mageia-webteam/2011-April/000718.html
new file mode 100644
index 000000000..ae5c8540d
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000718.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110416220003.C87C24293E%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000715.html">
+ <LINK REL="Next" HREF="000719.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110416220003.C87C24293E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 17 00:00:03 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#718">[ date ]</a>
+ <a href="thread.html#718">[ thread ]</a>
+ <a href="subject.html#718">[ subject ]</a>
+ <a href="author.html#718">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+ Open German forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+ Fix forum locales redirections
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+ New user form is difficult to understand if you don't know LDAP keywords
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#718">[ date ]</a>
+ <a href="thread.html#718">[ thread ]</a>
+ <a href="subject.html#718">[ subject ]</a>
+ <a href="author.html#718">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000719.html b/zarb-ml/mageia-webteam/2011-April/000719.html
new file mode 100644
index 000000000..af23817b9
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000719.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 320] Missing component for infrastructure
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20320%5D%20Missing%20component%20for%20infrastructure&In-Reply-To=%3C20110417162822.E55B742924%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000718.html">
+ <LINK REL="Next" HREF="000720.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 320] Missing component for infrastructure</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20320%5D%20Missing%20component%20for%20infrastructure&In-Reply-To=%3C20110417162822.E55B742924%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 320] Missing component for infrastructure">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Sun Apr 17 18:28:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#719">[ date ]</a>
+ <a href="thread.html#719">[ thread ]</a>
+ <a href="subject.html#719">[ subject ]</a>
+ <a href="author.html#719">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=320">https://bugs.mageia.org/show_bug.cgi?id=320</A>
+
+--- Comment #9 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-04-17 18:28:22 UTC ---
+Ok, I have added the &quot;Others&quot; component.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#719">[ date ]</a>
+ <a href="thread.html#719">[ thread ]</a>
+ <a href="subject.html#719">[ subject ]</a>
+ <a href="author.html#719">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000720.html b/zarb-ml/mageia-webteam/2011-April/000720.html
new file mode 100644
index 000000000..f0bbf050c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000720.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110417220004.1BA0342958%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000719.html">
+ <LINK REL="Next" HREF="000725.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110417220004.1BA0342958%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#720">[ date ]</a>
+ <a href="thread.html#720">[ thread ]</a>
+ <a href="subject.html#720">[ subject ]</a>
+ <a href="author.html#720">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+ Open German forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+ Fix forum locales redirections
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+ New user form is difficult to understand if you don't know LDAP keywords
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
+</A></li>
+ <LI>Next message: <A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#720">[ date ]</a>
+ <a href="thread.html#720">[ thread ]</a>
+ <a href="subject.html#720">[ subject ]</a>
+ <a href="author.html#720">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000721.html b/zarb-ml/mageia-webteam/2011-April/000721.html
new file mode 100644
index 000000000..fc280734f
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000721.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418061849.2181842952%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000679.html">
+ <LINK REL="Next" HREF="000722.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes</H1>
+ <B>Buchan Milne</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418061849.2181842952%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 08:18:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A></li>
+ <LI>Next message: <A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#721">[ date ]</a>
+ <a href="thread.html#721">[ thread ]</a>
+ <a href="subject.html#721">[ subject ]</a>
+ <a href="author.html#721">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+
+Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Summary|New user form is difficult |User details form is
+ |to understand if you don't |difficult to understand if
+ |know LDAP keywords |you don't know LDAP
+ | |attributes
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>
+
+--- Comment #1 from Buchan Milne &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">bgmilne at mageia.org</A>&gt; 2011-04-18 08:18:47 UTC ---
+I assume you actually mean the form where a user can edit their details after
+they have completed registration (<A HREF="https://identity.mageia.org/user">https://identity.mageia.org/user</A>), not the
+registration form itself (<A HREF="https://identity.mageia.org/register">https://identity.mageia.org/register</A>).
+
+I have tried to make this interface relatively generic (as I have a few
+non-Mageia use cases for this software). For example, we just use a list of
+attributes to display (which is configurable in the config file).
+
+I would prefer not to go and write a more &quot;static&quot; list with different names.
+
+The first option I considered was to use the attribute description as a
+mouseover, but then you have descriptions like this:
+
+attributetype ( 2.5.4.42 NAME ( 'givenName' 'gn' )
+ DESC 'RFC2256: first name(s) for which the entity is known by'
+ SUP name )
+
+The other option would be to (ab)use the i18n support, make all the attribute
+names localised, and provide &quot;translations&quot; for the attribute names.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
+</A></li>
+ <LI>Next message: <A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#721">[ date ]</a>
+ <a href="thread.html#721">[ thread ]</a>
+ <a href="subject.html#721">[ subject ]</a>
+ <a href="author.html#721">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000722.html b/zarb-ml/mageia-webteam/2011-April/000722.html
new file mode 100644
index 000000000..12c321abb
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000722.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418074637.81EB442952%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000721.html">
+ <LINK REL="Next" HREF="000723.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes</H1>
+ <B>Fran&#195;&#167;ois Jaouen</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418074637.81EB442952%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 09:46:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#722">[ date ]</a>
+ <a href="thread.html#722">[ thread ]</a>
+ <a href="subject.html#722">[ subject ]</a>
+ <a href="author.html#722">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+
+--- Comment #2 from Fran&#231;ois Jaouen &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">farfouille64 at laposte.net</A>&gt; 2011-04-18 09:46:34 UTC ---
+Your assumption is right ; it is the form that's popup _after_ a new user
+registers to the mageia forum and each time someone logs in.
+
+I understand the _technical_ reasons for the current state of the form but
+don't forget that this form is used by average users just to register to the
+forum and they shouldn't be scared by a hardly understandable form. We don't
+want them to think &quot;Mageia is for geeks, not for me&quot;.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#722">[ date ]</a>
+ <a href="thread.html#722">[ thread ]</a>
+ <a href="subject.html#722">[ subject ]</a>
+ <a href="author.html#722">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000723.html b/zarb-ml/mageia-webteam/2011-April/000723.html
new file mode 100644
index 000000000..d667aec04
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000723.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418084930.3829C42955%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000722.html">
+ <LINK REL="Next" HREF="000724.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes</H1>
+ <B>Romain d'Alverny</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418084930.3829C42955%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 10:49:30 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#723">[ date ]</a>
+ <a href="thread.html#723">[ thread ]</a>
+ <a href="subject.html#723">[ subject ]</a>
+ <a href="author.html#723">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+
+Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>
+
+--- Comment #3 from Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rdalverny at gmail.com</A>&gt; 2011-04-18 10:49:29 CEST ---
+(In reply to comment #1)
+&gt;<i> I would prefer not to go and write a more &quot;static&quot; list with different names.
+</I>
+Well, I for one would prefer to do so, but in a separate controller and view,
+to at least keep the generic one available, just in case. But again, I'm not so
+confortable yet with Catalyst.
+
+Making the form more humane and static is not a bad thing, provided it is done
+right - and it's not likely to be too specific so far - even though we would
+need to make it really specific later on.
+
+&gt;<i> The other option would be to (ab)use the i18n support, make all the attribute
+</I>&gt;<i> names localised, and provide &quot;translations&quot; for the attribute names.
+</I>
+That was my first option as well, to at least keep the generic list; but I was
+not so sure how/where to code this into the app.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#723">[ date ]</a>
+ <a href="thread.html#723">[ thread ]</a>
+ <a href="subject.html#723">[ subject ]</a>
+ <a href="author.html#723">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000724.html b/zarb-ml/mageia-webteam/2011-April/000724.html
new file mode 100644
index 000000000..8461ec39b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000724.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418091421.B2B9F42957%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000723.html">
+ <LINK REL="Next" HREF="000680.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20742%5D%20User%20details%20form%20is%20difficult%20to%0A%20understand%20if%20you%20don%27t%20know%20LDAP%20attributes&In-Reply-To=%3C20110418091421.B2B9F42957%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 11:14:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#724">[ date ]</a>
+ <a href="thread.html#724">[ thread ]</a>
+ <a href="subject.html#724">[ subject ]</a>
+ <a href="author.html#724">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=742">https://bugs.mageia.org/show_bug.cgi?id=742</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>
+
+--- Comment #4 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-18 11:14:21 UTC ---
+I would also favor a separate controller/view for that use case, this would be
+much more flexible for designing the form.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
+</A></li>
+ <LI>Next message: <A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#724">[ date ]</a>
+ <a href="thread.html#724">[ thread ]</a>
+ <a href="subject.html#724">[ subject ]</a>
+ <a href="author.html#724">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000725.html b/zarb-ml/mageia-webteam/2011-April/000725.html
new file mode 100644
index 000000000..4e755c477
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000725.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20879%5D%20%5BNew%5D%20Test%20bug%20to%20check%20if%20bug%20%23586%20is%0A%09corrected.&In-Reply-To=%3Cbug-879-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000720.html">
+ <LINK REL="Next" HREF="000727.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20879%5D%20%5BNew%5D%20Test%20bug%20to%20check%20if%20bug%20%23586%20is%0A%09corrected.&In-Reply-To=%3Cbug-879-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 19:27:56 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#725">[ date ]</a>
+ <a href="thread.html#725">[ thread ]</a>
+ <a href="subject.html#725">[ subject ]</a>
+ <a href="author.html#725">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=879">https://bugs.mageia.org/show_bug.cgi?id=879</A>
+
+ Summary: Test bug to check if bug #586 is corrected.
+ Product: Infrastructure
+ Version: unspecified
+ Platform: i586
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+
+Test bug to check if bug #586 is corrected.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#725">[ date ]</a>
+ <a href="thread.html#725">[ thread ]</a>
+ <a href="subject.html#725">[ subject ]</a>
+ <a href="author.html#725">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000726.html b/zarb-ml/mageia-webteam/2011-April/000726.html
new file mode 100644
index 000000000..8e5437d58
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000726.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20586%5D%20Remove%20the%20fields%20Reproducible%3A%20%26%20Steps%0A%20to%20Reproduce%3A%20from%20the%20bottom%20of%20any%20reported%20bugs&In-Reply-To=%3C20110418173102.1E71D42962%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000727.html">
+ <LINK REL="Next" HREF="000728.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20586%5D%20Remove%20the%20fields%20Reproducible%3A%20%26%20Steps%0A%20to%20Reproduce%3A%20from%20the%20bottom%20of%20any%20reported%20bugs&In-Reply-To=%3C20110418173102.1E71D42962%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 19:31:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI>Next message: <A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#726">[ date ]</a>
+ <a href="thread.html#726">[ thread ]</a>
+ <a href="subject.html#726">[ subject ]</a>
+ <a href="author.html#726">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=586">https://bugs.mageia.org/show_bug.cgi?id=586</A>
+
+Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|REOPENED |RESOLVED
+ Resolution| |FIXED
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>
+
+--- Comment #6 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-04-18 19:31:01 UTC ---
+I made this change in the templates :
+<A HREF="http://svnweb.mageia.org/web/templates/bugzilla/trunk/bug/create/comment-guided.txt.tmpl?r1=239&amp;r2=377">http://svnweb.mageia.org/web/templates/bugzilla/trunk/bug/create/comment-guided.txt.tmpl?r1=239&amp;r2=377</A>
+
+And now after testing with bug #879 it seems to be fixed.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI>Next message: <A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#726">[ date ]</a>
+ <a href="thread.html#726">[ thread ]</a>
+ <a href="subject.html#726">[ subject ]</a>
+ <a href="author.html#726">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000727.html b/zarb-ml/mageia-webteam/2011-April/000727.html
new file mode 100644
index 000000000..e4a0d27d8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000727.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20879%5D%20Test%20bug%20to%20check%20if%20bug%20%23586%20is%0A%09corrected.&In-Reply-To=%3C20110418173220.B3E0942961%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000725.html">
+ <LINK REL="Next" HREF="000726.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20879%5D%20Test%20bug%20to%20check%20if%20bug%20%23586%20is%0A%09corrected.&In-Reply-To=%3C20110418173220.B3E0942961%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is corrected.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Mon Apr 18 19:32:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI>Next message: <A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#727">[ date ]</a>
+ <a href="thread.html#727">[ thread ]</a>
+ <a href="subject.html#727">[ subject ]</a>
+ <a href="author.html#727">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=879">https://bugs.mageia.org/show_bug.cgi?id=879</A>
+
+Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |FIXED
+
+--- Comment #1 from Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; 2011-04-18 19:32:20 UTC ---
+It seems to be fixed.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is corrected.
+</A></li>
+ <LI>Next message: <A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#727">[ date ]</a>
+ <a href="thread.html#727">[ thread ]</a>
+ <a href="subject.html#727">[ subject ]</a>
+ <a href="author.html#727">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000728.html b/zarb-ml/mageia-webteam/2011-April/000728.html
new file mode 100644
index 000000000..d3d46beb8
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000728.html
@@ -0,0 +1,131 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110418220004.11D6342985%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000726.html">
+ <LINK REL="Next" HREF="000735.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110418220004.11D6342985%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 00:00:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A></li>
+ <LI>Next message: <A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#728">[ date ]</a>
+ <a href="thread.html#728">[ thread ]</a>
+ <a href="subject.html#728">[ subject ]</a>
+ <a href="author.html#728">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+ Open German forum
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+ Fix forum locales redirections
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
+</A></li>
+ <LI>Next message: <A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#728">[ date ]</a>
+ <a href="thread.html#728">[ thread ]</a>
+ <a href="subject.html#728">[ subject ]</a>
+ <a href="author.html#728">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000729.html b/zarb-ml/mageia-webteam/2011-April/000729.html
new file mode 100644
index 000000000..548cf38f7
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000729.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Questions about the forum - Part II
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTinuyRWLttKtactSG8TyhuMiJR7fNQ%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000663.html">
+ <LINK REL="Next" HREF="000658.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Questions about the forum - Part II</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Questions%20about%20the%20forum%20-%20Part%20II&In-Reply-To=%3CBANLkTinuyRWLttKtactSG8TyhuMiJR7fNQ%40mail.gmail.com%3E"
+ TITLE="[Mageia-webteam] Questions about the forum - Part II">ahmadsamir3891 at gmail.com
+ </A><BR>
+ <I>Tue Apr 19 00:52:44 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#729">[ date ]</a>
+ <a href="thread.html#729">[ thread ]</a>
+ <a href="subject.html#729">[ subject ]</a>
+ <a href="author.html#729">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 7 April 2011 15:35, Wolfgang Bornath &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">molch.b at googlemail.com</A>&gt; wrote:
+&gt;<i> 2011/4/7 nicolas vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt;:
+</I>&gt;&gt;<i> On Thu, 07 Apr 2011, Ma&#226;t wrote:
+</I>&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;&gt;<i> As you said there are moderators and special groups which are NOT moderators... special groups *could* be moderators or have extended rights on sections (which are called forums in phpbb3 jargon)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> It seems there are a lot of groups that are duplicate of ldap groups
+</I>&gt;&gt;<i> (packagers, sysadmin, translators, founders, bug hunters). As ldap
+</I>&gt;&gt;<i> cannot be used in phpbb for this, it means groups will have to be
+</I>&gt;&gt;<i> manually synchronised, which is a lot of work.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> So I think an option would be to remove those groups, as they are not
+</I>&gt;&gt;<i> really necessary, and only use moderator groups.
+</I>&gt;<i>
+</I>&gt;<i> This would match my approach, yes.
+</I>&gt;<i> But as for the relation to LDAP - it is not necessary. The groups in
+</I>&gt;<i> the forum were set up inside the forum and will be &quot;filled&quot; with
+</I>&gt;<i> people inside the froum group management. LDAP is not concerned with
+</I>&gt;<i> matters inside the forum, only for authentification (login).
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> wobo
+</I>
+boklm's point is, you have to fill/maintain those groups manually in
+phpbb, that's a lot of work for little gain, IMHO.
+
+You need forum moderators, and that's it.
+
+--
+Ahmad Samir
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI>Next message: <A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#729">[ date ]</a>
+ <a href="thread.html#729">[ thread ]</a>
+ <a href="subject.html#729">[ subject ]</a>
+ <a href="author.html#729">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000730.html b/zarb-ml/mageia-webteam/2011-April/000730.html
new file mode 100644
index 000000000..74a42390c
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000730.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 656] Fix forum locales redirections
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110419095650.D25414292D%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000645.html">
+ <LINK REL="Next" HREF="000733.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] Fix forum locales redirections</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110419095650.D25414292D%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 656] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 11:56:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#730">[ date ]</a>
+ <a href="thread.html#730">[ thread ]</a>
+ <a href="subject.html#730">[ subject ]</a>
+ <a href="author.html#730">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>
+ Depends on| |655
+
+--- Comment #1 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-19 11:56:50 UTC ---
+I am looking on preparing puppet stuff for locale redirection
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#730">[ date ]</a>
+ <a href="thread.html#730">[ thread ]</a>
+ <a href="subject.html#730">[ subject ]</a>
+ <a href="author.html#730">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000731.html b/zarb-ml/mageia-webteam/2011-April/000731.html
new file mode 100644
index 000000000..2b854b630
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000731.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 655] Open German forum
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20655%5D%20Open%20German%20forum&In-Reply-To=%3C20110419095651.7A5DA42966%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000644.html">
+ <LINK REL="Next" HREF="000732.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 655] Open German forum</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20655%5D%20Open%20German%20forum&In-Reply-To=%3C20110419095651.7A5DA42966%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 655] Open German forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 11:56:51 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A></li>
+ <LI>Next message: <A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#731">[ date ]</a>
+ <a href="thread.html#731">[ thread ]</a>
+ <a href="subject.html#731">[ subject ]</a>
+ <a href="author.html#731">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Blocks| |656
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
+</A></li>
+ <LI>Next message: <A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#731">[ date ]</a>
+ <a href="thread.html#731">[ thread ]</a>
+ <a href="subject.html#731">[ subject ]</a>
+ <a href="author.html#731">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000732.html b/zarb-ml/mageia-webteam/2011-April/000732.html
new file mode 100644
index 000000000..1223fa7dc
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000732.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 655] Open German forum
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20655%5D%20Open%20German%20forum&In-Reply-To=%3C20110419123220.866AC42918%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000731.html">
+ <LINK REL="Next" HREF="000645.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 655] Open German forum</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20655%5D%20Open%20German%20forum&In-Reply-To=%3C20110419123220.866AC42918%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 655] Open German forum">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 14:32:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI>Next message: <A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#732">[ date ]</a>
+ <a href="thread.html#732">[ thread ]</a>
+ <a href="subject.html#732">[ subject ]</a>
+ <a href="author.html#732">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Status|NEW |RESOLVED
+ Resolution| |DUPLICATE
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>
+
+--- Comment #1 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-19 14:32:20 CEST ---
+While technically, this one is the original bug and the other the duplicate, I
+only seen the 2nd one and commented there, so I marked this one as duplicate.
+
+*** This bug has been marked as a duplicate of bug 860 ***
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
+</A></li>
+ <LI>Next message: <A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#732">[ date ]</a>
+ <a href="thread.html#732">[ thread ]</a>
+ <a href="subject.html#732">[ subject ]</a>
+ <a href="author.html#732">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000733.html b/zarb-ml/mageia-webteam/2011-April/000733.html
new file mode 100644
index 000000000..2874bdabf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000733.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 656] Fix forum locales redirections
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110419123221.3396642918%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000730.html">
+ <LINK REL="Next" HREF="000734.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] Fix forum locales redirections</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110419123221.3396642918%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 656] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 14:32:21 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#733">[ date ]</a>
+ <a href="thread.html#733">[ thread ]</a>
+ <a href="subject.html#733">[ subject ]</a>
+ <a href="author.html#733">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+
+Bug 656 depends on bug 655, which changed state.
+
+Bug 655 Summary: Open German forum
+<A HREF="https://bugs.mageia.org/show_bug.cgi?id=655">https://bugs.mageia.org/show_bug.cgi?id=655</A>
+
+ What |Old Value |New Value
+----------------------------------------------------------------------------
+ Resolution| |DUPLICATE
+ Status|NEW |RESOLVED
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#733">[ date ]</a>
+ <a href="thread.html#733">[ thread ]</a>
+ <a href="subject.html#733">[ subject ]</a>
+ <a href="author.html#733">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000734.html b/zarb-ml/mageia-webteam/2011-April/000734.html
new file mode 100644
index 000000000..ae395e4ee
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000734.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 656] Fix forum locales redirections
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110419123237.EA310428C5%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000733.html">
+ <LINK REL="Next" HREF="000646.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 656] Fix forum locales redirections</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20656%5D%20Fix%20forum%20locales%20redirections&In-Reply-To=%3C20110419123237.EA310428C5%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 656] Fix forum locales redirections">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 14:32:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#734">[ date ]</a>
+ <a href="thread.html#734">[ thread ]</a>
+ <a href="subject.html#734">[ subject ]</a>
+ <a href="author.html#734">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=656">https://bugs.mageia.org/show_bug.cgi?id=656</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ Depends on| |860
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are the assignee for the bug.
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
+</A></li>
+ <LI>Next message: <A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#734">[ date ]</a>
+ <a href="thread.html#734">[ thread ]</a>
+ <a href="subject.html#734">[ subject ]</a>
+ <a href="author.html#734">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000735.html b/zarb-ml/mageia-webteam/2011-April/000735.html
new file mode 100644
index 000000000..8370e8b70
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000735.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20%5BNew%5D%20Synchronize%20bugzilla%20groups%20with%0A%09ldap%20groups&In-Reply-To=%3Cbug-899-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000728.html">
+ <LINK REL="Next" HREF="000736.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20%5BNew%5D%20Synchronize%20bugzilla%20groups%20with%0A%09ldap%20groups&In-Reply-To=%3Cbug-899-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 23:39:06 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#735">[ date ]</a>
+ <a href="thread.html#735">[ thread ]</a>
+ <a href="subject.html#735">[ subject ]</a>
+ <a href="author.html#735">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+ Summary: Synchronize bugzilla groups with ldap groups
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: enhancement
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+
+Bugzilla use some groups to manage users permissions. However users currently
+need to be added manually to the groups.
+It would be nice to be able to synchronize automatically bugzilla groups with
+ldap groups.
+
+Anybody has an idea if/how it would be possible to do that ?
+
+It would be used for the sysadmin ldap group (to make them bugzilla admin), and
+secteam ldap group (to allow access to private bugs).
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#735">[ date ]</a>
+ <a href="thread.html#735">[ thread ]</a>
+ <a href="subject.html#735">[ subject ]</a>
+ <a href="author.html#735">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000736.html b/zarb-ml/mageia-webteam/2011-April/000736.html
new file mode 100644
index 000000000..d7958d811
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000736.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419214305.0C11242966%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000735.html">
+ <LINK REL="Next" HREF="000738.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Nicolas Vigier</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419214305.0C11242966%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Tue Apr 19 23:43:05 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#736">[ date ]</a>
+ <a href="thread.html#736">[ thread ]</a>
+ <a href="subject.html#736">[ subject ]</a>
+ <a href="author.html#736">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+Nicolas Vigier &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">boklm at mars-attacks.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+ Blocks| |859
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#736">[ date ]</a>
+ <a href="thread.html#736">[ thread ]</a>
+ <a href="subject.html#736">[ subject ]</a>
+ <a href="author.html#736">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000737.html b/zarb-ml/mageia-webteam/2011-April/000737.html
new file mode 100644
index 000000000..a93536171
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000737.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] Your Bugzilla bug list needs attention.
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110419220002.7B16B42972%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000760.html">
+ <LINK REL="Next" HREF="000752.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] Your Bugzilla bug list needs attention.</H1>
+ <B>bugzilla-daemon at mageia.org</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Your%20Bugzilla%20bug%20list%20needs%20attention.&In-Reply-To=%3C20110419220002.7B16B42972%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] Your Bugzilla bug list needs attention.">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 00:00:02 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#737">[ date ]</a>
+ <a href="thread.html#737">[ thread ]</a>
+ <a href="subject.html#737">[ subject ]</a>
+ <a href="author.html#737">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>[This e-mail has been automatically generated.]
+
+You have one or more bugs assigned to you in the Bugzilla bug tracking system (<A HREF="https://bugs.mageia.org/">https://bugs.mageia.org/</A>) that require
+attention.
+
+All of these bugs are in the NEW or REOPENED state, and have not been
+touched in 7 days or more.
+You need to take a look at them, and decide on an initial action.
+
+Generally, this means one of three things:
+
+(1) You decide this bug is really quick to deal with (like, it's INVALID),
+ and so you get rid of it immediately.
+(2) You decide the bug doesn't belong to you, and you reassign it to
+ someone else. (Hint: if you don't know who to reassign it to, make
+ sure that the Component field seems reasonable, and then use the
+ &quot;Reset Assignee to default&quot; option.)
+(3) You decide the bug belongs to you, but you can't solve it this moment.
+ Accept the bug by setting the status to ASSIGNED.
+
+To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
+it if you like!):
+<A HREF="https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org">https://bugs.mageia.org/buglist.cgi?bug_status=NEW&amp;bug_status=REOPENED&amp;assigned_to=mageia-webteam@mageia.org</A>
+
+Or, you can use the general query page, at
+<A HREF="https://bugs.mageia.org/query.cgi">https://bugs.mageia.org/query.cgi</A>
+
+Appended below are the individual URLs to get to all of your NEW bugs
+that haven't been touched for 7 days or more.
+
+You will get this message once a day until you've dealt with these bugs!
+
+ [WISH] Start an online torrent-tracker with the torrent-releases like Ubuntu does to keep track of how many that are downloading it
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=104">https://bugs.mageia.org/show_bug.cgi?id=104</A>
+ Authentication does not work with email address
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=252">https://bugs.mageia.org/show_bug.cgi?id=252</A>
+ Cannot reset password if the user didn't set preferedLanguage
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=386">https://bugs.mageia.org/show_bug.cgi?id=386</A>
+ Setting the preferedLanguage of a user cause a error in the current trunk
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=387">https://bugs.mageia.org/show_bug.cgi?id=387</A>
+ Use common name (cn) instead of login (uid) for user public name
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=415">https://bugs.mageia.org/show_bug.cgi?id=415</A>
+ Define, discuss and implement website(s) direction doc
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=419">https://bugs.mageia.org/show_bug.cgi?id=419</A>
+ Use email as a contact/id for mirror admin
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=434">https://bugs.mageia.org/show_bug.cgi?id=434</A>
+ FAQ should be refreshed
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=451">https://bugs.mageia.org/show_bug.cgi?id=451</A>
+ Privacy policy is still a draft
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=452">https://bugs.mageia.org/show_bug.cgi?id=452</A>
+ captcha is annoying
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=465">https://bugs.mageia.org/show_bug.cgi?id=465</A>
+ Restrict /packages POST to buildsystem host IP
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=530">https://bugs.mageia.org/show_bug.cgi?id=530</A>
+ Allow to promote a user directly from the user edition page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=543">https://bugs.mageia.org/show_bug.cgi?id=543</A>
+ Cannot modify group
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=544">https://bugs.mageia.org/show_bug.cgi?id=544</A>
+ Strange notice on the download page
+ -&gt; <A HREF="https://bugs.mageia.org/show_bug.cgi?id=767">https://bugs.mageia.org/show_bug.cgi?id=767</A>
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#737">[ date ]</a>
+ <a href="thread.html#737">[ thread ]</a>
+ <a href="subject.html#737">[ subject ]</a>
+ <a href="author.html#737">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000738.html b/zarb-ml/mageia-webteam/2011-April/000738.html
new file mode 100644
index 000000000..283cf3778
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000738.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419223058.3CC7F42963%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000736.html">
+ <LINK REL="Next" HREF="000739.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419223058.3CC7F42963%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 00:30:58 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#738">[ date ]</a>
+ <a href="thread.html#738">[ thread ]</a>
+ <a href="subject.html#738">[ subject ]</a>
+ <a href="author.html#738">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>
+
+--- Comment #1 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 00:30:58 UTC ---
+Best way would be to use xml-rpc. But unless I misunderstood documentation (
+<A HREF="http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService.html">http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService.html</A> ), we
+cannot do much on group with the API.
+
+Another way is to *khof* edit the database directly. Quite fragile, hackish,
+etc. But maybe our best bet even if I think we should avoid that as much as
+possible.
+
+Third way, use some www::mechanize stuff to log on bugzilla and change the
+group member ship. This would be as fragile as the 2nd way, but in a different
+manner.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#738">[ date ]</a>
+ <a href="thread.html#738">[ thread ]</a>
+ <a href="subject.html#738">[ subject ]</a>
+ <a href="author.html#738">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000739.html b/zarb-ml/mageia-webteam/2011-April/000739.html
new file mode 100644
index 000000000..302c4ef74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000739.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419223925.B202C42963%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000738.html">
+ <LINK REL="Next" HREF="000740.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419223925.B202C42963%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 00:39:25 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#739">[ date ]</a>
+ <a href="thread.html#739">[ thread ]</a>
+ <a href="subject.html#739">[ subject ]</a>
+ <a href="author.html#739">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #2 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 00:39:25 UTC ---
+Ok i guess I was wrong :
+<A HREF="http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService/Group.html">http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService/Group.html</A>
+But the interface do not fullfill our needs so far ( and that's for 4.1.1 ).
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#739">[ date ]</a>
+ <a href="thread.html#739">[ thread ]</a>
+ <a href="subject.html#739">[ subject ]</a>
+ <a href="author.html#739">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000740.html b/zarb-ml/mageia-webteam/2011-April/000740.html
new file mode 100644
index 000000000..fa0181b1a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000740.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419224446.B218242971%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000739.html">
+ <LINK REL="Next" HREF="000741.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419224446.B218242971%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 00:44:46 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#740">[ date ]</a>
+ <a href="thread.html#740">[ thread ]</a>
+ <a href="subject.html#740">[ subject ]</a>
+ <a href="author.html#740">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #3 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 00:44:46 UTC ---
+I think maybe we can take a look at the merge-users.pl script.
+
+It seems to be around the user_group_map table.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#740">[ date ]</a>
+ <a href="thread.html#740">[ thread ]</a>
+ <a href="subject.html#740">[ subject ]</a>
+ <a href="author.html#740">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000741.html b/zarb-ml/mageia-webteam/2011-April/000741.html
new file mode 100644
index 000000000..897ce9024
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000741.html
@@ -0,0 +1,88 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419225749.8A4E842972%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000740.html">
+ <LINK REL="Next" HREF="000742.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419225749.8A4E842972%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 00:57:49 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#741">[ date ]</a>
+ <a href="thread.html#741">[ thread ]</a>
+ <a href="subject.html#741">[ subject ]</a>
+ <a href="author.html#741">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ See Also| |<A HREF="https://bugzilla.mozilla.or">https://bugzilla.mozilla.or</A>
+ | |g/show_bug.cgi?id=469196
+
+--- Comment #4 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-20 00:57:49 UTC ---
+Bugzilla::WebService::Group is not what you want. This module is to interact
+with groups directly (creation/editing/deletion), not with group membership. We
+first have to implement User.update, which is currently in progress, see
+<A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=416137.">https://bugzilla.mozilla.org/show_bug.cgi?id=416137.</A> Once that's done, editing
+group membership will be implemented in
+<A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=469196.">https://bugzilla.mozilla.org/show_bug.cgi?id=469196.</A>
+
+If the LDAP server is on the same server as Bugzilla, it's easy to interact
+with Bugzilla directly, without using the non-existent XML-RPC methods, and
+without interacting with the DB directly.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#741">[ date ]</a>
+ <a href="thread.html#741">[ thread ]</a>
+ <a href="subject.html#741">[ subject ]</a>
+ <a href="author.html#741">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000742.html b/zarb-ml/mageia-webteam/2011-April/000742.html
new file mode 100644
index 000000000..1dcd83a65
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000742.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419225850.CFB6742980%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000741.html">
+ <LINK REL="Next" HREF="000743.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419225850.CFB6742980%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 00:58:50 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#742">[ date ]</a>
+ <a href="thread.html#742">[ thread ]</a>
+ <a href="subject.html#742">[ subject ]</a>
+ <a href="author.html#742">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #5 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 00:58:50 UTC ---
+I also found /usr/share/bugzilla/bin/bugzilla_ldapsync.rb and
+/usr/share/bugzilla/bin/syncLDAP.pl
+
+Ok so here is a proposal, in pseudo code :
+
+connect_to_ldap()
+@list_of_admin = get_list_of_admin_email()
+foreach my $admin (@list_of_admin ) {
+ $bz_user = get_user($admin-&gt;email);
+ $bz_user-&gt;set('groups','admin');
+ $bz_user-&gt;update();
+}
+
+and redo for security ?
+
+I guess that would be like half a day of work ( provided someone is not
+interrupted ).
+
+I didn't found much example of bugzilla API usage, but according to the
+documentation, this can be done, so if we just add a cron job, this would be
+good.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#742">[ date ]</a>
+ <a href="thread.html#742">[ thread ]</a>
+ <a href="subject.html#742">[ subject ]</a>
+ <a href="author.html#742">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000743.html b/zarb-ml/mageia-webteam/2011-April/000743.html
new file mode 100644
index 000000000..e41874b11
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000743.html
@@ -0,0 +1,76 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419230213.0C00742952%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000742.html">
+ <LINK REL="Next" HREF="000744.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419230213.0C00742952%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 01:02:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#743">[ date ]</a>
+ <a href="thread.html#743">[ thread ]</a>
+ <a href="subject.html#743">[ subject ]</a>
+ <a href="author.html#743">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #6 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 01:02:13 UTC ---
+to #4, Ldap is on a different server, but we can access it remotely ( obviously
+), so I do not see that's a issue. So you would recommend creating a script
+using Bugzilla API ?
+
+If we write it, would it be interesting to add it upstream somewhere ?
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#743">[ date ]</a>
+ <a href="thread.html#743">[ thread ]</a>
+ <a href="subject.html#743">[ subject ]</a>
+ <a href="author.html#743">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000744.html b/zarb-ml/mageia-webteam/2011-April/000744.html
new file mode 100644
index 000000000..5499f052b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000744.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419231157.1373342960%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000743.html">
+ <LINK REL="Next" HREF="000745.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419231157.1373342960%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 01:11:57 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#744">[ date ]</a>
+ <a href="thread.html#744">[ thread ]</a>
+ <a href="subject.html#744">[ subject ]</a>
+ <a href="author.html#744">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #7 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 01:11:57 UTC ---
+In fact, we could even make sure that users in identity are created in bz with
+such script.
+
+This way we would solve the issue of packagers hat never connected to bugzilla.
+
+Here is a quick script to get information from bugzilla :
+# cat test.pl
+use lib &quot;/usr/share/bugzilla/lib/&quot;;
+use Bugzilla;
+use Bugzilla::User;
+my $user = new Bugzilla::User( Bugzilla::User::login_to_id($ARGV[0]));
+print &quot;Id : &quot;. $user-&gt;id . &quot;\n&quot;;
+print &quot;Name : &quot; . $user-&gt;name . &quot;\n&quot;;
+
+I guess this should demonstrate how to do the rest for a volunteer perl coder.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#744">[ date ]</a>
+ <a href="thread.html#744">[ thread ]</a>
+ <a href="subject.html#744">[ subject ]</a>
+ <a href="author.html#744">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000745.html b/zarb-ml/mageia-webteam/2011-April/000745.html
new file mode 100644
index 000000000..d603e7fcf
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000745.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419231637.F2F5942968%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000744.html">
+ <LINK REL="Next" HREF="000748.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110419231637.F2F5942968%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 01:16:37 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#745">[ date ]</a>
+ <a href="thread.html#745">[ thread ]</a>
+ <a href="subject.html#745">[ subject ]</a>
+ <a href="author.html#745">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #8 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-20 01:16:38 UTC ---
+/me wonders why I only get half of the comments by email for this bug.
+
+As contrib/syncLDAP.pl already exists, all you would need to do is to reuse it
+to suit your needs. I just looked at the script, and I see that it doesn't use
+existing methods to edit user membership, which is bad (but this is not
+surprising as this script hasn't be touched for the last 3 years). But you
+could easily fix that, as you suggested with your pseudo-code in comment 5.
+
+In comment 6, if you mean to take upstream a patch for syncLDAP.pl which would
+update user membership in Bugzilla based on LDAP groups, then yes, that's
+certainly something we would take.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#745">[ date ]</a>
+ <a href="thread.html#745">[ thread ]</a>
+ <a href="subject.html#745">[ subject ]</a>
+ <a href="author.html#745">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000746.html b/zarb-ml/mageia-webteam/2011-April/000746.html
new file mode 100644
index 000000000..c81439e74
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000746.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 829] Do not send reminder every day per default
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20829%5D%20Do%20not%20send%20reminder%20every%20day%20per%0A%09default&In-Reply-To=%3C20110419232126.A29B7429A4%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000714.html">
+ <LINK REL="Next" HREF="000710.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 829] Do not send reminder every day per default</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20829%5D%20Do%20not%20send%20reminder%20every%20day%20per%0A%09default&In-Reply-To=%3C20110419232126.A29B7429A4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 829] Do not send reminder every day per default">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 01:21:26 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#746">[ date ]</a>
+ <a href="thread.html#746">[ thread ]</a>
+ <a href="subject.html#746">[ subject ]</a>
+ <a href="author.html#746">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=829">https://bugs.mageia.org/show_bug.cgi?id=829</A>
+
+--- Comment #2 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-20 01:21:26 UTC ---
+A daily reminder is definitely more annoying than helpful. A weekly or
+bi-weekly reminder would be enough. :)
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per default
+</A></li>
+ <LI>Next message: <A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#746">[ date ]</a>
+ <a href="thread.html#746">[ thread ]</a>
+ <a href="subject.html#746">[ subject ]</a>
+ <a href="author.html#746">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000747.html b/zarb-ml/mageia-webteam/2011-April/000747.html
new file mode 100644
index 000000000..84e746c66
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000747.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20831%5D%20Reporting%20bug%20doesn%27t%20open%20the%20requested%0A%20form%20in%20browser%20even%20if%20we%20are%20already%20logged%20into%20Bugzilla&In-Reply-To=%3C20110419232520.F2501429A4%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000711.html">
+ <LINK REL="Next" HREF="000777.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20831%5D%20Reporting%20bug%20doesn%27t%20open%20the%20requested%0A%20form%20in%20browser%20even%20if%20we%20are%20already%20logged%20into%20Bugzilla&In-Reply-To=%3C20110419232520.F2501429A4%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 01:25:20 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000711.html">[Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000777.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#747">[ date ]</a>
+ <a href="thread.html#747">[ thread ]</a>
+ <a href="subject.html#747">[ subject ]</a>
+ <a href="author.html#747">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=831">https://bugs.mageia.org/show_bug.cgi?id=831</A>
+
+Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ CC| |<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>
+ See Also| |<A HREF="https://qa.mandriva.com/sho">https://qa.mandriva.com/sho</A>
+ | |w_bug.cgi?id=62309
+
+--- Comment #1 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-20 01:25:21 UTC ---
+Known bug, see the URL below. I already reported this problem to
+qa.mandriva.org, and Mageia simply copied their buggy code (either that, or the
+tool which is reporting issues to Bugzilla is buggy). ;)
+
+ <A HREF="https://qa.mandriva.com/show_bug.cgi?id=62309">https://qa.mandriva.com/show_bug.cgi?id=62309</A>
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000711.html">[Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI>Next message: <A HREF="000777.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#747">[ date ]</a>
+ <a href="thread.html#747">[ thread ]</a>
+ <a href="subject.html#747">[ subject ]</a>
+ <a href="author.html#747">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000748.html b/zarb-ml/mageia-webteam/2011-April/000748.html
new file mode 100644
index 000000000..62d5f660e
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000748.html
@@ -0,0 +1,93 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110420000619.66546429A8%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000745.html">
+ <LINK REL="Next" HREF="000749.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110420000619.66546429A8%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 02:06:19 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#748">[ date ]</a>
+ <a href="thread.html#748">[ thread ]</a>
+ <a href="subject.html#748">[ subject ]</a>
+ <a href="author.html#748">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #9 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 02:06:19 UTC ---
+In fact, I did some scripting, and I do not see how to change the group of a
+user using the API ( ie, using -&gt;set() :
+
+use strict;
+use warnings;
+use lib &quot;/usr/share/bugzilla/lib/&quot;;
+use Bugzilla;
+use Bugzilla::User;
+use Bugzilla::Group;
+my $user = new Bugzilla::User( Bugzilla::User::login_to_id($ARGV[0]));
+print &quot;Id : &quot;. $user-&gt;id . &quot;\n&quot;;
+print &quot;Name : &quot; . $user-&gt;name . &quot;\n&quot;;
+for my $g ( @{$user-&gt;groups()} ) {
+ print &quot;Group : &quot; . $g-&gt;name . &quot;\n&quot;;
+}
+my $admin_group = Bugzilla::Group-&gt;match( { 'name' =&gt; 'admin' })-&gt;[0];
+
+push(@{$user-&gt;{'groups'}}, $admin_group);
+print Data::Dumper::Dumper($user);
+print &quot;$user \n&quot;;
+$user-&gt;update();
+
+I guess for group manipulation, it doesn't work with our version without
+fiddling with sql directly.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#748">[ date ]</a>
+ <a href="thread.html#748">[ thread ]</a>
+ <a href="subject.html#748">[ subject ]</a>
+ <a href="author.html#748">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000749.html b/zarb-ml/mageia-webteam/2011-April/000749.html
new file mode 100644
index 000000000..dc2ddb715
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000749.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110420001439.E422C4297E%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000748.html">
+ <LINK REL="Next" HREF="000750.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110420001439.E422C4297E%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 02:14:39 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#749">[ date ]</a>
+ <a href="thread.html#749">[ thread ]</a>
+ <a href="subject.html#749">[ subject ]</a>
+ <a href="author.html#749">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+--- Comment #10 from Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">misc at zarb.org</A>&gt; 2011-04-20 02:14:39 UTC ---
+Ok, after checking on bugzilla trunk, either I am blind/dumb, or there is no
+obvious way to modify group membership using the API ( the fact that i didn't
+found how it is done by the web interface would make me think that I am
+blind/dumb ).
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#749">[ date ]</a>
+ <a href="thread.html#749">[ thread ]</a>
+ <a href="subject.html#749">[ subject ]</a>
+ <a href="author.html#749">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000750.html b/zarb-ml/mageia-webteam/2011-April/000750.html
new file mode 100644
index 000000000..2a731c68a
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000750.html
@@ -0,0 +1,79 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110420002204.A2542429A3%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000749.html">
+ <LINK REL="Next" HREF="000756.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20899%5D%20Synchronize%20bugzilla%20groups%20with%20ldap%0A%09groups&In-Reply-To=%3C20110420002204.A2542429A3%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 02:22:04 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#750">[ date ]</a>
+ <a href="thread.html#750">[ thread ]</a>
+ <a href="subject.html#750">[ subject ]</a>
+ <a href="author.html#750">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=899">https://bugs.mageia.org/show_bug.cgi?id=899</A>
+
+Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; changed:
+
+ What |Removed |Added
+----------------------------------------------------------------------------
+ See Also| |<A HREF="https://bugzilla.mozilla.or">https://bugzilla.mozilla.or</A>
+ | |g/show_bug.cgi?id=442013
+
+--- Comment #11 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-20 02:22:04 UTC ---
+You are neither blind nor dumb. I thought we had methods to edit user
+membership, but we haven't yet. I will implement them upstream (I just assigned
+<A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=442013">https://bugzilla.mozilla.org/show_bug.cgi?id=442013</A> to me).
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI>Next message: <A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap groups
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#750">[ date ]</a>
+ <a href="thread.html#750">[ thread ]</a>
+ <a href="subject.html#750">[ subject ]</a>
+ <a href="author.html#750">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000751.html b/zarb-ml/mageia-webteam/2011-April/000751.html
new file mode 100644
index 000000000..c7bd4ca8b
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000751.html
@@ -0,0 +1,74 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110420123845.05CB44290A%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000708.html">
+ <LINK REL="Next" HREF="000765.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong</H1>
+ <B>Fr&#195;&#169;d&#195;&#169;ric Buclin</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20813%5D%20The%20timestamp%20in%20Bugzilla%20comments%20is%0A%09wrong&In-Reply-To=%3C20110420123845.05CB44290A%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 14:38:45 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#751">[ date ]</a>
+ <a href="thread.html#751">[ thread ]</a>
+ <a href="subject.html#751">[ subject ]</a>
+ <a href="author.html#751">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=813">https://bugs.mageia.org/show_bug.cgi?id=813</A>
+
+--- Comment #12 from Fr&#233;d&#233;ric Buclin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">LpSolit at netscape.net</A>&gt; 2011-04-20 16:38:44 CEST ---
+Per my discussion with misc on IRC, it appears that:
+
+perl -MDateTime::TimeZone -we 'print DateTime::TimeZone-&gt;new(name =&gt; &quot;local&quot;);'
+
+executed from the command line returns DateTime::TimeZone::Europe::Paris, but
+the timezone user pref set to &quot;Same as server&quot; returns UTC, which doesn't make
+sense as they both call the same code. The only difference is that the first
+command is executed from the shell, as root, and the 2nd one is executed by the
+web server (Apache?). Unless it's possible for the web server to have the wrong
+timezone set, I have no idea what's wrong. So I give up! :)
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI>Next message: <A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is wrong
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#751">[ date ]</a>
+ <a href="thread.html#751">[ thread ]</a>
+ <a href="subject.html#751">[ subject ]</a>
+ <a href="author.html#751">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000752.html b/zarb-ml/mageia-webteam/2011-April/000752.html
new file mode 100644
index 000000000..adc8f96de
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000752.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20907%5D%20%5BNew%5D%20text/x-log%20attachments%20aren%27t%0A%20opened%20in%20Firefox%20like%20text/plain&In-Reply-To=%3Cbug-907-14%40http.bugs.mageia.org/%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000737.html">
+ <LINK REL="Next" HREF="000753.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain</H1>
+ <B>Ahmad Samir</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20907%5D%20%5BNew%5D%20text/x-log%20attachments%20aren%27t%0A%20opened%20in%20Firefox%20like%20text/plain&In-Reply-To=%3Cbug-907-14%40http.bugs.mageia.org/%3E"
+ TITLE="[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 20:16:22 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#752">[ date ]</a>
+ <a href="thread.html#752">[ thread ]</a>
+ <a href="subject.html#752">[ subject ]</a>
+ <a href="author.html#752">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE><A HREF="https://bugs.mageia.org/show_bug.cgi?id=907">https://bugs.mageia.org/show_bug.cgi?id=907</A>
+
+ Summary: text/x-log attachments aren't opened in Firefox like
+ text/plain
+ Product: Infrastructure
+ Version: unspecified
+ Platform: All
+ OS/Version: Linux
+ Status: NEW
+ Severity: normal
+ Priority: Normal
+ Component: Bugzilla
+ AssignedTo: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+ ReportedBy: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">ahmadsamir3891 at gmail.com</A>
+ CC: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">mageia-webteam at mageia.org</A>, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">sysadmin-bugs at ml.mageia.org</A>
+
+
+Usually when users attach .log files the mimetype gets set to text/x-log,
+Firefox doesn't open that mimetype like it does with text/plain, this is a
+major annoyance as anyone who wants to examine the log will have to change the
+mimetype in the Details of the attachment, or download it to view it with any
+text editor.
+
+LpSolit suggested installing an extension that converts text/x-log to
+text/plain in bugzilla server side (he also said this extension is used in the
+Mozilla Bugzilla).
+
+The extension:
+<A HREF="http://bzr.mozilla.org/bugzilla/extensions/typesniffer/trunk/files">http://bzr.mozilla.org/bugzilla/extensions/typesniffer/trunk/files</A>
+it'll need File::MimeInfo::Magic and IO::Scalar to work.
+
+--
+Configure bugmail: <A HREF="https://bugs.mageia.org/userprefs.cgi?tab=email">https://bugs.mageia.org/userprefs.cgi?tab=email</A>
+------- You are receiving this mail because: -------
+You are on the CC list for the bug.
+</PRE>
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
+</A></li>
+ <LI>Next message: <A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#752">[ date ]</a>
+ <a href="thread.html#752">[ thread ]</a>
+ <a href="subject.html#752">[ subject ]</a>
+ <a href="author.html#752">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-webteam/2011-April/000753.html b/zarb-ml/mageia-webteam/2011-April/000753.html
new file mode 100644
index 000000000..c242a72d2
--- /dev/null
+++ b/zarb-ml/mageia-webteam/2011-April/000753.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20907%5D%20text/x-log%20attachments%20aren%27t%20opened%20in%0A%20Firefox%20like%20text/plain&In-Reply-To=%3C20110420184610.5F746429AF%40alamut.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000752.html">
+ <LINK REL="Next" HREF="000759.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain</H1>
+ <B>Michael Scherer</B>
+ <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20%5BBug%20907%5D%20text/x-log%20attachments%20aren%27t%20opened%20in%0A%20Firefox%20like%20text/plain&In-Reply-To=%3C20110420184610.5F746429AF%40alamut.mageia.org%3E"
+ TITLE="[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain">bugzilla-daemon at mageia.org
+ </A><BR>
+ <I>Wed Apr 20 20:46:10 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
+</A